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/.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..90b2931daf 100644 --- a/.github/workflows/_base-type-check.yml +++ b/.github/workflows/_base-type-check.yml @@ -63,7 +63,7 @@ jobs: 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..d54d7ef636 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -12,7 +12,7 @@ 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 diff --git a/.github/workflows/generate-pot-file.yml b/.github/workflows/generate-pot-file.yml index b02e521d61..fe5e62867e 100644 --- a/.github/workflows/generate-pot-file.yml +++ b/.github/workflows/generate-pot-file.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ matrix.branch }} diff --git a/.github/workflows/labeller.yml b/.github/workflows/labeller.yml index 39672c31fe..eae52be143 100644 --- a/.github/workflows/labeller.yml +++ b/.github/workflows/labeller.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v5 - uses: actions/labeler@v5 with: diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 1d3a9076e2..6a8e7284f0 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -19,7 +19,7 @@ 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 @@ -42,7 +42,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.13' - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Validate Docs env: @@ -57,7 +57,7 @@ jobs: if: github.event_name == 'pull_request' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: python-version: '3.13' @@ -80,7 +80,7 @@ jobs: with: python-version: '3.13' - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Cache pip uses: actions/cache@v4 @@ -103,7 +103,7 @@ jobs: if: github.event_name == 'pull_request' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: python-version: '3.13' diff --git a/.github/workflows/on_release.yml b/.github/workflows/on_release.yml index 7db86da245..adc106080f 100644 --- a/.github/workflows/on_release.yml +++ b/.github/workflows/on_release.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: path: 'frappe' diff --git a/.github/workflows/publish-assets-develop.yml b/.github/workflows/publish-assets-develop.yml index fb0aaec60a..fe7e22934d 100644 --- a/.github/workflows/publish-assets-develop.yml +++ b/.github/workflows/publish-assets-develop.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: path: 'frappe' - uses: actions/setup-node@v4 diff --git a/.github/workflows/run-indinvidual-tests.yml b/.github/workflows/run-indinvidual-tests.yml index 906810a8c2..62a257e939 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,7 +69,7 @@ jobs: steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Python uses: actions/setup-python@v5 diff --git a/.github/workflows/server-tests.yml b/.github/workflows/server-tests.yml index 959675a952..7145312192 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: 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/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/cypress/integration/list_view.js b/cypress/integration/list_view.js index d6cc16fef1..397c91215b 100644 --- a/cypress/integration/list_view.js +++ b/cypress/integration/list_view.js @@ -65,10 +65,9 @@ context("List View", () => { cy.go_to_list("ToDo"); // Check if the 'Open' button is present in the ToDo list view - cy.get(".btn-default[data-name='" + todo_name + "']") - .should((el) => { - expect(el).to.exist; - }) + cy.get(`.btn-default[data-name="${todo_name}"]`) + .scrollIntoView({ inline: "center", block: "nearest" }) + .should("be.visible") .click(); cy.window() 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/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/automation/doctype/auto_repeat/auto_repeat.py b/frappe/automation/doctype/auto_repeat/auto_repeat.py index 3dd676e4b9..127eefc785 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.py @@ -92,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): @@ -139,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: 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/commands/site.py b/frappe/commands/site.py index 0ed16de97b..7a2a690033 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") @@ -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/utils.py b/frappe/commands/utils.py index 1446fb7d2c..f09bc49474 100644 --- a/frappe/commands/utils.py +++ b/frappe/commands/utils.py @@ -914,7 +914,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/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/docfield/docfield.json b/frappe/core/doctype/docfield/docfield.json index 9455b5855c..e1de962df8 100644 --- a/frappe/core/doctype/docfield/docfield.json +++ b/frappe/core/doctype/docfield/docfield.json @@ -500,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" @@ -622,7 +622,7 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2025-05-17 00:48:20.359702", + "modified": "2025-08-26 22:08:20.940308", "modified_by": "Administrator", "module": "Core", "name": "DocField", 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..d111498c49 100755 --- a/frappe/core/doctype/file/file.py +++ b/frappe/core/doctype/file/file.py @@ -17,7 +17,13 @@ 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.image import optimize_image, strip_exif_data @@ -31,7 +37,7 @@ from .utils import * exclude_from_linked_with = True ImageFile.LOAD_TRUNCATED_IMAGES = True -URL_PREFIXES = ("http://", "https://") +URL_PREFIXES = ("http://", "https://", "/api/method/") FILE_ENCODING_OPTIONS = ("utf-8-sig", "utf-8", "windows-1250", "windows-1252") @@ -139,7 +145,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 +222,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 +327,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 +383,10 @@ 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 validate_duplicate_entry(self): if not self.flags.ignore_duplicate_entry_error and not self.is_folder: @@ -407,7 +421,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] @@ -779,6 +794,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/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/sms_settings/sms_settings.py b/frappe/core/doctype/sms_settings/sms_settings.py index 43830b0155..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): @@ -78,10 +82,6 @@ def send_sms(receiver_list, msg, sender_name="", success_msg=True): "success_msg": success_msg, } - send_sms_hook_methods = frappe.get_hooks("send_sms") - if send_sms_hook_methods: - return frappe.get_attr(send_sms_hook_methods[-1])(receiver_list, msg, sender_name, success_msg) - if frappe.db.get_single_value("SMS Settings", "sms_gateway_url"): send_via_gateway(arg) else: diff --git a/frappe/core/doctype/system_settings/system_settings.json b/frappe/core/doctype/system_settings/system_settings.json index 619894f153..35b91ed9a8 100644 --- a/frappe/core/doctype/system_settings/system_settings.json +++ b/frappe/core/doctype/system_settings/system_settings.json @@ -304,7 +304,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 +706,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" diff --git a/frappe/core/doctype/system_settings/system_settings.py b/frappe/core/doctype/system_settings/system_settings.py index 62a13fc5cc..bd0b45b341 100644 --- a/frappe/core/doctype/system_settings/system_settings.py +++ b/frappe/core/doctype/system_settings/system_settings.py @@ -156,9 +156,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/__init__.py b/frappe/core/doctype/transaction_log/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 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..0186652813 100644 --- a/frappe/core/doctype/user/user.js +++ b/frappe/core/doctype/user/user.js @@ -62,6 +62,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 +94,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 +253,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 +342,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(); } }, @@ -437,3 +443,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..635597bad7 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: @@ -1343,7 +1350,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.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/__init__.py b/frappe/core/report/transaction_log_report/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 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/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/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 " 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) 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_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/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/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..acd56113d9 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -575,5 +575,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/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/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/locale/ar.po b/frappe/locale/ar.po index 1a666723e9..5f45ac0481 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "" @@ -144,10 +140,6 @@ msgstr "تمت مزامنة حدث تقويم Google واحد." msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "تعليق واحد" - #: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -245,6 +237,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 "" @@ -489,7 +488,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 +555,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,10 +564,6 @@ 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 "يجب أن تحتوي الوظيفة المميزة على صورة غلاف" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -586,7 +581,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 +680,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:452 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 +709,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +733,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:459 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 +780,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 @@ -866,7 +883,7 @@ msgstr "العمل / الطريق" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "فشل العمل" @@ -975,7 +992,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:501 #: 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 +1003,7 @@ msgstr "سجل النشاط" msgid "Add" msgstr "إضافة" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "" @@ -998,7 +1015,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 "إضافة مرفق" @@ -1031,10 +1048,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1110,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 +1143,12 @@ msgstr "إضافة المشتركين" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "" @@ -1258,7 +1275,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 "" @@ -1366,7 +1383,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 "الادارة" @@ -1393,11 +1410,11 @@ msgstr "الادارة" msgid "Administrator" msgstr "مدير" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "تسجيل دخول مسؤول النظام" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr ".{2} المسؤول ولج {0} بتاريخ {1} عبر العنوان" @@ -1418,8 +1435,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 "البحث المتقدم" @@ -1574,7 +1591,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 +1651,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 +1672,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 +1720,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 +1952,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 +1960,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}" @@ -2132,10 +2144,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 +2220,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 +2233,7 @@ msgstr "تم التطبيق" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "تطبيق قاعدة الواجب" @@ -2263,7 +2281,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 +2314,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2324,7 +2346,11 @@ 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 "" @@ -2400,7 +2426,7 @@ msgstr "تعيين الشرط" msgid "Assign To" msgstr "تكليف إلى" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "تكليف إلى" @@ -2463,6 +2489,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 +2563,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2646,7 +2683,7 @@ 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 "المرفقات" @@ -2677,6 +2714,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 +2735,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 +2849,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 +2861,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 +2914,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 +2962,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 +2976,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 +3247,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 +3365,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 +3396,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 +3492,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,7 +3549,7 @@ msgstr "حذف بالجملة" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "تعديل بالجمله {0}" @@ -3598,7 +3572,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 +3584,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 +3714,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 +3764,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 @@ -3858,7 +3817,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 "" @@ -3884,12 +3843,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "إلغاء" @@ -3907,16 +3867,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "الغاء جميع الوثائق" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3966,7 +3928,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}" @@ -3986,11 +3948,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 "" @@ -4041,7 +4003,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 +4011,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 "لا يمكن تحرير الإشعار القياسي. للتعديل ، يرجى تعطيله وتكراره" @@ -4078,7 +4040,7 @@ 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 "" @@ -4090,11 +4052,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4114,7 +4076,7 @@ msgstr "لا يمكن مطابقة العمود {0} بأي حقل" 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 +4084,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 +4101,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:1129 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4257,7 +4219,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 +4289,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 +4322,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 +4330,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}" @@ -4423,7 +4385,7 @@ 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 "" @@ -4476,7 +4438,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 +4450,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4514,7 +4476,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,7 +4488,11 @@ 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 "" @@ -4578,7 +4544,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4756,7 +4722,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "انهيار جميع" @@ -4867,11 +4833,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4940,16 +4906,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 +4913,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 +4922,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 "لا يمكن أن تحتوي التعليقات على روابط أو عناوين بريد إلكتروني" @@ -5043,7 +4999,7 @@ msgstr "اسم الشركة" 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 "" @@ -5138,6 +5094,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 +5124,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:406 msgid "Configure Columns" msgstr "" @@ -5192,7 +5153,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "أكد" @@ -5211,7 +5172,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "تأكيد كلمة المرور الجديدة" @@ -5238,7 +5199,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 "" @@ -5365,7 +5326,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5373,7 +5333,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5381,24 +5340,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 "نوع المحتوى" @@ -5474,12 +5421,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "لا يمكن تخصيص DocTypes الأساسية." @@ -5487,7 +5438,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:633 msgid "Correct version :" msgstr "" @@ -5508,10 +5459,10 @@ 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 "تعذر الحفظ ، يرجى التحقق من البيانات التي أدخلتها" @@ -5648,7 +5599,7 @@ msgstr "إنشاء سجل" msgid "Create New" msgstr "انشاء جديد" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "انشاء جديد" @@ -5661,7 +5612,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "انشاء بريد إلكتروني" @@ -5673,7 +5624,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,10 +5632,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "انشاء جديد {0}" @@ -5701,7 +5652,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:507 msgid "Create your first {0}" msgstr "قم بإنشاء أول {0}" @@ -5727,7 +5678,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 +5690,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}" @@ -6076,14 +6027,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "تخصيص" @@ -6227,7 +6178,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 "لوحة القيادة" @@ -6335,7 +6286,7 @@ msgstr "" msgid "Data Import Template" msgstr "قالب ادخال البيانات" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "البيانات طويلة جدًا" @@ -6366,7 +6317,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6504,11 +6455,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6670,11 +6621,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} في قائمة الخيارات." @@ -6725,10 +6676,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6736,11 +6687,16 @@ msgstr "مؤجل" msgid "Delete" msgstr "حذف" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6781,7 +6737,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 +6770,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "حذف {0} العناصر نهائيا؟" @@ -6859,6 +6815,10 @@ msgstr "الاسم المحذوف" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "حذف!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "حذف {0}" @@ -6874,7 +6834,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 +6851,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -6918,7 +6878,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 +6913,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 +6933,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 +6942,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 +7025,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 +7086,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 +7103,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 +7112,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 +7162,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 +7176,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 +7186,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 +7204,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 +7227,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,16 +7263,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "لا تقم بتحرير الرؤوس التي يتم ضبطها مسبقا في القالب" @@ -7420,7 +7366,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 +7413,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 +7426,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 +7459,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 +7473,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,19 +7535,19 @@ 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 "" @@ -7798,7 +7744,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:1955 msgid "Document Unlocked" msgstr "" @@ -7806,15 +7752,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "" @@ -7956,13 +7902,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "تحميل" @@ -8184,17 +8130,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:1776 #: 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:350 #: 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 +8148,7 @@ msgstr "" msgid "Edit" msgstr "تصحيح" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "تصحيح" @@ -8212,7 +8158,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "تصحيح" @@ -8241,7 +8187,7 @@ msgstr "تحرير مخصص HTML" msgid "Edit DocType" msgstr "تعديل القائمة" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "تعديل القائمة" @@ -8344,7 +8290,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 +8299,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}" @@ -8400,6 +8346,7 @@ 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' @@ -8413,6 +8360,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 @@ -8453,7 +8401,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 "تمت إضافة حساب البريد الإلكتروني عدة مرات" @@ -8584,10 +8532,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 +8600,11 @@ msgstr "تم وضع علامة على البريد الإلكتروني كغير msgid "Email has been moved to trash" msgstr "تم نقل البريد الإلكتروني إلى المهملات" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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} (غير مشترك / غيرمفعل)" @@ -8722,7 +8670,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 +8696,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 +8789,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 +8796,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 +8808,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 +8830,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 +8843,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 +8869,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 +8889,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 +8905,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 +8921,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 +8969,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 +9039,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 +9059,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 "خطأ" @@ -9166,9 +9107,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "خطأ في الإخطار" @@ -9188,7 +9129,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "حدث خطأ أثناء الاتصال بحساب البريد الإلكتروني {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "خطأ أثناء تقييم الإشعار {0}. يرجى تصحيح القالب الخاص بك." @@ -9341,7 +9282,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 +9290,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "وقت التنفيذ: {0} ثانية" @@ -9375,7 +9316,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "توسيع الكل" @@ -9408,7 +9349,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 +9379,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "تصدير" @@ -9479,7 +9422,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "تصدير التقرير: {0}" @@ -9488,11 +9431,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 "" @@ -9605,7 +9548,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 +9565,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,7 +9578,7 @@ msgstr "فشل الاتصال بالخادم" 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 "" @@ -9647,8 +9590,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 +9607,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 +9627,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 +9681,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 +9738,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:1870 #: 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 +9761,7 @@ msgstr "حقل \"قيمة\" إلزامي. يرجى تحديد قيمة ليتم msgid "Field Description" msgstr "وصف الحقل" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9880,11 +9817,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9902,16 +9839,16 @@ 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:454 #: 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 "" @@ -9935,11 +9872,11 @@ msgstr "" 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:1908 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 +9899,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 @@ -10011,7 +9948,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "لا يمكن تغيير نوع الحقل من {0} إلى {1} في الصف {2}" @@ -10115,7 +10052,7 @@ msgstr "الملفات" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10174,7 +10111,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 +10125,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 +10149,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,7 +10166,7 @@ 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}" @@ -10240,18 +10183,18 @@ msgstr "يمكن الوصول إلى filters عبر filters" msgstr "" @@ -10563,8 +10506,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:2120 +#: 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 +10533,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 +10547,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "ل {0} في {1} مستوى في {2} في {3} الصف" @@ -10665,7 +10602,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 +10662,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 +10694,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 +10791,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:1831 msgid "From Document Type" msgstr "من نوع المستند" @@ -10868,18 +10818,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 "صفحة كاملة" @@ -10978,6 +10926,12 @@ 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 msgid "Generate Tracking URL" @@ -11002,7 +10956,7 @@ msgstr "تحديد الموقع الجغرافي" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "الحصول على تنبيهات لهذا اليوم" @@ -11308,11 +11262,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" @@ -11446,7 +11395,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 @@ -11459,7 +11407,6 @@ msgstr "HH: MM: SS" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11621,6 +11568,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 @@ -11755,11 +11708,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 +11787,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "إخفاء القائمة الرئيسية" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "" @@ -11853,7 +11801,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 +11850,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 +11939,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "هوية شخصية" @@ -12099,7 +12044,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12229,6 +12174,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 +12209,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 +12270,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:1120 msgid "Illegal SQL Query" msgstr "استعلام SQL غير قانوني" @@ -12383,11 +12336,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,11 +12362,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12443,7 +12396,7 @@ msgstr "ضمني" msgid "Import" msgstr "استيراد" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "استيراد" @@ -12738,7 +12691,7 @@ msgstr "التكوين غير الصحيح" msgid "Incorrect URL" msgstr "URL غير صحيح" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "مستخدم غير صحيح أو كلمة مرور" @@ -12762,7 +12715,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 +12790,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:1876 msgid "Insert After" msgstr "إدراج بعد" @@ -12853,7 +12806,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 +12824,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12889,7 +12846,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 "" @@ -12918,7 +12875,7 @@ msgstr "" 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 +12979,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:849 +#: 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" غير صالح" @@ -13048,7 +13005,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,7 +13025,11 @@ 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 "" @@ -13109,7 +13070,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 +13079,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,11 +13096,11 @@ msgstr "تنسيق الإخراج غير صالح" 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:1239 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" @@ -13158,7 +13119,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 "" @@ -13181,7 +13142,7 @@ msgstr "اسم المستخدم غير صحيح أو كلمة المرور ال msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" @@ -13193,6 +13154,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13209,7 +13174,7 @@ msgstr "" 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 "عمود غير صالح" @@ -13245,19 +13210,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "اسم الحقل غير صالح {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي" @@ -13285,12 +13246,20 @@ msgstr "" 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 +13267,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,6 +13283,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13326,7 +13303,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 +13312,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:627 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 +13334,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 "هل" @@ -13496,7 +13510,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 "\"تم نشر\" الحقل يجب أن يكون اسم حقل صالح" @@ -13788,12 +13802,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 @@ -14066,7 +14082,7 @@ msgstr "المناظر الطبيعيه" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "اللغة" @@ -14170,6 +14186,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 +14207,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" @@ -14350,7 +14366,7 @@ msgstr "رسالة" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14446,20 +14462,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 +14502,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 +14516,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,6 +14647,10 @@ 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' @@ -14695,7 +14703,7 @@ msgstr "تصفية القائمة" msgid "List Settings" msgstr "إعدادات القائمة" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "إعدادات القائمة" @@ -14736,7 +14744,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 +14753,8 @@ msgstr "" msgid "Load Balancing" msgstr "تحميل موازنة" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "تحميل المزيد" @@ -14764,8 +14771,8 @@ 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 msgid "Loading" @@ -14779,7 +14786,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 +14796,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "تحميل ..." @@ -14850,7 +14857,7 @@ msgstr "تسجيل الدخول للوصول إلى هذه الصفحة." msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "تسجيل الخروج" @@ -14990,7 +14997,7 @@ msgstr "" msgid "Logout" msgstr "خروج" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "تسجيل الخروج من جميع الجلسات" @@ -15170,7 +15177,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:509 msgid "Mandatory Information missing:" msgstr "معلومات إلزامية مفقود:" @@ -15190,7 +15197,7 @@ msgstr "الحقول الالزامية في جدول {0} صف رقم {1} مطل 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 +15278,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 +15360,7 @@ msgstr "" msgid "Max auto email report per user" 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 "عرض ماكس لنوع العملة هو 100px في الصف {0}" @@ -15368,16 +15373,11 @@ msgstr "أقصى" 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} الصفوف المسموح" @@ -15447,7 +15447,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" @@ -15513,7 +15513,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 +15545,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 "عنوان الفوقية" @@ -15702,7 +15694,7 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -15969,7 +15961,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 "" @@ -16043,7 +16035,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "العقد الجذرية متعددة غير مسموح به." @@ -16084,7 +16076,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:498 #: 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,7 +16114,7 @@ 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/views/file/file_view.js:97 @@ -16138,7 +16130,7 @@ msgstr "" 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 +16142,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 +16181,7 @@ msgstr "" msgid "Naming Series" msgstr "سلسلة التسمية" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "تسمية سلسلة إلزامية" @@ -16226,12 +16218,12 @@ msgstr "قالب نافبار" msgid "Navbar Template Values" msgstr "قيم قالب نافبار" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "انتقل القائمة لأعلى" @@ -16246,7 +16238,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16296,10 +16288,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 +16296,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 "تنسيق طباعة مخصص جديد" @@ -16375,12 +16363,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:190 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 +16377,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 +16395,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 +16453,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:411 msgid "New {0}" msgstr "{0} جديد" @@ -16487,7 +16475,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 +16483,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 +16496,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,12 +16603,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16672,6 +16661,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 +16700,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16716,7 @@ msgstr "لا يوجد اسم محدد لـ {0}" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "لا الأذونات المحددة" @@ -16743,11 +16736,11 @@ msgstr "لا توجد مخططات مسموح بها في لوحة المعلو msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "لا يوجد طابعة متاحة." @@ -16763,7 +16756,7 @@ 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 "" @@ -16787,7 +16780,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "لا تنبيهات لهذا اليوم" @@ -16815,19 +16808,15 @@ 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 "لا جهات اتصال مرتبطة بالمستند" @@ -16847,6 +16836,10 @@ 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 "" @@ -16919,7 +16912,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:947 msgid "No permission to read {0}" msgstr "ليس هناك إذن لقراءة {0}" @@ -16947,7 +16940,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,7 +16964,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17023,7 +17016,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 "غير مسموح" @@ -17072,18 +17065,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17093,9 +17085,9 @@ msgstr "لم تنشر" #: 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/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 +17119,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 +17135,11 @@ msgstr "غير نشطة" msgid "Not allowed for {0}: {1}" msgstr "غير مسموح لـ {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17163,7 @@ 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 \"مخصص\"." @@ -17180,18 +17172,18 @@ msgstr "ليس في وضع المطور! يقع في site_config.json أو جع #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17218,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17250,10 +17242,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 +17290,15 @@ msgstr "وثيقة الاشتراك المكتوبة" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17358,7 +17349,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,7 +17407,7 @@ 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 "" @@ -17530,11 +17521,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 +17644,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 "" @@ -17738,7 +17729,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 "الخيارات المسموح بها لحقل البيانات فقط هي:" @@ -17782,7 +17773,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "يُسمح بتخصيص أنواع DocTypes القياسية فقط من تخصيص النموذج." @@ -17856,7 +17847,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 +17865,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 +17873,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "فتح عنصر القائمة" @@ -17897,13 +17888,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 +17903,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 +17922,7 @@ msgstr "افتتح" msgid "Operation" msgstr "عملية" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "يجب أن يكون المشغل واحدا من {0}" @@ -17953,7 +17948,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} ليس جدولًا فرعيًا" @@ -17985,7 +17980,7 @@ msgstr "اختياري: سيتم إرسال التنبية إذا كان هذا 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 +17989,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 +17997,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} قبل تعيين القيمة الافتراضية." @@ -18046,8 +18041,8 @@ msgstr "عنوان تاريخ المنظمة" 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 "" @@ -18126,9 +18121,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:1796 msgid "PDF" msgstr "" @@ -18169,11 +18164,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18345,7 +18340,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}" @@ -18389,11 +18384,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 +18397,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 +18471,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18482,7 @@ msgstr "غير فعال" msgid "Password" msgstr "كلمة السر" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18500,7 +18495,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18517,6 +18512,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 +18524,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18537,7 +18536,7 @@ msgstr "" 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 +18544,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "كلمة المرور غير مطابقة!" @@ -18615,10 +18614,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 "معلق" @@ -18754,16 +18755,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18851,8 +18852,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "اختيار الأعمدة" @@ -18912,11 +18913,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 +18925,7 @@ msgstr "الرجاء إضافة موضوع إلى بريدك الإلكترون msgid "Please add a valid comment." msgstr "الرجاء إضافة تعليق صالح." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "الرجاء اطلب من المشرف التأكد من تسجيلك" @@ -18944,10 +18945,6 @@ 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 "يرجى التحقق من قيم المرشح المحددة لمخطط لوحة المعلومات: {}" @@ -18956,7 +18953,7 @@ msgstr "يرجى التحقق من قيم المرشح المحددة لمخطط 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:1072 msgid "Please check your email for verification" msgstr "يرجى التحقق من بريدك الالكتروني للتحقق" @@ -18988,7 +18985,7 @@ 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:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19018,8 +19015,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19058,7 +19055,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 +19092,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 "" @@ -19111,7 +19109,7 @@ msgstr "يرجى التأكد من أن وثائق الاتصال المرجعي msgid "Please refresh to get the latest document." msgstr "يرجى تحديث للحصول على أحدث وثيقة." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19127,7 +19125,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:1711 msgid "Please save the report first" msgstr "يرجى حفظ التقرير الأول" @@ -19163,7 +19161,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 +19173,7 @@ msgstr "الرجاء تحديد مرشح تاريخ صالح" msgid "Please select applicable Doctypes" msgstr "يرجى اختيار الأساليب المناسبة" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "يرجى تحديد عمود واحد على الأقل من {0} إلى التصنيف / المجموعة" @@ -19201,7 +19199,7 @@ msgstr "الرجاء اختيار {0}" msgid "Please set Email Address" msgstr "يرجى وضع عنوان البريد الإلكتروني" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "يرجى تعيين تعيين طابعة لتنسيق الطباعة هذا في "إعدادات الطابعة"" @@ -19213,7 +19211,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 "" @@ -19249,23 +19247,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 +19284,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 "" @@ -19376,14 +19374,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19399,7 +19389,7 @@ msgstr "" msgid "Precision" msgstr "دقة" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "وينبغي أن تكون الدقة بين 1 و 6" @@ -19455,7 +19445,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 "" @@ -19490,13 +19480,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 +19508,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 @@ -19542,7 +19525,7 @@ msgstr "سابق" 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 +19571,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "طباعة" @@ -19618,8 +19601,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19726,7 +19709,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19775,11 +19758,11 @@ msgstr "" msgid "Print with letterhead" msgstr "طباعة مع ترويسة" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "طابعة" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "تعيين الطابعة" @@ -19789,11 +19772,11 @@ msgstr "تعيين الطابعة" msgid "Printer Name" msgstr "اسم الطابعة" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "إعدادات الطابعة" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19855,7 +19838,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "المتابعة على أية حال" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "معالجة" @@ -19881,9 +19864,9 @@ 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 "ممتلكات" @@ -19969,24 +19952,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 +19973,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 +20062,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 "" @@ -20107,8 +20077,8 @@ msgid "QR Code for Login Verification" msgstr "رمز الاستجابة السريعة لتسجيل الدخول" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "فشل علبة QZ:" +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 +20127,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 +20227,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20294,12 +20264,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 @@ -20336,7 +20300,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 +20317,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 +20374,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 +20389,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 "" @@ -20492,7 +20451,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 +20462,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 +20502,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 +20519,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" @@ -20814,15 +20786,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "تحديث" @@ -20847,18 +20819,18 @@ msgstr "قم بتحديث ورقة Google" msgid "Refresh Token" msgstr "تحديث رمز" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:534 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:374 #: 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 +21007,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 "إعادة تسمية الملفات ورمز استبدالها في وحدات التحكم ، يرجى مراجعة!" @@ -21238,7 +21210,7 @@ msgstr "مدير التقارير" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "تقرير الاسم" @@ -21276,7 +21248,7 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "لا يمكن تعيين التقرير لأنواع واحدة" @@ -21302,20 +21274,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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}" @@ -21338,7 +21310,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 "تقارير" @@ -21468,11 +21440,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "إعادة تعيين كلمة مرور LDAP" @@ -21480,11 +21452,11 @@ msgstr "إعادة تعيين كلمة مرور LDAP" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "إعادة تعيين مكتب المدعي العام سر" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21491,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21557,6 +21529,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 +21539,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 +21597,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 "قيود" @@ -21681,9 +21649,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 +21690,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 +21704,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 @@ -21785,7 +21753,7 @@ msgstr "اذونات الصلاحيات" msgid "Role Permissions Manager" msgstr "مدير ضوابط الصلاحيات" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "مدير ضوابط الصلاحيات" @@ -21828,6 +21796,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 +21806,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 +21843,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 +21863,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 +21874,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,12 +21902,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21949,7 +21915,7 @@ msgstr "" 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 "" @@ -21977,7 +21943,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,25 +21951,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "الصفوف إزالتها" @@ -22099,7 +22065,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 +22143,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 +22171,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22193,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:1735 msgid "Save As" msgstr "حفظ باسم" @@ -22244,7 +22206,7 @@ msgstr "حفظ باسم" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "احفظ التقرير" @@ -22273,7 +22235,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 +22314,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}" @@ -22520,7 +22482,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} غير صالح" @@ -22629,7 +22591,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 +22638,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22684,12 +22646,12 @@ 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:497 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" @@ -22700,7 +22662,7 @@ msgstr "حدد المرفقات" 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 "حدد العمود" @@ -22764,12 +22726,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:489 #: 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 "حدد الحقول المطلوب إدراجها" @@ -22815,8 +22780,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:598 msgid "Select Network Printer" msgstr "" @@ -22884,11 +22849,11 @@ msgstr "" msgid "Select a group node first." msgstr "حدد عقدة المجموعة أولا." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "حدد حقل موضوع صالحًا لإنشاء المستندات من البريد الإلكتروني" @@ -22918,13 +22883,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "حدد عناصر قائمة متعددة" @@ -22958,7 +22923,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 +23107,7 @@ msgstr "البريد الإلكتروني المرسل" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "يجب أن يحتوي حقل المرسل على البريد الإلكتروني في الخيارات" @@ -23236,7 +23201,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}" @@ -23265,7 +23230,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 "" @@ -23370,7 +23335,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:2104 msgid "Set Level" msgstr "" @@ -23424,7 +23389,7 @@ msgstr "ضبط الكمية" msgid "Set Role For" msgstr "تعيين صلاحية لل" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "تعيين صلاحيات المستخدم" @@ -23565,14 +23530,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 +23548,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "الإعداد التلقائي البريد الإلكتروني" @@ -23658,11 +23618,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 +23637,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 +23689,7 @@ msgstr "عرض المستند" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23867,7 +23817,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:1845 msgid "Show Tags" msgstr "أضهر العلامات" @@ -23884,7 +23834,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 +23874,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 +23922,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 +23952,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 +23987,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 "تم تعطيل الاشتراك" @@ -24101,7 +24047,7 @@ msgstr "تعبير Python البسيط ، مثال: status == 'Open' و msgid "Simultaneous Sessions" msgstr "جلسات متزامنة" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "لا يمكن تخصيص DocTypes مفردة." @@ -24334,11 +24280,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,13 +24315,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24383,6 +24328,10 @@ msgstr "يجب أن يكون حقل نوع {0} لFIELDNAME صحيح" 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 +24358,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 "لا يسمح أحرف خاصة" @@ -24470,7 +24425,7 @@ msgstr "اساسي" 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 "لا يمكن أن يكون تنسيق دوكتيب القياسي تنسيق طباعة افتراضي، استخدام نموذج مخصص" @@ -24526,8 +24481,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 +24490,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 @@ -24608,7 +24563,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 +24619,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 +24644,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 +24652,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 +24690,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:454 msgid "Sticky" msgstr "" @@ -24763,6 +24720,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24857,7 +24818,7 @@ msgstr "موضوع" msgid "Subject Field" msgstr "حقل الموضوع" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "يجب أن يكون نوع حقل الموضوع بيانات ، نص ، نص طويل ، نص صغير ، محرر نص" @@ -24882,7 +24843,7 @@ msgstr "" msgid "Submit" msgstr "تسجيل" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "تسجيل" @@ -24892,7 +24853,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "تسجيل" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "تسجيل" @@ -24916,7 +24877,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 +24889,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 +24901,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "إرسال {0} وثائق؟" @@ -24949,11 +24910,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 +24937,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 +24951,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:1171 #: 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 +24993,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 +25044,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 +25166,7 @@ msgstr "المزامنة" msgid "Syncing {0} of {1}" msgstr "مزامنة {0} من {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25334,6 +25289,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 +25372,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 +25446,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 +25455,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,7 +25477,7 @@ msgstr "الجدول MultiSelect" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "الجدول محدث" @@ -25566,11 +25523,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 +25596,7 @@ msgstr "تحذيرات القالب" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "موقوف مؤقتا" @@ -25704,7 +25668,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 +25692,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:1193 msgid "The CSV format is case sensitive" msgstr "تنسيق كسف حساس لحالة الأحرف" @@ -25739,7 +25703,7 @@ 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}' غير صالح" @@ -25747,7 +25711,7 @@ msgstr "الشرط '{0}' غير صالح" 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 +25752,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 +25760,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25896,11 +25860,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -25937,7 +25901,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}" @@ -25986,7 +25950,7 @@ msgstr "" 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,6 +25962,10 @@ 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 "" @@ -26030,11 +25998,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 "كانت هناك بعض الأخطاء التي تحدد الاسم، يرجى الاتصال بالمشرف" @@ -26122,7 +26090,7 @@ 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 "" @@ -26184,7 +26152,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 +26171,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "هذا هو تقرير الخلفية. يرجى تعيين المرشحات المناسبة ثم إنشاء واحدة جديدة." @@ -26227,12 +26195,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 +26213,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:423 msgid "This may get printed on multiple pages" msgstr "قد تتم طباعة هذا على صفحات متعددة" @@ -26298,7 +26260,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 +26292,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:1253 msgid "Throttled" msgstr "مخنوق" @@ -26482,11 +26444,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 "يجب أن يكون حقل المخطط الزمني اسم حقل صالحا" @@ -26535,9 +26497,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 +26521,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 +26543,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 "يجب أن يكون حقل العنوان حقل اسم صالح" @@ -26736,7 +26692,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 +26708,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "تبديل الشريط الجانبي" @@ -26802,7 +26758,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 +26774,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "وقعت الكثير من المستخدمين في الآونة الأخيرة، وذلك هو تعطيل التسجيل. يرجى المحاولة مرة أخرى في ساعة" @@ -26880,10 +26836,10 @@ msgstr "" msgid "Topic" msgstr "موضوع" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "الاجمالي غير شامل الضريبة" @@ -26926,18 +26882,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 "الصف الكلي" @@ -27036,6 +26992,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 +27011,7 @@ msgstr "التحولات" msgid "Translatable" msgstr "للترجمة" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "" @@ -27061,7 +27022,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 +27106,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 "" @@ -27492,8 +27453,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 +27469,7 @@ msgstr "غير مقروء" msgid "Unread Notification Sent" msgstr "إرسال الإشعارات غير المقروءة" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27582,7 +27542,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:427 msgid "Update" msgstr "تحديث" @@ -27658,7 +27618,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 +27626,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 "تم التحديث إلى إصدار جديد 🎉" @@ -27839,7 +27799,7 @@ msgstr "" 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 +27820,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 +27831,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 +27846,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 +27860,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 +27877,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 +27911,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 +27975,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 +27994,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 +28017,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "ضوابط المستخدم" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "ضوابط المستخدم" @@ -28076,7 +28035,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 +28103,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 +28137,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 +28158,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:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28222,7 +28187,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 +28271,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 "خطئ في التحقق" @@ -28378,7 +28343,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "قيمة الحقل {0} طويلة جدًا في {1}. يجب أن يكون الطول أقل من {2} حرف" @@ -28424,7 +28389,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 +28402,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 +28464,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28529,7 +28486,7 @@ msgstr "عرض القائمة" msgid "View Log" msgstr "عرض السجل" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "عرض المستندات المسموح بها" @@ -28576,7 +28533,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 "" @@ -28653,7 +28610,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 "" @@ -28842,7 +28799,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 +28812,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 +28855,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 +29072,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 "سيكون معرف تسجيل الدخول" @@ -29216,7 +29164,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 +29190,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 +29202,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,7 +29241,7 @@ 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" @@ -29354,11 +29317,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,7 +29344,7 @@ msgstr "الكتابة" 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,7 +29363,7 @@ 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" @@ -29458,14 +29421,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29542,11 +29506,11 @@ msgstr "غير مسموح لك بتصدير النمط {}" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "لا يسمح لك بتحديث الوثيقة نموذج الويب هذه" @@ -29570,7 +29534,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 +29560,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 "" @@ -29639,7 +29607,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 "" @@ -29669,11 +29637,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "لا يمكنك تعيين 'ترانزلاتابل' للحقل {0}" @@ -29691,7 +29659,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "لا يمكنك ضبط \"للقراءة فقط\" للحقل {0}" @@ -29742,7 +29710,7 @@ msgstr "لا يوجد لديك الصلاحية الكافية لاتمام هذ msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29754,7 +29722,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29766,19 +29734,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29786,11 +29754,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 +29774,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:501 msgid "You haven't created a {0} yet" msgstr "" @@ -29827,11 +29791,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:804 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:645 msgid "You must login to submit this form" msgstr "يجب عليك تسجيل الدخول لإرسال هذا النموذج" @@ -29863,12 +29827,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 @@ -29938,10 +29902,22 @@ msgstr "لقد قمت بإلغاء متابعة هذا المستند" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -29995,10 +29971,18 @@ msgstr "تم قبول طلب الاتصال الخاص بك إلى تقويم Go msgid "Your email address" msgstr "عنوان بريدك الإلكتروني" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "معرف تسجيل الدخول الخاص بك هو" @@ -30103,7 +30087,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 +30232,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 +30294,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 +30309,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 "" @@ -30388,11 +30367,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 +30390,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 "جديد" @@ -30604,19 +30578,19 @@ msgstr "مشاركة" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "منذ اخر شهر" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "منذ الأسبوع الماضي" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "منذ السنة الماضية" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "منذ البارحة" @@ -30669,6 +30643,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 +30674,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 +30688,7 @@ msgstr "عبر استيراد البيانات" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "عبر الإخطار" @@ -30743,10 +30721,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30757,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 +30787,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:486 +#: 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 +30823,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} م" @@ -30866,7 +30853,6 @@ msgstr "{0} تقرير" 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 +30877,7 @@ msgstr "" msgid "{0} added" msgstr "{0} أضيف" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} موجود بالفعل. حدد اسما آخر" @@ -30970,11 +30956,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 "" @@ -31041,7 +31023,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,7 +31032,7 @@ 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} حقل إلزامي" @@ -31058,15 +31040,15 @@ msgstr "{0} حقل إلزامي" 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 +31057,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 "" @@ -31127,8 +31109,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} بريد الكتروني غير صالح
{0} is not a valid Email Address" @@ -31136,15 +31118,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:174 msgid "{0} is not a valid Name" msgstr "{0} ليس اسمًا صالحًا" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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} ليست حالة سير عمل صالحة. يرجى تحديث سير العمل والمحاولة مرة أخرى." @@ -31164,19 +31146,23 @@ msgstr "{0} ليس تنسيق تقرير صالحًا. يجب أن يكون تن 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 "" @@ -31184,31 +31170,31 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} مطلوب" -#: 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:1835 msgid "{0} items selected" msgstr "{0} العناصر المحددة" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31241,7 +31227,7 @@ msgstr "قبل {0} دقائق" msgid "{0} months ago" msgstr "قبل {0} أشهر" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} يجب أن يكون بعد {1}" @@ -31277,7 +31263,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 +31276,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:1211 msgid "{0} of {1}" msgstr "{0} من {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} من {1} ({2} صفوف تحتوي على أطفال)" @@ -31340,11 +31326,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "تم حفظ {0} بنجاح" @@ -31364,11 +31350,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 +31367,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} مشتركين تم اضافتهم" @@ -31400,7 +31386,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:254 msgid "{0} updated" msgstr "{0} تم تحديث" @@ -31444,7 +31430,7 @@ msgstr "{0} {1} موجود بالفعل" 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} لا يمكن أن يكون تفريعة لأن لديه تفريعات أخرى" @@ -31476,75 +31462,75 @@ msgstr "{0}/{1} مكتمل | يرجى ترك علامة التبويب هذه م 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: لا يمكن تعيين تعديل بدون إلغاء" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: لا يمكن تعيين معدل إذا لم يتم إرساله" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0} : لا يمكن تحديد تعيين بالتأكيد إذا لم يكن قابل للتأكيد" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: لا يمكن تعيين إلغاء بدون إرسال" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "{0} : لا يمكن تحديد استيراد دون إنشاء" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0} : لا يمكن تحديد تأكيد ، الغاء ، تعديل دون كتابة" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "{0} : لم يتم تحديد صلاحيات أساسية" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31538,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:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0} : صلاحيات على مستوى 0 يجب تحديده قبل أن يتم تحديد صلاحيات أعلى" @@ -31560,7 +31546,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 "" @@ -31577,7 +31563,7 @@ msgstr "{0}: تم تعيين {1} على الحالة {2}" 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 +31587,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 +31595,11 @@ msgstr "{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_na msgid "{} Complete" msgstr "{} اكتمال" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
{}" msgstr "" diff --git a/frappe/locale/bs.po b/frappe/locale/bs.po index 3fb8e5e99c..092547109b 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = Tačno i 0 = Netačno" @@ -145,10 +141,6 @@ msgstr "Sinhroniziran je 1 događaj iz Google Kalendara." 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 msgid "1 day ago" msgstr "prije 1 dan" @@ -246,6 +238,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" @@ -640,7 +641,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 +731,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,10 +740,6 @@ 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" - #: 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}" @@ -760,7 +757,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 +858,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:452 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 +887,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:449 +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 +911,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:459 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 +958,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 @@ -1042,7 +1061,7 @@ msgstr "Radnja / Ruta" msgid "Action Complete" msgstr "Radnja Završena" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "Radnja Neuspješna" @@ -1151,7 +1170,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:501 #: 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 +1181,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:454 msgid "Add / Remove Columns" msgstr "Dodaj / Ukloni Kolone" @@ -1174,7 +1193,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" @@ -1207,10 +1226,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1288,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 +1321,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:2145 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" @@ -1434,7 +1453,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}" @@ -1542,7 +1561,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" @@ -1569,11 +1588,11 @@ msgstr "Administracija" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "Administrator je prijavljen" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator je pristupio {0} {1} putem IP adrese {2}." @@ -1594,8 +1613,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" @@ -1750,7 +1769,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 +1829,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 +1850,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 +1898,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 +2131,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 +2139,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}" @@ -2309,10 +2323,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 +2399,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 +2412,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:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Primijeni Pravilo Dodjele" @@ -2440,7 +2460,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 +2493,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "Jeste li sigurni da želite izbrisati zadatke?" @@ -2501,7 +2525,11 @@ 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?" @@ -2577,7 +2605,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Dodijeli" @@ -2640,6 +2668,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 +2742,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:696 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." @@ -2823,7 +2862,7 @@ 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" @@ -2854,6 +2893,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 +2914,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 +3028,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 +3040,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 +3093,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 +3141,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 +3155,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 +3426,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 +3544,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 +3575,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 +3671,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,7 +3728,7 @@ 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:1189 msgid "Bulk Edit {0}" msgstr "Grupno uređivanje {0}" @@ -3775,7 +3751,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 +3763,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 +3893,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 +3943,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 @@ -4035,7 +3996,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" @@ -4061,12 +4022,13 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji." #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4084,16 +4046,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:2205 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 @@ -4143,7 +4107,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}" @@ -4163,11 +4127,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" @@ -4218,7 +4182,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 +4190,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" @@ -4255,7 +4219,7 @@ 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" @@ -4267,11 +4231,11 @@ msgstr "Nije moguće pronaći datoteku {} na disku" 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:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "Nije moguće uvesti tabelu sa više od 5000 redova." @@ -4291,7 +4255,7 @@ msgstr "Nije moguće uskladiti kolonu {0} ni sa jednim poljem" 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 +4263,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 +4280,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:1129 +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:1157 msgid "Cannot use {0} in order/group by" msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po" @@ -4434,9 +4398,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 +4469,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 +4502,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 +4510,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}" @@ -4601,7 +4565,7 @@ 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}" @@ -4654,7 +4618,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 +4630,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:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Obriši Dodjelu" @@ -4692,7 +4656,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,7 +4668,11 @@ 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" @@ -4756,7 +4724,7 @@ msgstr "Klikni da Postavite Dinamičke Filtere" 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:739 msgid "Click to sort by {0}" msgstr "Klikni da sortirate po {0}" @@ -4934,7 +4902,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Sklopi Sve" @@ -5045,11 +5013,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:454 msgid "Column Width" msgstr "Širina Kolone" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "Širina kolone ne može biti nula." @@ -5118,16 +5086,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 +5093,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 +5102,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" @@ -5221,7 +5179,7 @@ msgstr "Naziv Kompanije" 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" @@ -5316,6 +5274,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 +5304,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:406 msgid "Configure Columns" msgstr "Konfiguriši Kolone" @@ -5372,7 +5335,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Potvrdi" @@ -5391,7 +5354,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:196 msgid "Confirm New Password" msgstr "Potvrdi Novu Lozinku" @@ -5418,7 +5381,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 {}" @@ -5545,7 +5508,6 @@ msgstr "Sadrži {0} sigurnosne ispravke" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5553,7 +5515,6 @@ msgstr "Sadrži {0} sigurnosne ispravke" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5561,24 +5522,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" @@ -5654,12 +5603,16 @@ msgstr "Greška pri kopiranju u međuspremnik" msgid "Copy to Clipboard" msgstr "Kopiraj u Međuspremnik" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "Osnovni DocTypes se ne mogu prilagoditi." @@ -5667,7 +5620,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:633 msgid "Correct version :" msgstr "Ispravna verzija:" @@ -5688,10 +5641,10 @@ 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" @@ -5760,7 +5713,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' @@ -5828,7 +5781,7 @@ 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:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Kreiraj" @@ -5841,7 +5794,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:276 msgid "Create User Email" msgstr "Kreiraj Korisničku e-poštu" @@ -5853,7 +5806,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,10 +5814,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "+ {0}" @@ -5881,7 +5834,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:507 msgid "Create your first {0}" msgstr "+ {0}" @@ -5907,7 +5860,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 +5872,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}" @@ -6256,14 +6209,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "Prilagodi" @@ -6407,7 +6360,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" @@ -6515,7 +6468,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:615 msgid "Data Too Long" msgstr "Predugi Podaci" @@ -6546,7 +6499,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:249 msgid "Database Table Row Size Limit" msgstr "Ograničenje Veličine Reda Tabele Baze Podataka" @@ -6684,11 +6637,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "Decimalni Razdjelnik mora biti jedan znak" @@ -6850,11 +6803,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." @@ -6905,10 +6858,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6916,11 +6869,16 @@ msgstr "Odgođeno" msgid "Delete" msgstr "Izbriši" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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" @@ -6961,7 +6919,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 +6952,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Trajno izbriši {0} stavke?" @@ -7039,6 +6997,10 @@ msgstr "Izbrisano Ime" msgid "Deleted all documents successfully" msgstr "Svi dokumenti su uspješno izbrisani" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Izbrisano!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "Brisanje {0} u toku" @@ -7054,8 +7016,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 +7033,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:301 msgid "Delimiter must be a single character" msgstr "Razdjelnik mora biti jedan znak" @@ -7098,7 +7060,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 +7095,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 +7115,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 +7124,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 +7207,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 +7268,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 +7285,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 +7294,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 +7344,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 +7358,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 +7368,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 +7386,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 +7409,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,16 +7445,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "Ne uređiuji zaglavlja koja su unaprijed postavljena u šablonu" @@ -7603,7 +7551,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 +7598,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 +7611,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 +7644,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 +7658,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,19 +7720,19 @@ 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" @@ -7981,7 +7929,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:1955 msgid "Document Unlocked" msgstr "Dokument Otključan" @@ -7989,15 +7937,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:1300 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:1299 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:1298 msgid "Document is in draft state" msgstr "Dokument je u stanju nacrta" @@ -8139,13 +8087,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "Preuzmi" @@ -8367,17 +8315,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:1776 #: 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:350 #: 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 +8333,7 @@ msgstr "ESC" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Uredi" @@ -8395,7 +8343,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "Uredi" @@ -8424,7 +8372,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Uredi DocType" @@ -8527,7 +8475,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 +8484,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}" @@ -8583,6 +8531,7 @@ 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' @@ -8596,6 +8545,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 @@ -8636,7 +8586,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" @@ -8767,10 +8717,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 +8785,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:278 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)" @@ -8905,7 +8855,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 +8881,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 +8974,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 +8981,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 +8993,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 +9016,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 +9029,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 +9055,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 +9075,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 +9091,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 +9107,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 +9155,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 +9225,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 +9245,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" @@ -9350,9 +9293,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "Greška u Obavještenju" @@ -9372,7 +9315,7 @@ 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:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Greška prilikom evaluacije Obavještenja {0}. Popravite vaš šablon." @@ -9525,7 +9468,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 +9476,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:2123 msgid "Execution Time: {0} sec" msgstr "Vrijeme izvršenja: {0} sek" @@ -9559,7 +9502,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Rasklopi Sve" @@ -9592,7 +9535,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 +9565,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Izvezi" @@ -9663,7 +9608,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Eksportiraj Izvještaj: {0}" @@ -9672,11 +9617,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?" @@ -9789,7 +9734,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 +9751,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: {}" @@ -9819,7 +9764,7 @@ msgstr "Povezivanje sa serverom nije uspjelo" 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" @@ -9831,8 +9776,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 +9793,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 +9813,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 +9867,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 +9924,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:1870 #: 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 +9947,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" @@ -10064,11 +10003,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:545 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,16 +10025,16 @@ 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:454 #: 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" @@ -10119,11 +10058,11 @@ msgstr "Ime polja {0} pojavljuje se više puta" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +10085,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 @@ -10195,7 +10134,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:589 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}" @@ -10299,7 +10238,7 @@ msgstr "Datoteke" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10358,7 +10297,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 +10311,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 +10335,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,7 +10352,7 @@ 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}" @@ -10424,18 +10369,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}" @@ -10523,11 +10468,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" @@ -10689,7 +10634,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 +10693,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:2120 +#: 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 +10720,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 +10734,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Za {0} na nivou {1} u {2} u redu {3}" @@ -10850,7 +10789,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 +10849,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 +10881,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 +10978,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:1831 msgid "From Document Type" msgstr "Od Dokumenta" @@ -11053,18 +11005,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" @@ -11163,6 +11113,12 @@ 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 msgid "Generate Tracking URL" @@ -11187,7 +11143,7 @@ msgstr "Geolokacija" msgid "Geolocation Settings" msgstr "Geolokacijske Postavke" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "Preuzmi Današnja Upozorenja" @@ -11493,11 +11449,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" @@ -11631,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 @@ -11644,7 +11594,6 @@ msgstr "HH:mm:ss" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11806,6 +11755,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 @@ -11940,11 +11895,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 +11974,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:1845 msgid "Hide Tags" msgstr "Sakrij Oznake" @@ -12038,7 +11988,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 +12037,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 +12126,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12284,7 +12231,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12414,6 +12361,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 +12396,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 +12457,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:1120 msgid "Illegal SQL Query" msgstr "Ilegalan SQL Upit" @@ -12568,11 +12523,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,11 +12549,11 @@ 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:384 msgid "Impersonate" msgstr "Oponašaj" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "Oponašaj {0}" @@ -12628,7 +12583,7 @@ msgstr "Implicitno" msgid "Import" msgstr "Uvezi" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "Uvezi" @@ -12923,7 +12878,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" @@ -12947,7 +12902,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 +12977,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:1876 msgid "Insert After" msgstr "Umetni Poslije" @@ -13038,7 +12993,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 +13011,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "Instaliraj {0} sa Marketplace" @@ -13074,7 +13033,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" @@ -13103,7 +13062,7 @@ msgstr "Nedovoljne dozvole za brisanje izvještaja" 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 +13166,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:849 +#: 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\"" @@ -13233,7 +13192,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,7 +13212,11 @@ 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" @@ -13294,7 +13257,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 +13266,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" @@ -13320,11 +13283,11 @@ msgstr "Nevažeći Izlazni Format" 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:1239 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" @@ -13343,7 +13306,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" @@ -13366,7 +13329,7 @@ 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" @@ -13378,6 +13341,10 @@ msgstr "Nevažeća agregatna funkcija" msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator." +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Nevažeća aplikacija" + #: frappe/database/query.py:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Nevažeći format argumenta: {0}. Dozvoljeni su samo navodni niz literali ili jednostavna imena polja." @@ -13394,7 +13361,7 @@ msgstr "Nevažeći znakovi u nazivu polja: {0}. Dozvoljeni su samo slova, brojev 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" @@ -13430,19 +13397,15 @@ msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field' 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:2199 msgid "Invalid field name {0}" msgstr "Nevažeći naziv polja {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "Nevažeći naziv polja: {0}" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "Nevažeći tip polja: {0}" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu" @@ -13470,12 +13433,20 @@ msgstr "Nevažeći tip argumenta funkcije: {0}. Dozvoljeni su samo nizovi, broje 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 +13454,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" @@ -13495,6 +13470,10 @@ msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}" msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahtjeva" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "Nevažeća uloga" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "Nevažeći format jednostavnog filtera: {0}" @@ -13511,7 +13490,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 +13499,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:627 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 +13521,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" @@ -13681,7 +13697,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" @@ -13973,12 +13989,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 @@ -14251,7 +14269,7 @@ msgstr "Pejzaž" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Jezik" @@ -14355,6 +14373,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 +14394,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" @@ -14535,7 +14553,7 @@ msgstr "Pismo" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14631,20 +14649,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 +14689,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 +14703,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,6 +14834,10 @@ 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' @@ -14880,7 +14890,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:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Postavke Liste" @@ -14921,7 +14931,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 +14940,8 @@ msgstr "Liste" msgid "Load Balancing" msgstr "Load Balancing" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Učitaj Još" @@ -14949,8 +14958,8 @@ 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 msgid "Loading" @@ -14964,7 +14973,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 +14983,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Učitavanje u toku..." @@ -15035,7 +15044,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" @@ -15175,7 +15184,7 @@ msgstr "URI Logotipa" msgid "Logout" msgstr "Odjava" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "Odjava sa Svih Sesija" @@ -15355,7 +15364,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:509 msgid "Mandatory Information missing:" msgstr "Nedostaju obavezne informacije:" @@ -15375,7 +15384,7 @@ msgstr "Obavezna polja u tabeli {0}, red {1}" 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 +15465,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 +15547,7 @@ 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 +#: 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}" @@ -15553,16 +15560,11 @@ msgstr "Maksimum" 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" @@ -15632,7 +15634,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" @@ -15698,7 +15700,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 +15732,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" @@ -15887,7 +15881,7 @@ 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" @@ -16154,7 +16148,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." @@ -16228,7 +16222,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." @@ -16269,7 +16263,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:498 #: 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,7 +16301,7 @@ 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/views/file/file_view.js:97 @@ -16323,7 +16317,7 @@ msgstr "Naziv (Naziv dokumenta)" 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 +16329,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 +16370,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 +16407,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:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Kreći se po listi prema gore" @@ -16433,7 +16427,7 @@ msgstr "Idi na glavni sadržaj" msgid "Navigation Settings" msgstr "Postavke Navigacije" -#: 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 "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika" @@ -16483,10 +16477,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 +16485,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" @@ -16562,12 +16552,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:190 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 +16566,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 +16584,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 +16644,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:411 msgid "New {0}" msgstr "Novi {0}" @@ -16676,7 +16666,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 +16674,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 +16687,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,12 +16794,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16861,6 +16852,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 +16891,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16907,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:1744 msgid "No Permissions Specified" msgstr "Nema Navedenih Dozvola" @@ -16932,11 +16927,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:720 msgid "No Preview Available" msgstr "Pregled nije Dostupan" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "Nijedan Pisač nije Dostupan." @@ -16952,7 +16947,7 @@ 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" @@ -16976,7 +16971,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:232 msgid "No alerts for today" msgstr "Nema upozorenja za danas" @@ -17004,19 +16999,15 @@ 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" @@ -17036,6 +17027,10 @@ 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" @@ -17108,7 +17103,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:947 msgid "No permission to read {0}" msgstr "Nema dozvole za čitanje {0}" @@ -17136,7 +17131,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" @@ -17160,7 +17155,7 @@ msgstr "Nije pronađeno {0}" 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:497 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}." @@ -17212,7 +17207,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" @@ -17261,18 +17256,17 @@ msgstr "Nemože se Nulirati" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17282,9 +17276,9 @@ msgstr "Nije Objavljeno" #: 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/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 +17310,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 +17326,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:637 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,7 +17354,7 @@ 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." @@ -17369,18 +17363,18 @@ msgstr "Nije u načinu rada za programere! Postavi u site_config.json ili naprav #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17409,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:399 msgid "Note: This will be shared with user." msgstr "Napomena: Ovo će biti podijeljeno s korisnikom." @@ -17439,10 +17433,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 +17481,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:542 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:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "Obavještenje: korisnik {0} nema postavljen broj mobilnog telefona" @@ -17547,7 +17540,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,7 +17598,7 @@ 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 {}." @@ -17719,11 +17712,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 +17835,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:" @@ -17927,7 +17920,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:" @@ -17971,7 +17964,7 @@ msgstr "Mogu se izbrisati samo izvještaji tipa Konstruktor Izvještaja" 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:129 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." @@ -18045,7 +18038,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 +18056,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 +18064,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Otvorite stavku liste" @@ -18086,13 +18079,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 +18094,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 +18113,7 @@ msgstr "Otvoreno" msgid "Operation" msgstr "Operacija" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "Operator mora biti jedan od {0}" @@ -18142,7 +18139,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" @@ -18174,7 +18171,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan" 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 +18180,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 +18188,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." @@ -18235,8 +18232,8 @@ msgstr "Naslov Istorije Organizacije" 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" @@ -18315,9 +18312,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:1796 msgid "PDF" msgstr "PDF" @@ -18358,11 +18355,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:629 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:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "PDF ispis putem \"Direktnog Ispisa\" nije podržano." @@ -18534,7 +18531,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}" @@ -18578,11 +18575,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 +18588,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 +18662,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18673,7 @@ msgstr "Pasivno" msgid "Password" msgstr "Lozinka" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "E-pošta s lozinkom poslana" @@ -18689,7 +18686,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:896 msgid "Password cannot be filtered" msgstr "Lozinka se ne može filtrirati" @@ -18706,6 +18703,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 +18715,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:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}" @@ -18726,7 +18727,7 @@ msgstr "Lozinka postavljena" msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu" -#: frappe/core/doctype/user/user.py: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 +18735,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:210 msgid "Passwords do not match!" msgstr "Lozinke se ne podudaraju!" @@ -18804,10 +18805,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" @@ -18943,16 +18946,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "Greška Dozvola" @@ -19040,8 +19043,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Odaberi Kolone" @@ -19101,11 +19104,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 +19116,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:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "Zamoli administratora da potvrdi vašu registraciju" @@ -19133,10 +19136,6 @@ 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: {}" @@ -19145,7 +19144,7 @@ msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1072 msgid "Please check your email for verification" msgstr "Provjeri e-poštu za potvrdu" @@ -19177,7 +19176,7 @@ msgstr "Klikni na sljedeću vezu da postavite novu lozinku" msgid "Please confirm your action to {0} this document." msgstr "Potvrdi akciju {0} ovog dokumenta." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "Kontaktiraj Upravitelja Sistema da instalira ispravnu verziju." @@ -19207,8 +19206,8 @@ msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19247,7 +19246,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 +19283,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." @@ -19300,7 +19300,7 @@ msgstr "Provjeri da su Referentni Dokumenti Konverzacije kružno povezani." 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:548 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 +19316,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:1711 msgid "Please save the report first" msgstr "Prvo spremi izvještaj" @@ -19352,7 +19352,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 +19364,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:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje" @@ -19390,7 +19390,7 @@ 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:562 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" @@ -19402,7 +19402,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" @@ -19438,23 +19438,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 +19475,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." @@ -19565,14 +19565,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potencijalno opasan sadržaj u niz literalu: {0}" @@ -19588,7 +19580,7 @@ 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:1401 msgid "Precision should be between 1 and 6" msgstr "Preciznost bi trebala biti između 1 i 6" @@ -19644,7 +19636,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" @@ -19679,13 +19671,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 +19699,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 @@ -19731,7 +19716,7 @@ msgstr "Prethodna" 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 +19762,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Ispiši" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Ispiši" @@ -19807,8 +19792,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19915,7 +19900,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19964,11 +19949,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:843 msgid "Printer" msgstr "Pisač" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "Mapiranje Pisača" @@ -19978,11 +19963,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:812 msgid "Printer Settings" msgstr "Postavke Pisača" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "Mapiranje pisača nije postavljeno." @@ -20044,7 +20029,7 @@ msgstr "Nastavi" msgid "Proceed Anyway" msgstr "Svejedno Nastavi" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "Obrađuje se" @@ -20070,9 +20055,9 @@ 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" @@ -20158,24 +20143,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 +20164,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 +20253,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" @@ -20296,8 +20268,8 @@ 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: " +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 +20318,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 +20418,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:309 msgid "Quoting must be between 0 and 3" msgstr "Ponuda mora biti između 0 i 3" @@ -20483,12 +20455,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 @@ -20525,7 +20491,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 +20508,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 +20565,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 +20580,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" @@ -20681,7 +20642,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 +20653,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 +20693,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 +20710,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" @@ -21003,15 +20977,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Osvježi" @@ -21036,18 +21010,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:534 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:374 #: 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 +21198,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!" @@ -21427,7 +21401,7 @@ msgstr "Upravitelj izvještaja" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "Naziv Izvještaja" @@ -21465,7 +21439,7 @@ msgstr "Pregled iIvještaja" msgid "Report bug" msgstr "Prijavi Grešku" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "Izvještaj se ne može postaviti za Singl tipove" @@ -21491,20 +21465,20 @@ 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:615 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:1994 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}" @@ -21527,7 +21501,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" @@ -21657,11 +21631,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "Poništi LDAP Lozinku" @@ -21669,11 +21643,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:235 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:168 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 +21682,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:433 msgid "Reset to default" msgstr "Vrati na Standard" @@ -21746,6 +21720,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 +21730,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 +21788,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" @@ -21870,9 +21840,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 +21881,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 +21895,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 @@ -21974,7 +21944,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:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" @@ -22017,6 +21987,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 +21997,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 +22034,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 +22054,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 +22065,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 @@ -22125,12 +22093,12 @@ msgstr "Ruta: Primjer \"/app\"" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 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" @@ -22138,7 +22106,7 @@ msgstr "Red # {0}: korisnik koji nije administrator ne može postaviti ulogu {1} 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" @@ -22166,7 +22134,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,25 +22142,25 @@ 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:353 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:342 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" @@ -22288,7 +22256,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 +22334,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 +22362,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22384,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:1735 msgid "Save As" msgstr "Spremi Kao" @@ -22433,7 +22397,7 @@ 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:1951 msgid "Save Report" msgstr "Spremi Izvještaj" @@ -22462,7 +22426,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 +22505,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" @@ -22709,7 +22673,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" @@ -22818,7 +22782,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 +22829,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22873,12 +22837,12 @@ 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:497 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" @@ -22889,7 +22853,7 @@ msgstr "Odaberi Priloge" 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" @@ -22953,12 +22917,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:489 #: 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" @@ -23004,8 +22971,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:598 msgid "Select Network Printer" msgstr "Odaberi Mrežni Pisač" @@ -23073,11 +23040,11 @@ msgstr "Odaberi polje da biste uredili njegova svojstva." msgid "Select a group node first." msgstr "Odaberi Grupu." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 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 +23074,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Odaberi artikle više listi" @@ -23147,7 +23114,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 +23298,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:1946 msgid "Sender Field should have Email in options" msgstr "Polje Pošiljatelja treba da ima opciju E-pošta" @@ -23425,7 +23392,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}" @@ -23454,7 +23421,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." @@ -23559,7 +23526,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:2104 msgid "Set Level" msgstr "Postavi Nivo" @@ -23613,7 +23580,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:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Postavi Korisničke Dozvole" @@ -23778,14 +23745,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 +23763,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "Postavljanje Automatske e-pošte" @@ -23871,11 +23833,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 +23852,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 +23904,7 @@ msgstr "Prikaži Dokument" msgid "Show Error" msgstr "Prikaži Grešku" -#: frappe/public/js/frappe/form/layout.js:579 +#: 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 +24032,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:1845 msgid "Show Tags" msgstr "Prikaži Oznake" @@ -24097,7 +24049,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 +24089,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 +24137,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 +24167,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 +24202,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" @@ -24314,7 +24262,7 @@ msgstr "Jednostavan Python Izraz, primjer: status == 'Open' i tip == 'Bug'" msgid "Simultaneous Sessions" msgstr "Simultane Sesije" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "Pojedinačni DocTypes se ne mogu prilagoditi." @@ -24547,11 +24495,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,13 +24530,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24596,6 +24543,10 @@ msgstr "Polje sortiranja {0} mora biti važeći naziv polja" 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 +24573,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" @@ -24683,7 +24640,7 @@ msgstr "Standard" 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" @@ -24739,8 +24696,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 +24705,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 @@ -24821,7 +24778,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 +24834,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 +24859,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 +24867,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 +24905,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:454 msgid "Sticky" msgstr "Sticky" @@ -24976,6 +24935,10 @@ msgstr "Korištenje Pohrane po Tabelama" msgid "Store Attached PDF Document" msgstr "Pohrani priloženi PDF Dokument" +#: frappe/core/doctype/user/user.js:490 +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." @@ -25070,7 +25033,7 @@ msgstr "Predmet" msgid "Subject Field" msgstr "Polje Predmeta" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 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" @@ -25095,7 +25058,7 @@ msgstr "Red Podnošenja" msgid "Submit" msgstr "Rezerviši" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Rezerviši" @@ -25105,7 +25068,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Pošalji" @@ -25129,7 +25092,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 +25104,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 +25116,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Pošalji {0} dokumenata?" @@ -25162,11 +25125,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 +25152,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 +25166,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:1171 #: 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 +25208,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 +25259,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 +25381,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:2531 msgid "Syntax Error" msgstr "Greška Sintakse" @@ -25547,6 +25504,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 +25587,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 +25661,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 +25670,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,7 +25692,7 @@ 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:1170 msgid "Table updated" msgstr "Tabela Ažurirana" @@ -25779,11 +25738,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 +25811,7 @@ msgstr "Šablon Upozorenja" msgid "Templates" msgstr "Šabloni" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "Privremeno Onemogućeno" @@ -25919,7 +25885,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 +25909,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:1193 msgid "The CSV format is case sensitive" msgstr "CSV format razlikuje velika i mala slova" @@ -25956,7 +25922,7 @@ 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" @@ -25964,7 +25930,7 @@ msgstr "Uvjet '{0}' je nevažeći" 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 +25973,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 +25981,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:685 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." @@ -26117,11 +26083,11 @@ msgstr "Broj projekta dobijen od Google Cloud Console pod " -#: frappe/core/doctype/user/user.py:993 +#: 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" @@ -26158,7 +26124,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}" @@ -26207,7 +26173,7 @@ msgstr "U redu čekanja već postoji {0} s istim filterima:" msgid "There can be only 9 Page Break fields in a Web Form" msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice" -#: frappe/core/doctype/doctype/doctype.py: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,6 +26185,10 @@ 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." @@ -26251,11 +26221,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" @@ -26343,7 +26313,7 @@ msgstr "Ovaj grafikon će biti dostupan svim korisnicima ako je ovo postavljeno" msgid "This doctype has no orphan fields to trim" msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje" -#: frappe/core/doctype/doctype/doctype.py: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." @@ -26409,7 +26379,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 +26398,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:2180 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 +26422,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 +26440,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:423 msgid "This may get printed on multiple pages" msgstr "Ovo se može ispisati na više stranica" @@ -26523,8 +26487,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 +26519,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:1253 msgid "Throttled" msgstr "Prigušeno" @@ -26707,11 +26671,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" @@ -26760,9 +26724,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 +26748,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 +26770,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" @@ -26967,7 +26925,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 +26941,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" @@ -27033,7 +26991,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 +27007,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:1041 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 +27069,10 @@ msgstr "Vrh Desno" msgid "Topic" msgstr "Tema" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "Ukupno" @@ -27157,18 +27115,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" @@ -27269,6 +27227,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 +27246,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:2235 msgid "Translate Data" msgstr "Prevedi Podatke" @@ -27294,7 +27257,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 +27341,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" @@ -27728,8 +27691,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 +27707,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" @@ -27818,7 +27780,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:427 msgid "Update" msgstr "Ažuriraj" @@ -27894,7 +27856,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 +27864,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 🎉" @@ -28075,7 +28037,7 @@ msgstr "Korištenje funkcije {0} u polju je ograničena" 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 +28058,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 +28069,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 +28084,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 +28098,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 +28115,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 +28149,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 +28213,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 +28232,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 +28255,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "Korisničke Dozvole" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Korisničke Dozvole" @@ -28312,7 +28273,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 +28341,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 +28375,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 +28396,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:1382 msgid "User {0} impersonated as {1}" msgstr "Korisnik {0} predstavljen kao {1}" @@ -28458,7 +28425,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 +28509,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" @@ -28614,7 +28581,7 @@ 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:612 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" @@ -28660,7 +28627,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 +28640,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 +28702,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:156 msgid "View Doctype Permissions" msgstr "Prikaz Doctype Dozvola" @@ -28765,7 +28724,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:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Prikaži Dozvoljene Dokumente" @@ -28812,7 +28771,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" @@ -28889,7 +28848,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" @@ -29078,7 +29037,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 +29050,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 +29093,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 +29310,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" @@ -29452,7 +29402,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 +29428,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 +29440,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,7 +29479,7 @@ 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" @@ -29590,11 +29555,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." @@ -29617,7 +29582,7 @@ msgstr "Piši" 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,7 +29601,7 @@ 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" @@ -29694,14 +29659,15 @@ 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/website/doctype/help_article/templates/help_article.html:25 @@ -29778,11 +29744,11 @@ msgstr "Nije vam dozvoljeno da izvezete {} doctype" msgid "You are not allowed to print this report" msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj" -#: frappe/public/js/frappe/views/communication.js: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:605 msgid "You are not allowed to update this Web Form Document" msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme" @@ -29806,7 +29772,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 +29798,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." @@ -29875,7 +29845,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." @@ -29905,11 +29875,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "Ne možete postaviti 'Prevodivo' za polje {0}" @@ -29927,7 +29897,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}" @@ -29978,7 +29948,7 @@ msgstr "Nemate dovoljno dozvola da dovršite radnju" 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:878 msgid "You do not have permission to access {0}: {1}." msgstr "Nemate dozvolu za pristup {0}: {1}." @@ -29990,7 +29960,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "Nemate dozvolu za pristup {0} DocType." @@ -30002,19 +29972,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:245 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 +29992,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 +30012,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:501 msgid "You haven't created a {0} yet" msgstr "{0} nema u sistemu" @@ -30063,11 +30029,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:804 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:645 msgid "You must login to submit this form" msgstr "Morate se prijaviti da pošaljete ovu formu" @@ -30099,13 +30065,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." @@ -30174,10 +30140,22 @@ msgstr "Prestali ste pratiti ovaj dokument" msgid "You viewed this" msgstr "Prikazali ste ovo" -#: frappe/public/js/frappe/desk.js:553 +#: 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." @@ -30231,10 +30209,18 @@ 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/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" @@ -30339,7 +30325,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 +30470,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 +30532,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 +30547,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" @@ -30624,11 +30605,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 +30628,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" @@ -30840,19 +30816,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:301 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:300 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:302 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:299 msgid "since yesterday" msgstr "od jučer" @@ -30905,6 +30881,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 +30912,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 +30926,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:403 msgid "via Notification" msgstr "putem Obavijesti" @@ -30979,10 +30959,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:635 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 +30995,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 +31025,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:486 +#: 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 +31061,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" @@ -31102,7 +31091,6 @@ msgstr "{0} Izvještaj" 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 +31115,7 @@ msgstr "{0} Radni Prostor" msgid "{0} added" msgstr "{0} dodano" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} već postoji. Odaberite drugo ime" @@ -31206,11 +31194,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." @@ -31277,7 +31261,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,7 +31270,7 @@ 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" @@ -31294,15 +31278,15 @@ msgstr "{0} je obavezno polje" msgid "{0} is a not a valid zip file" msgstr "{0} nije važeća zip datoteka" -#: frappe/core/doctype/doctype/doctype.py: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 +31295,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}" @@ -31363,8 +31347,8 @@ msgstr "{0} nije važeći Cron izraz." 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} nije važeća adresa e-pošte" @@ -31372,15 +31356,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:174 msgid "{0} is not a valid Name" msgstr "{0} nije važeće Ime" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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." @@ -31400,19 +31384,23 @@ msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti 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" @@ -31420,31 +31408,31 @@ msgstr "{0} nije postavljeno" msgid "{0} is now default print format for {1} doctype" msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta" -#: frappe/public/js/frappe/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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} je obavezan" -#: 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:1835 msgid "{0} items selected" msgstr "{0} artikala odabrano" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}" @@ -31477,7 +31465,7 @@ msgstr "prije {0} minuta" msgid "{0} months ago" msgstr "{0} mjeseci prije" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} mora biti iza {1}" @@ -31513,7 +31501,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 +31514,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} od {1} ({2} redovi sa potomcima)" @@ -31576,11 +31564,11 @@ msgstr "{0} je uklonio(la) svoju dodjelu." msgid "{0} role does not have permission on any doctype" msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} red #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "{0} red #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} uspješno spremljen" @@ -31600,11 +31588,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 +31605,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" @@ -31636,7 +31624,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:254 msgid "{0} updated" msgstr "{0} ažurirano" @@ -31680,7 +31668,7 @@ msgstr "{0} {1} već postoji" 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" @@ -31712,75 +31700,75 @@ msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom do završetka." 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:1801 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:1819 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:1817 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:1796 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:1803 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:1799 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:1823 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:1756 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:1770 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 +31776,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:1785 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 +31784,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}" @@ -31813,7 +31801,7 @@ msgstr "{0}: {1} je postavljeno na stanje {2}" 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 +31825,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 +31833,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:2525 msgid "{} Invalid python code on line {}" msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
{}" msgstr "{} Možda nevažeći python kod.
{}" diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po index 1249a2a0ba..3d21e1e3da 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:29\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,19 @@ 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:363 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:259 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 +98,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 +118,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:892 msgid "1 = True & 0 = False" msgstr "" @@ -144,10 +140,6 @@ msgstr "" msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - #: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -245,6 +237,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 "" @@ -479,7 +478,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 +545,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,10 +554,6 @@ 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 "" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -576,7 +571,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 +670,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:452 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 +699,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +723,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:459 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 +770,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 @@ -856,7 +873,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "" @@ -965,7 +982,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:501 #: 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 +993,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1005,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,10 +1038,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1100,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 +1133,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "" @@ -1248,7 +1265,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 "" @@ -1356,7 +1373,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,11 +1400,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1425,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 "" @@ -1564,7 +1581,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 +1641,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 +1662,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 +1710,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 +1942,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 +1950,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 "" @@ -2122,10 +2134,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 +2210,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 +2223,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2271,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 +2304,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,7 +2336,11 @@ 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 "" @@ -2390,7 +2416,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2479,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 +2553,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2636,7 +2673,7 @@ 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 "" @@ -2667,6 +2704,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 +2725,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 +2839,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 +2851,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 +2904,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 +2952,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 +2966,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 +3237,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 +3355,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 +3386,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 +3482,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,7 +3539,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "" @@ -3588,7 +3562,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 +3574,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 +3704,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 +3754,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 @@ -3848,7 +3807,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 "" @@ -3874,12 +3833,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3857,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3956,7 +3918,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 "" @@ -3976,11 +3938,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,7 +3993,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 +4001,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 "" @@ -4068,7 +4030,7 @@ 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 "" @@ -4080,11 +4042,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4104,7 +4066,7 @@ msgstr "" 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 +4074,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 +4091,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:1129 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4247,7 +4209,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 +4279,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 +4312,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 +4320,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,7 +4375,7 @@ 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 "" @@ -4466,7 +4428,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 +4440,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4466,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,7 +4478,11 @@ 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 "" @@ -4568,7 +4534,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4712,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4857,11 +4823,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4930,16 +4896,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 +4903,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 +4912,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 "" @@ -5033,7 +4989,7 @@ msgstr "" 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 "" @@ -5128,6 +5084,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 +5114,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:406 msgid "Configure Columns" msgstr "" @@ -5182,7 +5143,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5162,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5189,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 "" @@ -5355,7 +5316,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5363,7 +5323,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5371,24 +5330,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 "" @@ -5464,12 +5411,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5428,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:633 msgid "Correct version :" msgstr "" @@ -5498,10 +5449,10 @@ 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 "" @@ -5638,7 +5589,7 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" @@ -5651,7 +5602,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "" @@ -5663,7 +5614,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,10 +5622,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5642,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:507 msgid "Create your first {0}" msgstr "" @@ -5717,7 +5668,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 +5680,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 "" @@ -6066,14 +6017,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6217,7 +6168,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 "" @@ -6325,7 +6276,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "" @@ -6356,7 +6307,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6445,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6611,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 "" @@ -6715,10 +6666,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6726,11 +6677,16 @@ msgstr "" msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6771,7 +6727,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 +6760,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6849,6 +6805,10 @@ msgstr "" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "" @@ -6864,7 +6824,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 +6841,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6868,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 +6903,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 +6923,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 +6932,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 +7015,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 +7076,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 +7093,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 +7102,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 +7152,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 +7166,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 +7176,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 +7194,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 +7217,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,16 +7253,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "" @@ -7410,7 +7356,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 +7403,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 +7416,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 +7449,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 +7463,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,19 +7525,19 @@ 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 "" @@ -7788,7 +7734,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:1955 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7742,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7892,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "" @@ -8174,17 +8120,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:1776 #: 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:350 #: 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 +8138,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8148,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8177,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8334,7 +8280,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 +8289,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 "" @@ -8390,6 +8336,7 @@ 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' @@ -8403,6 +8350,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 @@ -8443,7 +8391,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 "" @@ -8574,10 +8522,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 +8590,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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 "" @@ -8712,7 +8660,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 +8686,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 +8779,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 +8786,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 +8798,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 +8820,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 +8833,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 +8859,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 +8879,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 +8895,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 +8911,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 +8959,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 +9029,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 +9049,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 "" @@ -9156,9 +9097,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "" @@ -9178,7 +9119,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9331,7 +9272,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 +9280,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,7 +9306,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" @@ -9398,7 +9339,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 +9369,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9412,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9421,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 "" @@ -9595,7 +9538,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 +9555,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 "" @@ -9625,7 +9568,7 @@ msgstr "" 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 "" @@ -9637,8 +9580,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 +9597,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 +9617,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 +9671,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 +9728,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:1870 #: 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 +9751,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9870,11 +9807,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,16 +9829,16 @@ 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:454 #: 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 "" @@ -9925,11 +9862,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9889,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 @@ -10001,7 +9938,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10105,7 +10042,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10164,7 +10101,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 +10115,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 +10139,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,7 +10156,7 @@ 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 "" @@ -10230,18 +10173,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 "" @@ -10329,11 +10272,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 "" @@ -10495,7 +10438,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 +10496,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:2120 +#: 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 +10523,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 +10537,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10592,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 +10652,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 +10684,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 +10781,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:1831 msgid "From Document Type" msgstr "" @@ -10858,18 +10808,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 "" @@ -10968,6 +10916,12 @@ 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 msgid "Generate Tracking URL" @@ -10992,7 +10946,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "" @@ -11298,11 +11252,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" @@ -11436,7 +11385,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 @@ -11449,7 +11397,6 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11611,6 +11558,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 @@ -11745,11 +11698,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 +11777,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "" @@ -11843,7 +11791,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 +11840,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 +11929,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,7 +12034,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12219,6 +12164,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 +12199,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 +12260,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:1120 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12326,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,11 +12352,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12433,7 +12386,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12728,7 +12681,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12752,7 +12705,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 +12780,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:1876 msgid "Insert After" msgstr "" @@ -12843,7 +12796,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 +12814,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12836,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 "" @@ -12908,7 +12865,7 @@ msgstr "" 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 +12969,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:849 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13038,7 +12995,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,7 +13015,11 @@ 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 "" @@ -13099,7 +13060,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 +13069,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 "" @@ -13125,11 +13086,11 @@ msgstr "" 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:1239 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" @@ -13148,7 +13109,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 "" @@ -13171,7 +13132,7 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" @@ -13183,6 +13144,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13199,7 +13164,7 @@ msgstr "" 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 "" @@ -13235,19 +13200,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13275,12 +13236,20 @@ msgstr "" 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 +13257,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 "" @@ -13300,6 +13273,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13316,7 +13293,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 +13302,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:627 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 +13324,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 "" @@ -13486,7 +13500,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 "" @@ -13778,12 +13792,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 @@ -14056,7 +14072,7 @@ msgstr "" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14160,6 +14176,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 +14197,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" @@ -14340,7 +14356,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14436,20 +14452,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 +14492,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 +14506,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,6 +14637,10 @@ 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' @@ -14685,7 +14693,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14734,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 +14743,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,8 +14761,8 @@ 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 msgid "Loading" @@ -14769,7 +14776,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 +14786,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14847,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14980,7 +14987,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "" @@ -15160,7 +15167,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:509 msgid "Mandatory Information missing:" msgstr "" @@ -15180,7 +15187,7 @@ msgstr "" 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 +15268,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 +15350,7 @@ msgstr "" msgid "Max auto email report per user" 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 "" @@ -15358,16 +15363,11 @@ msgstr "" 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 "" @@ -15437,7 +15437,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 "" @@ -15503,7 +15503,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 +15535,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 "" @@ -15692,7 +15684,7 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -15959,7 +15951,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 "" @@ -16033,7 +16025,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16074,7 +16066,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:498 #: 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,7 +16104,7 @@ 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/views/file/file_view.js:97 @@ -16128,7 +16120,7 @@ msgstr "" 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 +16132,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 +16171,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16208,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16228,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16286,10 +16278,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 +16286,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 "" @@ -16365,12 +16353,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:190 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 +16367,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 +16385,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 +16443,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:411 msgid "New {0}" msgstr "" @@ -16477,7 +16465,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 +16473,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 +16486,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,12 +16593,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16662,6 +16651,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 +16690,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16706,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16726,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "" @@ -16753,7 +16746,7 @@ 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 "" @@ -16777,7 +16770,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "" @@ -16805,19 +16798,15 @@ 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 "" @@ -16837,6 +16826,10 @@ 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 "" @@ -16909,7 +16902,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:947 msgid "No permission to read {0}" msgstr "" @@ -16937,7 +16930,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16961,7 +16954,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17013,7 +17006,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 "" @@ -17062,18 +17055,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17083,9 +17075,9 @@ msgstr "" #: 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/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 +17109,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 +17125,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17153,7 @@ 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 "" @@ -17170,18 +17162,18 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17208,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17232,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 +17280,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17339,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,7 +17397,7 @@ 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 "" @@ -17520,11 +17511,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 +17634,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 "" @@ -17728,7 +17719,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 "" @@ -17772,7 +17763,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" @@ -17846,7 +17837,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 +17855,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 +17863,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17878,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 +17893,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 +17912,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +17938,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 "" @@ -17975,7 +17970,7 @@ msgstr "" 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 +17979,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 +17987,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 "" @@ -18036,8 +18031,8 @@ msgstr "" 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 "" @@ -18116,9 +18111,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:1796 msgid "PDF" msgstr "" @@ -18159,11 +18154,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18330,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 "" @@ -18379,11 +18374,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 +18387,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 +18461,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18472,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18485,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18502,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 +18514,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18527,7 +18526,7 @@ msgstr "" 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 +18534,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18604,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 "" @@ -18744,16 +18745,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18841,8 +18842,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +18903,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 +18915,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18934,10 +18935,6 @@ 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 "" @@ -18946,7 +18943,7 @@ msgstr "" 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:1072 msgid "Please check your email for verification" msgstr "" @@ -18978,7 +18975,7 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19008,8 +19005,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19048,7 +19045,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 +19082,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 "" @@ -19101,7 +19099,7 @@ msgstr "" msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19115,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:1711 msgid "Please save the report first" msgstr "" @@ -19153,7 +19151,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 +19163,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,7 +19189,7 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" @@ -19203,7 +19201,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 "" @@ -19239,23 +19237,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 +19274,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 "" @@ -19366,14 +19364,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19379,7 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19445,7 +19435,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 "" @@ -19480,13 +19470,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 +19498,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 @@ -19532,7 +19515,7 @@ msgstr "" 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 +19561,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19591,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19716,7 +19699,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19765,11 +19748,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19762,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19845,7 +19828,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "" @@ -19871,9 +19854,9 @@ 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,24 +19942,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 +19963,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 +20052,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 "" @@ -20097,7 +20067,7 @@ msgid "QR Code for Login Verification" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20117,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 +20217,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20254,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 @@ -20326,7 +20290,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 +20307,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 +20364,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 +20379,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 "" @@ -20482,7 +20441,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 +20452,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 +20492,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 +20509,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" @@ -20804,15 +20776,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20837,18 +20809,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:534 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:374 #: 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 +20997,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 "" @@ -21228,7 +21200,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "" @@ -21266,7 +21238,7 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "" @@ -21292,20 +21264,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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 "" @@ -21328,7 +21300,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 "" @@ -21458,11 +21430,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21442,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21481,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21547,6 +21519,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 +21529,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 +21587,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 "" @@ -21671,9 +21639,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 +21680,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 +21694,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 @@ -21775,7 +21743,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21786,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 +21796,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 +21833,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 +21853,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 +21864,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 @@ -21926,12 +21892,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21939,7 +21905,7 @@ msgstr "" msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21967,7 +21933,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,25 +21941,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22089,7 +22055,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 +22133,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 +22161,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22183,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:1735 msgid "Save As" msgstr "" @@ -22234,7 +22196,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "" @@ -22263,7 +22225,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 +22304,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 "" @@ -22510,7 +22472,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 "" @@ -22619,7 +22581,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 +22628,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,12 +22636,12 @@ 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:497 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" @@ -22690,7 +22652,7 @@ msgstr "" 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 "" @@ -22754,12 +22716,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:489 #: 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 "" @@ -22805,8 +22770,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:598 msgid "Select Network Printer" msgstr "" @@ -22874,11 +22839,11 @@ msgstr "" msgid "Select a group node first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +22873,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +22913,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 +23097,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23191,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 "" @@ -23255,7 +23220,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 "" @@ -23360,7 +23325,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:2104 msgid "Set Level" msgstr "" @@ -23414,7 +23379,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23555,14 +23520,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 +23538,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23608,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 +23627,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 +23679,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23807,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:1845 msgid "Show Tags" msgstr "" @@ -23874,7 +23824,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 +23864,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 +23912,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 +23942,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 +23977,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 "" @@ -24091,7 +24037,7 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "" @@ -24324,11 +24270,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,13 +24305,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24373,6 +24318,10 @@ msgstr "" 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 +24348,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 "" @@ -24460,7 +24415,7 @@ msgstr "" 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 "" @@ -24516,8 +24471,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 +24480,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 @@ -24598,7 +24553,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 +24609,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 +24634,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 +24642,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 +24680,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:454 msgid "Sticky" msgstr "" @@ -24753,6 +24710,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24847,7 +24808,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24872,7 +24833,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,7 +24843,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,7 +24867,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 +24879,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 +24891,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +24900,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 +24927,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 +24941,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:1171 #: 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 +24983,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 +25034,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 +25156,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25324,6 +25279,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 +25362,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 +25436,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 +25445,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,7 +25467,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "" @@ -25556,11 +25513,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 +25586,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25658,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 +25682,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:1193 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,7 +25693,7 @@ 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 "" @@ -25737,7 +25701,7 @@ msgstr "" 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 +25742,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 +25750,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25886,11 +25850,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -25927,7 +25891,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 "" @@ -25976,7 +25940,7 @@ msgstr "" 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,6 +25952,10 @@ 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 "" @@ -26020,11 +25988,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 "" @@ -26112,7 +26080,7 @@ 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 "" @@ -26174,7 +26142,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 +26161,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26185,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 +26203,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:423 msgid "This may get printed on multiple pages" msgstr "" @@ -26288,7 +26250,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 +26282,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:1253 msgid "Throttled" msgstr "" @@ -26472,11 +26434,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 "" @@ -26525,9 +26487,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 +26511,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 +26533,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 "" @@ -26726,7 +26682,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 +26698,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26748,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 +26764,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26826,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +26872,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 "" @@ -27026,6 +26982,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 +27001,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "" @@ -27051,7 +27012,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 +27096,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 "" @@ -27482,8 +27443,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 +27459,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27572,7 +27532,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:427 msgid "Update" msgstr "" @@ -27648,7 +27608,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 +27616,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 "" @@ -27829,7 +27789,7 @@ msgstr "" 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 +27810,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 +27821,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 +27836,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 +27850,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 +27867,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 +27901,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 +27965,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 +27984,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 +28007,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28025,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 +28093,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 +28127,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 +28148,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28212,7 +28177,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 +28261,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 "" @@ -28368,7 +28333,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28414,7 +28379,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 +28392,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 +28454,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28519,7 +28476,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28523,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 "" @@ -28643,7 +28600,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 "" @@ -28832,7 +28789,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 +28802,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 +28845,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 +29062,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 "" @@ -29206,7 +29154,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 +29180,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 +29192,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,7 +29231,7 @@ 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" @@ -29344,11 +29307,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 "" @@ -29371,7 +29334,7 @@ msgstr "" 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,7 +29353,7 @@ 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 "" @@ -29448,14 +29411,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29532,11 +29496,11 @@ msgstr "" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29524,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 +29550,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 "" @@ -29629,7 +29597,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 "" @@ -29659,11 +29627,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29649,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29732,7 +29700,7 @@ msgstr "" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,7 +29712,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29756,19 +29724,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29744,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 +29764,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:501 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29781,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:804 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:645 msgid "You must login to submit this form" msgstr "" @@ -29853,12 +29817,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 @@ -29928,10 +29892,22 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -29985,10 +29961,18 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "" @@ -30093,7 +30077,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 +30222,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 +30284,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 +30299,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 "" @@ -30378,11 +30357,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 +30380,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 "" @@ -30594,19 +30568,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "" @@ -30659,6 +30633,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 +30664,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 +30678,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "" @@ -30733,10 +30711,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30747,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 +30777,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:486 +#: 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 +30813,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 +30843,6 @@ msgstr "" 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 +30867,7 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30960,11 +30946,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 "" @@ -31031,7 +31013,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,7 +31022,7 @@ 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 "" @@ -31048,15 +31030,15 @@ msgstr "" 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 +31047,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 "" @@ -31117,8 +31099,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31108,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:174 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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 "" @@ -31154,19 +31136,23 @@ msgstr "" 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 "" @@ -31174,31 +31160,31 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" -#: 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:1835 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,7 +31217,7 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "" @@ -31267,7 +31253,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 +31266,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:1211 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31330,11 +31316,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31340,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 +31357,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 "" @@ -31390,7 +31376,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:254 msgid "{0} updated" msgstr "" @@ -31434,7 +31420,7 @@ msgstr "" 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 "" @@ -31466,75 +31452,75 @@ msgstr "" 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31528,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31536,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 "" @@ -31567,7 +31553,7 @@ msgstr "" 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 +31577,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 +31585,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
{}" msgstr "" diff --git a/frappe/locale/da.po b/frappe/locale/da.po new file mode 100644 index 0000000000..cab596f3fc --- /dev/null +++ b/frappe/locale/da.po @@ -0,0 +1,31637 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: developers@frappe.io\n" +"POT-Creation-Date: 2025-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:29\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:363 +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:259 +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:892 +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:954 +msgid "1 Report" +msgstr "1 Rapport" + +#: frappe/tests/test_utils.py:716 +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:714 +msgid "1 hour ago" +msgstr "1 time siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:48 +#: frappe/tests/test_utils.py:712 +msgid "1 minute ago" +msgstr "1 minut siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:66 +#: frappe/tests/test_utils.py:720 +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/tests/test_utils.py:711 +msgid "1 second ago" +msgstr "1 sekund siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:62 +#: frappe/tests/test_utils.py:718 +msgid "1 week ago" +msgstr "1 uge siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:70 +#: frappe/tests/test_utils.py:722 +msgid "1 year ago" +msgstr "1 år siden" + +#: frappe/tests/test_utils.py:715 +msgid "2 hours ago" +msgstr "2 timer siden" + +#: frappe/tests/test_utils.py:721 +msgid "2 months ago" +msgstr "2 måneder siden" + +#: frappe/tests/test_utils.py:719 +msgid "2 weeks ago" +msgstr "2 uger siden" + +#: frappe/tests/test_utils.py:723 +msgid "2 years ago" +msgstr "2 år siden" + +#: frappe/tests/test_utils.py:713 +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:717 +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 "" + +#. 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" +"
{{ 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]) }}
\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 "" + +#: 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:257 +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 "" + +#: 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 "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:452 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:449 +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:459 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:491 +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:1884 +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:841 +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:501 +#: 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:454 +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:36 +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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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:2145 +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 "" + +#. 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 "" + +#: 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:16 +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/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/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/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 "" + +#. 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/transaction_log/transaction_log.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Administrator" +msgstr "" + +#: frappe/core/doctype/user/user.py:1224 +msgid "Administrator Logged In" +msgstr "Administrator Logget Ind" + +#: frappe/core/doctype/user/user.py:1218 +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 "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 "" + +#. 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:62 +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:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + +#. Label of the align (Select) field in DocType 'Letter Head' +#. Label of the footer_align (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Align" +msgstr "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 "" + +#. 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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 '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 "" + +#: 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 "" + +#: 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:2130 +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 "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:2109 +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:968 +msgid "Are you sure you want to generate a new report?" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:120 +msgid "Are you sure you want to merge {0} with {1}?" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +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 "" + +#. 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:2091 +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:696 +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:142 +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:324 +#: 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:104 +msgid "Attempting Connection to QZ Tray..." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:120 +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:1189 +msgid "Bulk Edit {0}" +msgstr "" + +#: frappe/desk/reportview.py:602 +msgid "Bulk Operation Failed" +msgstr "" + +#: frappe/desk/reportview.py:606 +msgid "Bulk Operation Successful" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:131 +msgid "Bulk PDF Export" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. 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:1729 +#: 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:130 +#: 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:2200 +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:2205 +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:1161 +msgid "Cannot Update After Submit" +msgstr "" + +#: frappe/core/doctype/file/file.py:621 +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:1013 +msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" +msgstr "" + +#: frappe/model/document.py:1027 +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:153 +msgid "Cannot delete Home and Attachments folders" +msgstr "" + +#: frappe/model/delete_doc.py:379 +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:1033 +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:277 +#: frappe/desk/doctype/number_card/number_card.js:364 +msgid "Cannot edit filters for standard number cards" +msgstr "" + +#: frappe/client.py:166 +msgid "Cannot edit standard fields" +msgstr "" + +#: 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 +msgid "Cannot find file {} on disk" +msgstr "" + +#: frappe/core/doctype/file/file.py:561 +msgid "Cannot get file contents of a Folder" +msgstr "" + +#: frappe/printing/page/print/print.js:857 +msgid "Cannot have multiple printers mapped to a single print format." +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1133 +msgid "Cannot import table with more than 5000 rows." +msgstr "" + +#: frappe/model/document.py:1101 +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:175 +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:1129 +msgid "Cannot use sub-query here." +msgstr "" + +#: frappe/model/db_query.py:1157 +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/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" +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 "" + +#. 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 "" + +#. 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:52 +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "" + +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:651 +msgid "Choose Existing Card or create New Card" +msgstr "" + +#: 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/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:2106 +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:518 +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:215 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:99 +#: frappe/website/doctype/web_form/web_form.js:236 +msgid "Click table to edit" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: frappe/desk/doctype/number_card/number_card.js:402 +msgid "Click to Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:739 +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:2104 +#: 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:1232 +#: frappe/public/js/frappe/widgets/widget_dialog.js:546 +#: frappe/public/js/frappe/widgets/widget_dialog.js:694 +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Color" +msgstr "" + +#. 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:454 +msgid "Column Width" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:661 +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:397 +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:54 +#: 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:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Condition" +msgstr "" + +#. Label of the condition_json (JSON) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Condition JSON" +msgstr "" + +#. Label of 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:406 +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:412 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:196 +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:110 +#: frappe/public/js/frappe/form/print_utils.js:134 +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 "" + +#. 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:1745 +#: 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:620 +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:480 +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:123 +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:633 +msgid "Correct version :" +msgstr "" + +#: frappe/email/smtp.py:78 +msgid "Could not connect to outgoing email server" +msgstr "" + +#: frappe/model/document.py:1097 +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:564 +msgid "Could not parse field: {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:234 +msgid "Could not start up:" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js: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/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 +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:1264 +#: 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:102 +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:1191 +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:512 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "" + +#: frappe/core/doctype/doctype/doctype_list.js:100 +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:276 +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:504 +#: frappe/public/js/frappe/web_form/web_form_list.js:225 +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:507 +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:337 +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:82 +#: 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:1943 +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:343 +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:100 +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 (Long Text) field in DocType 'Transaction Log' +#. Label of the data (Code) field in DocType 'Version' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the webhook_data (Table) field in DocType 'Webhook' +#. Label of the data (Code) field in DocType 'Webhook Request Log' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. 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/transaction_log/transaction_log.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Data" +msgstr "" + +#: 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:615 +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:249 +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:313 +msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:305 +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 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:1742 +#: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/templates/discussions/reply_card.html:35 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Delete" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2168 +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 "" + +#: 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:106 +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:935 +msgid "Delete and Generate New" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:203 +msgctxt "Button text" +msgid "Delete column" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js: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:2173 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} item permanently?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2179 +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:606 +msgid "Deleted all documents successfully" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + +#: frappe/desk/reportview.py:583 +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:301 +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:1194 +msgid "Do not edit headers which are preset in the template" +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 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 "" + +#: 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:66 +#: 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 +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:1955 +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:1300 +msgid "Document has been cancelled" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1299 +msgid "Document has been submitted" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1298 +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:467 +#: 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:242 +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:831 +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:172 +msgid "Drop files here" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Dropdowns" +msgstr "" + +#. 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:663 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:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1776 +#: 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:350 +#: 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:2254 +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:349 +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:1970 +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:28 +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:57 +#: 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' +#: 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/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/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:278 +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:1537 +msgid "Empty alias is not allowed" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:285 +msgid "Empty column" +msgstr "" + +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + +#. Label of the enable (Check) field in DocType 'Google Calendar' +#. Label of the enable (Check) field in DocType 'Google Contacts' +#. Label of the enable (Check) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Enable" +msgstr "" + +#. 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:141 +msgid "Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Error connecting via IMAP/POP3: {e}" +msgstr "" + +#: 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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 +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:777 +msgid "Error while evaluating Notification {0}. Please fix your template." +msgstr "" + +#: frappe/model/base_document.py:803 +msgid "Error: Data missing in table {0}" +msgstr "" + +#: frappe/model/base_document.py:813 +msgid "Error: Value missing for {0}: {1}" +msgstr "" + +#: frappe/model/base_document.py:807 +msgid "Error: {0} Row #{1}: Value missing for: {2}" +msgstr "" + +#. Label of the errors_generated_in_last_1_day_section (Section Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Errors" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. 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:274 +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:2123 +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:2104 +#: frappe/public/js/frappe/views/treeview.js:133 +msgid "Expand All" +msgstr "" + +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "Experimental" +msgstr "" + +#. 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:1811 +#: 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:2276 +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:240 +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/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:698 +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:600 +msgid "Failed to delete {0} documents: {1}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:33 +msgid "Failed to enable scheduler: {0}" +msgstr "" + +#: 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:1870 +#: 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:201 +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:545 +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:454 +#: 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:127 frappe/database/schema.py:404 +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:394 +msgid "Fieldname {0} cannot have special characters like {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1908 +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:410 +msgid "Fields `file_name` or `file_url` must be set for File" +msgstr "" + +#: frappe/model/db_query.py:146 +msgid "Fields must be a list or tuple when as_list is enabled" +msgstr "" + +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + +#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' +#: 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:589 +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:478 +msgid "File \"{0}\" was skipped because of invalid file type" +msgstr "" + +#: frappe/core/doctype/file/utils.py:128 +msgid "File '{0}' not found" +msgstr "" + +#. 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:624 +msgid "File name cannot have {0}" +msgstr "" + +#: 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/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:375 +msgid "File type of {0} is not allowed" +msgstr "" + +#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +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:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:93 +#: frappe/public/js/frappe/list/base_list.js: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:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 +msgid "Filter..." +msgstr "" + +#. 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:188 +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' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.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/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 "" + +#: 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:472 +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:75 +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:2120 +#: 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:1752 +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:1831 +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:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:419 +msgid "Further nodes can be only created under 'Group' type nodes" +msgstr "" + +#: 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:873 +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:1790 +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:222 +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:10 +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: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 "" + +#: 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:750 +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" +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:98 +#: 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:63 +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:1787 +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:1641 +msgid "Hidden columns include: {0}" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 +#: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 +msgid "Hide" +msgstr "" + +#. 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:1845 +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:491 +#: 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:1764 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 +#: frappe/public/js/frappe/roles_editor.js:66 +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:452 frappe/model/db_query.py:455 +#: frappe/model/db_query.py:1120 +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:384 +msgid "Impersonate" +msgstr "" + +#: frappe/core/doctype/user/user.js:411 +msgid "Impersonate as {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +msgid "Impersonated by {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:21 +msgid "Impersonating {0}" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:56 +msgid "Implement `clear_old_logs` method to enable auto error clearing." +msgstr "" + +#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' +#: 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:1907 +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/views/reports/query_report.js:1619 +msgid "Include filters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 +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:255 +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:1551 +msgid "Incorrect value in row {0}:" +msgstr "" + +#: frappe/model/document.py:1553 +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:1876 +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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 +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:806 frappe/database/query.py:1052 +msgid "Insufficient Permission for {0}" +msgstr "" + +#: frappe/desk/reportview.py:360 +msgid "Insufficient Permissions for deleting Report" +msgstr "" + +#: frappe/desk/reportview.py:331 +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:849 +#: 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:159 +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:209 +msgid "Invalid File URL" +msgstr "" + +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + +#: frappe/public/js/form_builder/store.js:221 +msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" +msgstr "" + +#: 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:116 +msgid "Invalid Override" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:202 +msgid "Invalid Parameters." +msgstr "" + +#: frappe/core/doctype/user/user.py:1239 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 +msgid "Invalid Phone Number" +msgstr "" + +#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 +msgid "Invalid Request" +msgstr "" + +#: 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:220 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/public/js/frappe/widgets/widget_dialog.js:602 +#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 +msgid "Invalid URL" +msgstr "" + +#: 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:186 +msgid "Invalid aggregate function" +msgstr "" + +#: frappe/database/query.py:1542 +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:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:404 +msgid "Invalid column" +msgstr "" + +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 +msgid "Invalid docstatus" +msgstr "" + +#: 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:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2199 +msgid "Invalid field name {0}" +msgstr "" + +#: frappe/database/query.py:668 +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:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:201 +msgid "Invalid filter: {0}" +msgstr "" + +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + +#: frappe/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:337 +msgid "Invalid request arguments" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:430 +msgid "Invalid template file for import" +msgstr "" + +#: 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:627 +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:49 +#: 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 "" + +#. 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 "" + +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +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:64 +#: 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:39 +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:388 +msgid "Kanban Board Name" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +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:17 +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' +#: 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: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' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.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:134 +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:43 +#: frappe/public/js/frappe/form/templates/print_layout.html:16 +#: frappe/public/js/frappe/list/bulk_operations.js:52 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 +msgid "Letter Head" +msgstr "" + +#. 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:48 +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:66 +#: 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 'Workspace' +#: frappe/contacts/doctype/address/address.js:39 +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.js:92 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Links" +msgstr "" + +#. 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:1987 +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:305 +#: 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:1088 +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:179 +#: 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:367 +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:339 frappe/auth.py:342 +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:144 +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:202 +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' +#: frappe/core/doctype/doctype/doctype.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:509 +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:120 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:125 +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 "" + +#: 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:320 +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:1737 +#: 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:196 +#: 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:201 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/ui/messages.js:182 +#: frappe/public/js/frappe/views/communication.js:126 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/www/message.html:3 +msgid "Message" +msgstr "" + +#: 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:73 +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 "" + +#. 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:131 +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 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' +#. Label of the module (Link) field in DocType 'Report' +#. Label of the module (Link) field in DocType 'User Type Module' +#. Label of the module (Link) field in DocType 'Dashboard' +#. Label of the module (Link) field in DocType 'Dashboard Chart' +#. Label of the module (Link) field in DocType 'Dashboard Chart Source' +#. Label of the module (Link) field in DocType 'Form Tour' +#. Label of the module (Link) field in DocType 'Module Onboarding' +#. Label of the module (Link) field in DocType 'Number Card' +#. Label of the module (Link) field in DocType 'Workspace' +#. Label of the module (Link) field in DocType 'Notification' +#. Label of the module (Link) field in DocType 'Print Format' +#. Label of the module (Link) field in DocType 'Print Format Field Template' +#. Label of the module (Link) field in DocType 'Web Form' +#. Label of the module (Link) field in DocType 'Web Template' +#. Label of the module (Link) field in DocType 'Website Theme' +#: frappe/core/doctype/block_module/block_module.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type_module/user_type_module.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Module" +msgstr "" + +#. 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' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user/user.json +msgid "More Information" +msgstr "" + +#: 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:193 +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:168 +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:209 +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:498 +#: 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:107 +#: 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:22 +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:1378 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1385 +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/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:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + +#: frappe/utils/nestedset.py:94 +msgid "Nested set error. Please contact the Administrator." +msgstr "" + +#. Name of a DocType +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Network Printer Settings" +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:471 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/website/doctype/web_form/templates/web_list.html:15 +#: frappe/www/list.html:19 +msgid "New" +msgstr "" + +#: 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:344 +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:190 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:411 +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:1663 +#: 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:716 +#: frappe/printing/page/print/print.js:797 +#: 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:1744 +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:720 +msgid "No Preview Available" +msgstr "" + +#: frappe/printing/page/print/print.js:875 +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:344 +msgid "No Select Field Found" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "" + +#: frappe/desk/reportview.py:672 +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:232 +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:344 +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:371 +msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." +msgstr "" + +#: frappe/utils/file_manager.py:143 +msgid "No file attached" +msgstr "" + +#: 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:161 +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:947 +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:116 +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:233 +msgid "No {0} found" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:497 +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:256 +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:387 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:380 frappe/desk/calendar.py:26 +#: frappe/public/js/frappe/web_form/webform_script.js:15 +#: frappe/website/doctype/web_form/web_form.py:747 +#: 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:560 +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:169 +#: 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:637 +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:215 +#: frappe/public/js/frappe/request.js:159 +#: frappe/public/js/frappe/request.js:170 +#: frappe/public/js/frappe/request.js:175 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 +#: 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:399 +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:542 +msgid "Notification: customer {0} has no Mobile number set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:528 +msgid "Notification: document {0} has no {1} number set (field: {2})" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:537 +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:170 +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:42 +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:1235 +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:357 +msgid "Only reports of type Report Builder can be deleted" +msgstr "" + +#: frappe/desk/reportview.py:328 +msgid "Only reports of type Report Builder can be edited" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:129 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "" + +#: frappe/model/delete_doc.py:241 +msgid "Only the Administrator can delete a standard DocType." +msgstr "" + +#: frappe/desk/form/assign_to.py:198 +msgid "Only the assignee can complete this to-do." +msgstr "" + +#: 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:1431 +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:2130 +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 (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/templates/form_grid/fields.html:43 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Options" +msgstr "" + +#: 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:871 +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:767 +msgid "Order By must be a string" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'About Us Settings' +#. Label of the company_history (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History" +msgstr "" + +#. 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:15 +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 "" + +#: 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 "" + +#. 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:1796 +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:629 +msgid "PDF generation may not work as expected." +msgstr "" + +#: frappe/printing/page/print/print.js:547 +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:65 +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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 +#: 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:1092 +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:896 +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:1091 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "" + +#: frappe/www/update-password.html:191 +msgid "Password set" +msgstr "" + +#: frappe/auth.py:258 +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:210 +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:533 +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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 +#: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 +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' +#. 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/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Phone" +msgstr "" + +#. 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 +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: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:1074 +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:76 +msgid "Please attach an image file to set HTML for Footer." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:64 +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:951 +msgid "Please check the value of \"Fetch From\" set for field {0}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1072 +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:631 +msgid "Please contact your system manager to install correct version." +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:44 +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:18 +msgid "Please duplicate this to make changes" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:163 +msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." +msgstr "" + +#: 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:651 +#: frappe/printing/page/print/print.js:681 +#: frappe/public/js/frappe/list/bulk_operations.js:161 +#: frappe/public/js/frappe/utils/utils.js:1434 +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:988 +msgid "Please refresh to get the latest document." +msgstr "" + +#: frappe/printing/page/print/print.js:548 +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:1711 +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:30 +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:113 +msgid "Please select Minimum Password Score" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1184 +msgid "Please select X and Y fields" +msgstr "" + +#: frappe/utils/__init__.py:129 +msgid "Please select a country code for field {1}." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +msgid "Please select a file first." +msgstr "" + +#: frappe/utils/file_manager.py:50 +msgid "Please select a file or url" +msgstr "" + +#: 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:1152 +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:562 +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 +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:126 +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:18 +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 +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:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + +#. Label of the precision (Select) field in DocType 'DocField' +#. Label of the precision (Select) field in DocType 'Custom Field' +#. Label of the precision (Select) field in DocType 'Customize Form Field' +#. 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: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:307 +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:190 +#: frappe/integrations/doctype/webhook/webhook.js:90 +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/controls/markdown_editor.js:17 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/ui/capture.js:236 +msgid "Preview" +msgstr "" + +#. 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 "" + +#. 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: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:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2160 +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:834 +#: 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:1577 +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:210 +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:84 +#: 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:843 +msgid "Printer" +msgstr "" + +#: frappe/printing/page/print/print.js:820 +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:812 +msgid "Printer Settings" +msgstr "" + +#: frappe/printing/page/print/print.js:561 +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:931 +msgid "Proceed Anyway" +msgstr "" + +#: frappe/public/js/frappe/form/controls/table.js:119 +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 "" + +#: frappe/public/js/frappe/socketio_client.js:82 +msgid "Progress" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +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:501 +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:219 +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:309 +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:95 +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:885 +msgid "Rebuild" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:509 +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_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/core/report/transaction_log_report/transaction_log_report.py:88 +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/views/render_preview.js:34 +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Doctype" +msgstr "" + +#. 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 (Data) field in DocType 'Transaction Log' +#. Label of the reference_doctype (Link) field in DocType 'View Log' +#. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event Participants' +#. Label of the reference_doctype (Link) field in DocType 'Kanban Board' +#. Label of the reference_doctype (Link) field in DocType 'List Filter' +#. Label of the reference_doctype (Link) field in DocType 'Email Queue' +#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe' +#. Label of the reference_doctype (Link) field in DocType 'Integration Request' +#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item' +#. Label of the reference_doctype (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Document Type" +msgstr "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the reference_name (Dynamic Link) field in DocType 'Comment' +#. Label of the reference_name (Dynamic Link) field in DocType 'Communication' +#. Label of the docname (Data) field in DocType 'Data Import Log' +#. Label of the reference_name (Data) field in DocType 'Error Log' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event +#. Participants' +#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo' +#. Label of the reference_name (Dynamic Link) field in DocType 'Email +#. Unsubscribe' +#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow +#. Action' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.js:152 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Name" +msgstr "" + +#. 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:1771 +#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/widgets/chart_widget.js:291 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 +#: 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 "" + +#. 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:534 +msgctxt "Document count in list view" +msgid "Refreshing" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:57 +#: frappe/core/doctype/user/user.js:374 +#: 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:101 +#: frappe/public/js/frappe/form/print_utils.js:25 +#: frappe/public/js/frappe/request.js:615 +#: frappe/public/js/frappe/utils/utils.js:923 +msgid "Report" +msgstr "" + +#. 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:1956 +msgid "Report Name" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:69 +msgid "Report Name, Report Field and Fucntion are required to create a number card" +msgstr "" + +#. 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:1810 +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 +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 +msgid "Report has no numeric fields, please change the Report Name" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1012 +msgid "Report initiated, click to view status" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py: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:615 +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:1994 +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:364 +msgid "Report {0} deleted" +msgstr "" + +#: frappe/desk/query_report.py:54 +msgid "Report {0} is disabled" +msgstr "" + +#: frappe/desk/reportview.py:341 +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:928 +msgid "Reports already in Queue" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. 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' +#: frappe/integrations/doctype/integration_request/integration_request.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 "" + +#. 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:184 frappe/core/doctype/user/user.js:187 +msgid "Reset LDAP Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "" + +#: frappe/core/doctype/user/user.js:235 +msgid "Reset OTP Secret" +msgstr "" + +#: frappe/core/doctype/user/user.js:168 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:433 +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:161 +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:103 +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:1929 +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:852 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 +msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" +msgstr "" + +#: frappe/model/base_document.py:982 +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_index (Data) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json +msgid "Row Index" +msgstr "" + +#. Label of the row_indexes (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Row Indexes" +msgstr "" + +#. Label of 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:353 +msgid "Row {0}: Not allowed to disable Mandatory for standard fields" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:342 +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' +#: frappe/core/doctype/doctype/doctype.json +msgid "Rows Threshold for Grid Search" +msgstr "" + +#. Label of the rule (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Rule" +msgstr "" + +#. 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:871 +#: 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:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 +#: 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:1735 +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:1951 +msgid "Save Report" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +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:106 +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:106 +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:854 +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:615 +#: 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:497 +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:25 +#: frappe/custom/doctype/client_script/client_script.js:28 +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:58 +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:489 +#: 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:103 +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:598 +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 node first." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1943 +msgid "Select a valid Sender Field for creating documents from Email" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1927 +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:1445 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 +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:1946 +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:396 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:373 +msgid "Session Expired" +msgstr "" + +#. Label of the session_expiry (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Session Expiry (idle timeout)" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:120 +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/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:367 +msgid "Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 +#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/public/js/form_builder/components/Field.vue:80 +#: frappe/website/doctype/web_form/web_form.js:269 +msgid "Set Filters" +msgstr "" + +#: 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:2104 +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:136 +#: 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:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +msgid "Set all private" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +msgid "Set all public" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:49 +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 '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 "" + +#. 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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 +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 "" + +#: 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:1845 +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 '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\")" +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 "" + +#. 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:126 +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 +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:337 +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:1720 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +#: frappe/website/report/website_analytics/website_analytics.js:38 +msgid "Source" +msgstr "" + +#: 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:419 +#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: 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:79 +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:81 +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:354 +msgid "Standard Reports cannot be deleted" +msgstr "" + +#: frappe/desk/reportview.py:325 +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/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:454 +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:490 +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:200 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/views/communication.js:119 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:63 +msgid "Subject" +msgstr "" + +#. 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:1936 +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' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:138 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/quick_entry.js:225 +#: frappe/public/js/frappe/ui/capture.js:307 +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2227 +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:63 +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:2232 +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:1171 +#: 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:2531 +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:1170 +msgid "Table updated" +msgstr "" + +#: frappe/model/document.py:1574 +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:1040 +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:1193 +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:208 +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:685 +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:145 +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/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:388 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:338 +msgid "The system is being updated. Please refresh again after a few moments." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions." +msgstr "" + +#: 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:964 +msgid "There are {0} with the same filters already in the queue:" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:81 +#: frappe/website/doctype/web_form/web_form.js:317 +msgid "There can be only 9 Page Break fields in a Web Form" +msgstr "" + +#: 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:618 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 +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:182 +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:391 +msgid "This Kanban Board will be private" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:666 +msgid "This Month" +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 "" + +#. 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:113 +msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "This document has been modified after the email was sent." +msgstr "" + +#: 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:500 +msgid "This file is attached to a protected document and cannot be deleted." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76 +msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access." +msgstr "" + +#: frappe/core/doctype/file/file.js:20 +msgid "This file is public. It can be accessed without authentication." +msgstr "" + +#: 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:2180 +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:423 +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:1036 +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:852 +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:1253 +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 the time_zone (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:407 +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Time Zone" +msgstr "" + +#. 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' +#. 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 "" + +#: 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:853 +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:1960 +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:1041 +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:551 +#: 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: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:1784 +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 "" + +#: 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:2235 +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:337 +#: frappe/public/js/frappe/views/workspace/workspace.js:399 +#: frappe/public/js/frappe/widgets/widget_dialog.js:404 +#: frappe/website/doctype/web_template/web_template.json +#: frappe/www/attribution.html:35 +msgid "Type" +msgstr "" + +#: 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:219 +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:464 +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:396 +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:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:109 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Unfollow" +msgstr "" + +#. 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:316 +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:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "" + +#: 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:269 +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:427 +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 "" + +#. 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:337 +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:131 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:13 +msgid "Upload" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 +msgid "Upload Image" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +msgid "Upload file" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +msgid "Upload {0} files" +msgstr "" + +#. Label of the uploaded_to_dropbox (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Dropbox" +msgstr "" + +#. Label of the uploaded_to_google_drive (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Google Drive" +msgstr "" + +#. 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:435 +msgid "Use of function {0} in field is restricted" +msgstr "" + +#: frappe/model/db_query.py:412 +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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 +msgid "User Permissions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1918 +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:1382 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: frappe/utils/oauth.py:269 +msgid "User {0} is disabled" +msgstr "" + +#: frappe/sessions.py:242 +msgid "User {0} is disabled. Please contact your System Manager." +msgstr "" + +#: frappe/desk/form/assign_to.py:104 +msgid "User {0} is not permitted to access this document." +msgstr "" + +#. Label of 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:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:95 +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/public/js/frappe/list/bulk_operations.js:336 +#: frappe/public/js/frappe/list/bulk_operations.js:398 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4 +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Value" +msgstr "" + +#. 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:1054 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:612 +msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" +msgstr "" + +#: frappe/model/base_document.py:445 +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:1124 +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:156 +msgid "View Doctype Permissions" +msgstr "" + +#: frappe/core/doctype/file/file.js:4 +msgid "View File" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:220 +msgid "View Full Log" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:258 +msgid "View List" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "" + +#: frappe/core/doctype/user/user.js:147 +#: 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/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:1712 +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:38 +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:175 +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:954 +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:1224 +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:1663 +#: 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/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:408 frappe/desk/reportview.py:411 +#: frappe/permissions.py:626 +msgid "You are not allowed to export {} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:448 +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:605 +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:137 +msgid "You can disable this {0} instead of deleting it." +msgstr "" + +#: frappe/core/doctype/file/file.py:736 +msgid "You can increase the limit from System Settings." +msgstr "" + +#: 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:345 +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:390 +msgid "You can't set 'Options' for field {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:394 +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:386 +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:247 +msgctxt "Form timeline" +msgid "You created this document {0}" +msgstr "" + +#: frappe/client.py:417 +msgid "You do not have Read or Select Permissions for {}" +msgstr "" + +#: 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:381 +msgid "You do not have enough permissions to complete the action" +msgstr "" + +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:878 +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:808 +msgid "You don't have permission to access the {0} DocType." +msgstr "" + +#: frappe/utils/response.py:290 frappe/utils/response.py:294 +msgid "You don't have permission to access this file" +msgstr "" + +#: frappe/desk/query_report.py: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:245 +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:501 +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:804 +msgid "You must be logged in to use this form." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:645 +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:279 +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/form_timeline.js:419 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +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/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:514 +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/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/app.py:374 +msgid "Your session has expired, please login again to continue." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "" + +#: 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:265 +msgid "[Action taken by {0}]" +msgstr "" + +#. Label of the _doctype (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_doctype" +msgstr "" + +#. 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 "" + +#: 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 "" + +#. 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:290 +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:362 +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/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 "" + +#. 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:301 +msgid "since last month" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 +msgid "since last week" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 +msgid "since last year" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +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:403 +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:635 +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:486 +#: 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:1154 +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:955 +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/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:1751 +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:95 +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:150 +msgid "{0} can not be more than {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 +msgid "{0} cancelled this document" +msgstr "" + +#: 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:250 +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:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 +msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." +msgstr "" + +#: 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:544 +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:485 +msgid "{0} is not a child table of {1}" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 +msgid "{0} is not a field of doctype {1}" +msgstr "" + +#: 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:27 +msgid "{0} is not a valid DocType for Dynamic Link" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:206 +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:174 +msgid "{0} is not a valid Name" +msgstr "" + +#: frappe/utils/__init__.py:153 +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:524 +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:173 +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:98 +#: frappe/printing/doctype/print_format/print_format.py:101 +#: 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:1835 +msgid "{0} items selected" +msgstr "" + +#: frappe/core/doctype/user/user.py:1391 +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:1804 +msgid "{0} must be after {1}" +msgstr "" + +#: frappe/model/document.py:1560 +msgid "{0} must be beginning with '{1}'" +msgstr "" + +#: frappe/model/document.py:1562 +msgid "{0} must be equal to '{1}'" +msgstr "" + +#: frappe/model/document.py:1558 +msgid "{0} must be none of {1}" +msgstr "" + +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +msgid "{0} must be one of {1}" +msgstr "" + +#: frappe/model/base_document.py:876 +msgid "{0} must be set first" +msgstr "" + +#: frappe/model/base_document.py:729 +msgid "{0} must be unique" +msgstr "" + +#: frappe/model/document.py:1564 +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:1211 +msgid "{0} of {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1213 +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:1741 +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/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/roles_editor.js:62 +msgid "{0} role does not have permission on any doctype" +msgstr "" + +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "" + +#: frappe/desk/query_report.py:630 +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:234 +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:254 +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:662 frappe/model/rename_doc.py:110 +msgid "{0} {1} already exists" +msgstr "" + +#: frappe/model/base_document.py:987 +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:248 +msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." +msgstr "" + +#: frappe/model/base_document.py:1115 +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:1120 +msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1801 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1819 +msgid "{0}: Cannot set Assign Amend if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1817 +msgid "{0}: Cannot set Assign Submit if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1796 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1803 +msgid "{0}: Cannot set Import without Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1799 +msgid "{0}: Cannot set Submit, Cancel, Amend without Write" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1823 +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:1756 +msgid "{0}: No basic permissions set" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1770 +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:1785 +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:1282 +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:2525 +msgid "{} Invalid python code on line {}" +msgstr "" + +#: frappe/utils/data.py:2534 +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:562 +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..1dc7c2ccd2 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = Wahr & 0 = Falsch" @@ -145,10 +141,6 @@ msgstr "1 Google Kalender-Ereignis synchronisiert" 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 msgid "1 day ago" msgstr "vor 1 Tag" @@ -246,6 +238,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" @@ -525,7 +524,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 +596,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 +605,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 +614,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 +639,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 +729,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,10 +738,6 @@ 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" - #: 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}" @@ -761,7 +755,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 +854,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:452 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 +883,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:449 +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 +907,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:459 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 +954,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 @@ -1041,7 +1057,7 @@ msgstr "Aktion / Route" msgid "Action Complete" msgstr "Aktion abgeschlossen" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "Aktion fehlgeschlagen" @@ -1150,7 +1166,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:501 #: 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 +1177,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:454 msgid "Add / Remove Columns" msgstr "Spalten hinzufügen / entfernen" @@ -1173,7 +1189,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" @@ -1206,10 +1222,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1284,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 +1317,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:2145 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" @@ -1433,7 +1449,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" @@ -1541,7 +1557,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" @@ -1568,11 +1584,11 @@ msgstr "Verwaltung" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "Administrator hat sich angemeldet" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}." @@ -1593,8 +1609,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" @@ -1749,7 +1765,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 +1825,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 +1846,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 +1894,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 +2127,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 +2135,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}" @@ -2308,10 +2319,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 +2395,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 +2408,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:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Zuweisungsregel anwenden" @@ -2439,7 +2456,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 +2489,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "Sind Sie sicher, dass Sie die Zuweisungen löschen möchten?" @@ -2500,7 +2521,11 @@ 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?" @@ -2576,7 +2601,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Zuweisen an" @@ -2639,6 +2664,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 +2738,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:696 msgid "At least one column is required to show in the grid." msgstr "Mindestens eine Spalte muss im Raster angezeigt werden." @@ -2822,7 +2858,7 @@ 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" @@ -2853,6 +2889,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 +2910,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 +2925,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 +3024,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 +3036,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 +3089,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 +3137,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 +3151,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 +3411,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 +3422,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 +3540,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 +3571,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 +3668,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,7 +3725,7 @@ 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:1189 msgid "Bulk Edit {0}" msgstr "Stapel-Bearbeitung {0}" @@ -3775,7 +3748,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 +3760,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 +3824,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 +3890,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 +3940,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 @@ -4035,7 +3993,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" @@ -4061,12 +4019,13 @@ msgstr "Kann {0} nicht in {1} umbenennen, da {0} nicht existiert." #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Stornieren" @@ -4084,16 +4043,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:2205 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 @@ -4143,7 +4104,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" @@ -4163,11 +4124,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" @@ -4218,7 +4179,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 +4187,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" @@ -4255,7 +4216,7 @@ 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" @@ -4267,11 +4228,11 @@ msgstr "Kann Datei {} auf der Festplatte nicht finden" msgid "Cannot get file contents of a Folder" msgstr "Dateiinhalt eines Ordners kann nicht abgerufen werden" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "Tabelle mit mehr als 5000 Zeilen kann nicht importiert werden." @@ -4291,7 +4252,7 @@ msgstr "Die Spalte {0} kann keinem Feld zugeordnet werden" 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 +4260,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 +4277,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:1129 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "{0} kann für die Sortierung oder Gruppierung verwendet werden" @@ -4434,9 +4395,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 +4466,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 +4499,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 +4507,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}" @@ -4601,7 +4562,7 @@ 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}" @@ -4654,7 +4615,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 +4627,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:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Zuweisung löschen" @@ -4692,7 +4653,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,7 +4665,11 @@ 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" @@ -4756,7 +4721,7 @@ msgstr "Klicken Sie hier, um dynamische Filter einzustellen" msgid "Click to Set Filters" msgstr "Klicken Sie, um Filter einzustellen" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "Klicken, um nach {0} zu sortieren" @@ -4934,7 +4899,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Alle zuklappen" @@ -5045,11 +5010,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:454 msgid "Column Width" msgstr "Spaltenbreite" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "Spaltenbreite darf nicht null sein." @@ -5118,16 +5083,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 +5090,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 +5099,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" @@ -5221,7 +5176,7 @@ msgstr "Firma" 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" @@ -5316,6 +5271,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 +5293,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 +5301,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:406 msgid "Configure Columns" msgstr "Spalten konfigurieren" @@ -5372,7 +5332,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Bestätigen" @@ -5391,7 +5351,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:196 msgid "Confirm New Password" msgstr "Bestätige neues Passwort" @@ -5418,7 +5378,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" @@ -5545,7 +5505,6 @@ msgstr "Enthält {0} Sicherheitsfixes" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5553,7 +5512,6 @@ msgstr "Enthält {0} Sicherheitsfixes" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5561,24 +5519,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" @@ -5654,12 +5600,16 @@ msgstr "Fehler in die Zwischenablage kopieren" msgid "Copy to Clipboard" msgstr "In die Zwischenablage kopieren" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes können nicht angepasst werden." @@ -5667,7 +5617,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:633 msgid "Correct version :" msgstr "Korrekte Version :" @@ -5685,13 +5635,13 @@ msgstr "Die Spalte {0} konnte dem Feld {1} nicht zugeordnet werden." #: frappe/database/query.py:564 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 +5672,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 @@ -5828,7 +5778,7 @@ 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:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Neuen Eintrag erstellen" @@ -5841,7 +5791,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:276 msgid "Create User Email" msgstr "Benutzer E-Mail erstellen" @@ -5853,7 +5803,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,10 +5811,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "Neu erstellen: {0}" @@ -5881,7 +5831,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:507 msgid "Create your first {0}" msgstr "Erstelle deine erste {0}" @@ -5907,7 +5857,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 +5869,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,7 +6173,7 @@ 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' @@ -6256,14 +6206,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "Anpassen" @@ -6407,7 +6357,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" @@ -6515,7 +6465,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:615 msgid "Data Too Long" msgstr "Daten zu lang" @@ -6546,7 +6496,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:249 msgid "Database Table Row Size Limit" msgstr "Begrenzung der Zeilengröße von Datenbanktabellen" @@ -6684,11 +6634,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "Das Dezimaltrennzeichen muss ein einzelnes Zeichen sein" @@ -6850,11 +6800,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." @@ -6905,10 +6855,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6916,11 +6866,16 @@ msgstr "Verzögert" msgid "Delete" msgstr "Löschen" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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" @@ -6961,7 +6916,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 +6949,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} Elemente dauerhaft löschen?" @@ -7039,6 +6994,10 @@ msgstr "Gelöschte Namen" msgid "Deleted all documents successfully" msgstr "Alle Dokumente erfolgreich gelöscht" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Gelöscht!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "Löscht {0}" @@ -7054,8 +7013,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 +7030,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:301 msgid "Delimiter must be a single character" msgstr "Trennzeichen muss ein einzelnes Zeichen sein" @@ -7098,7 +7057,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 +7092,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 +7112,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 +7121,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 +7204,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 +7265,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 +7282,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 +7291,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 +7341,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 +7355,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 +7365,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 +7383,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 +7406,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,16 +7442,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "Bearbeiten Sie keine Header, die in der Vorlage voreingestellt sind" @@ -7602,7 +7547,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 +7594,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 +7607,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 +7640,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 +7654,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,19 +7716,19 @@ 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" @@ -7980,7 +7925,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:1955 msgid "Document Unlocked" msgstr "Dokument entsperrt" @@ -7988,15 +7933,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:1300 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:1299 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:1298 msgid "Document is in draft state" msgstr "Das Dokument befindet sich im Entwurfsstatus" @@ -8138,13 +8083,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "Herunterladen" @@ -8366,17 +8311,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:1776 #: 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:350 #: 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 +8329,7 @@ msgstr "ESC" msgid "Edit" msgstr "Bearbeiten" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Bearbeiten" @@ -8394,7 +8339,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "Bearbeiten" @@ -8423,7 +8368,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "DocType bearbeiten" @@ -8526,7 +8471,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 +8480,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}" @@ -8582,6 +8527,7 @@ 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' @@ -8595,6 +8541,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 @@ -8635,7 +8582,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" @@ -8766,10 +8713,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 +8781,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:278 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)" @@ -8887,7 +8834,7 @@ msgstr "Leere Spalte" #: frappe/database/query.py:1455 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 +8851,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 +8877,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 +8970,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 +8977,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 +8989,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 +9012,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 +9025,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 +9051,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 +9071,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 +9087,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 +9103,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 +9151,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 +9221,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 +9241,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" @@ -9349,9 +9289,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "Fehler in der Benachrichtigung" @@ -9361,17 +9301,17 @@ 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:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Fehler beim Auswerten der Benachrichtigung {0}. Bitte reparieren Sie Ihre Vorlage." @@ -9524,7 +9464,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 +9472,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:2123 msgid "Execution Time: {0} sec" msgstr "Ausführungszeit: {0} Sek" @@ -9558,14 +9498,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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Alle ausklappen" #: frappe/database/query.py:352 msgid "Expected 'and' or 'or' operator, found: {0}" -msgstr "" +msgstr "Erwartet 'and' oder 'or' Operator, gefunden: {0}" #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" @@ -9591,7 +9531,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 +9561,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportieren" @@ -9662,7 +9604,7 @@ 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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Exportbericht: {0}" @@ -9671,11 +9613,11 @@ msgstr "Exportbericht: {0}" 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?" @@ -9788,7 +9730,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 +9747,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: {}" @@ -9818,7 +9760,7 @@ msgstr "Verbindung zum Server fehlgeschlagen" 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" @@ -9830,8 +9772,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 +9789,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 +9809,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 +9863,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 +9920,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:1870 #: 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 +9943,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" @@ -10063,11 +9999,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:545 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,16 +10021,16 @@ 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:454 #: 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" @@ -10118,11 +10054,11 @@ msgstr "Feldname {0} erscheint mehrfach" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +10081,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 @@ -10194,7 +10130,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:589 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" @@ -10298,7 +10234,7 @@ msgstr "Dateien" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10357,7 +10293,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 +10307,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 +10331,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,7 +10348,7 @@ 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}" @@ -10423,18 +10365,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" @@ -10522,11 +10464,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" @@ -10688,7 +10630,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 +10689,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:2120 +#: 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 +10709,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 +10730,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:1752 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 +10785,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 +10845,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 +10877,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 +10905,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 +10974,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:1831 msgid "From Document Type" msgstr "Vom Dokumenttyp" @@ -11052,18 +11001,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" @@ -11162,6 +11109,12 @@ 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 msgid "Generate Tracking URL" @@ -11186,7 +11139,7 @@ msgstr "Geolokalisierung" msgid "Geolocation Settings" msgstr "Geolokalisierungseinstellungen" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "Alarme für heute" @@ -11492,11 +11445,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" @@ -11630,7 +11578,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,7 +11590,6 @@ msgstr "HH: mm: ss" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11805,6 +11751,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 @@ -11908,7 +11860,7 @@ msgstr "Versteckte Felder" #: frappe/public/js/frappe/views/reports/query_report.js:1641 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 +11891,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 +11970,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:1845 msgid "Hide Tags" msgstr "Schlagworte ausblenden" @@ -12037,7 +11984,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 +12033,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 +12122,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12283,7 +12227,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12413,6 +12357,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 +12392,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 +12453,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:1120 msgid "Illegal SQL Query" msgstr "Ungültige SQL-Abfrage" @@ -12567,11 +12519,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,11 +12545,11 @@ 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:384 msgid "Impersonate" msgstr "Imitieren" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "{0} imitieren" @@ -12627,7 +12579,7 @@ msgstr "Implizit" msgid "Import" msgstr "Importieren" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "Importieren" @@ -12861,7 +12813,7 @@ msgstr "Filter einbeziehen" #: frappe/public/js/frappe/views/reports/query_report.js:1639 msgid "Include hidden columns" -msgstr "" +msgstr "Versteckte Spalten einbeziehen" #: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" @@ -12922,7 +12874,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" @@ -12946,7 +12898,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 +12973,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:1876 msgid "Insert After" msgstr "Einfügen nach" @@ -13037,7 +12989,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 +13007,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "{0} aus Marketplace installieren" @@ -13073,7 +13029,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" @@ -13102,7 +13058,7 @@ msgstr "Unzureichende Berechtigungen um Bericht zu löschen" 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 +13162,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:849 +#: 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" @@ -13232,7 +13188,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,7 +13208,11 @@ 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" @@ -13263,7 +13223,7 @@ msgstr "Ungültige Datei-URL" #: frappe/database/query.py:427 frappe/database/query.py:454 #: frappe/database/query.py:464 frappe/database/query.py:487 msgid "Invalid Filter" -msgstr "" +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 +13253,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 +13262,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" @@ -13319,11 +13279,11 @@ msgstr "Ungültige Ausgabeformat" 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:1239 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" @@ -13342,7 +13302,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" @@ -13365,7 +13325,7 @@ 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" @@ -13377,33 +13337,37 @@ msgstr "Ungültige Aggregatfunktion" msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Ungültiges Alias-Format: {0}. Alias muss ein einfacher Bezeichner sein." +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Ungültige App" + #: frappe/database/query.py:1468 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 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 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 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 msgid "Invalid condition type in nested filters: {0}" -msgstr "" +msgstr "Ungültiger Bedingungstyp in verschachtelten Filtern: {0}" #: frappe/database/query.py:787 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 msgid "Invalid docstatus" @@ -13423,25 +13387,21 @@ msgstr "Ungültiges Feldformat für SELECT: {0}. Feldnamen müssen einfach, mit #: frappe/database/query.py:734 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 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "Ungültiger Feldname {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" -msgstr "" +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" @@ -13469,12 +13429,20 @@ msgstr "" 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 +13450,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" @@ -13494,6 +13466,10 @@ msgstr "Ungültige Weiterleitungs-Regex in Zeile #{}: {}" msgid "Invalid request arguments" msgstr "Ungültige Anfrageargumente" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13510,7 +13486,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 +13495,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:627 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 +13517,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" @@ -13630,7 +13643,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 @@ -13680,7 +13693,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,13 +13707,13 @@ 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' @@ -13713,12 +13726,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' @@ -13753,7 +13766,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 +13916,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." @@ -13972,12 +13985,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 @@ -14250,7 +14265,7 @@ msgstr "Querformat" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Sprache" @@ -14334,7 +14349,7 @@ 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' @@ -14352,7 +14367,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 +14383,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" @@ -14534,7 +14549,7 @@ msgstr "Letter" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14630,20 +14645,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 +14685,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 +14699,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,6 +14830,10 @@ 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' @@ -14879,7 +14886,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:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Listeneinstellungen" @@ -14920,7 +14927,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 +14936,8 @@ msgstr "Listen" msgid "Load Balancing" msgstr "Lastverteilung" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Mehr laden" @@ -14948,8 +14954,8 @@ 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 msgid "Loading" @@ -14963,7 +14969,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 +14979,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Laden ..." @@ -15034,7 +15040,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" @@ -15174,7 +15180,7 @@ msgstr "" msgid "Logout" msgstr "Abmelden" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "Alle Sitzungen abmelden" @@ -15354,7 +15360,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:509 msgid "Mandatory Information missing:" msgstr "Pflichtangaben fehlen:" @@ -15374,7 +15380,7 @@ msgstr "Pflichtfelder in der Tabelle erforderlich {0}, Reihe {1}" msgid "Mandatory fields required in {0}" msgstr "Für {0} benötigte Pflichtfelder:" -#: frappe/public/js/frappe/web_form/web_form.js: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 +15461,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 +15543,7 @@ 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 +#: 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}" @@ -15552,16 +15556,11 @@ msgstr "Maximal" 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" @@ -15631,7 +15630,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" @@ -15697,7 +15696,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 +15728,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" @@ -15886,7 +15877,7 @@ 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" @@ -16153,7 +16144,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." @@ -16227,7 +16218,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." @@ -16268,7 +16259,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:498 #: 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,7 +16297,7 @@ 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/views/file/file_view.js:97 @@ -16322,7 +16313,7 @@ msgstr "Name (Dokumentname)" msgid "Name already taken, please set a new name" msgstr "Name bereits vergeben, bitte einen neuen Namen festlegen" -#: frappe/model/naming.py: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 +16325,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 +16366,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 +16403,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:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Liste nach oben navigieren" @@ -16432,7 +16423,7 @@ msgstr "Zum Hauptinhalt navigieren" msgid "Navigation Settings" msgstr "Navigationseinstellungen" -#: 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 "Sie benötigen die Rolle des Workspace Managers, um den privaten Arbeitsbereich anderer Benutzer zu bearbeiten" @@ -16442,7 +16433,7 @@ msgstr "Negativer Wert" #: frappe/database/query.py:333 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." @@ -16482,10 +16473,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 +16481,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" @@ -16561,12 +16548,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:190 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 +16562,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 +16580,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 +16638,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:411 msgid "New {0}" msgstr "Neu {0}" @@ -16673,7 +16660,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 +16668,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 +16681,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 +16771,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,12 +16788,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16858,6 +16846,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 +16885,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16901,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:1744 msgid "No Permissions Specified" msgstr "Keine Berechtigungen angegeben" @@ -16929,11 +16921,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:720 msgid "No Preview Available" msgstr "Keine Vorschau verfügbar" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "Es ist kein Drucker verfügbar." @@ -16949,7 +16941,7 @@ 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" @@ -16973,7 +16965,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:232 msgid "No alerts for today" msgstr "Keine Warnungen für heute" @@ -17001,19 +16993,15 @@ 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" @@ -17033,6 +17021,10 @@ 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" @@ -17105,7 +17097,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:947 msgid "No permission to read {0}" msgstr "Keine Berechtigung zum Lesen {0}" @@ -17133,7 +17125,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" @@ -17157,7 +17149,7 @@ msgstr "Kein {0} gefunden" 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:497 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." @@ -17209,7 +17201,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" @@ -17258,18 +17250,17 @@ msgstr "Nicht nullbar" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17279,9 +17270,9 @@ msgstr "Nicht veröffentlicht" #: 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/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 +17304,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 +17320,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:637 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,7 +17348,7 @@ 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." @@ -17366,18 +17357,18 @@ msgstr "Nicht im Entwicklungsmodus! In site_config.json erstellen oder \"Benutze #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17403,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:399 msgid "Note: This will be shared with user." msgstr "Hinweis: Dies wird dem Benutzer mitgeteilt." @@ -17436,10 +17427,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 +17475,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:542 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:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "Benachrichtigung: Benutzer {0} hat keine Mobiltelefonnummer festgelegt" @@ -17544,7 +17534,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,7 +17592,7 @@ 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." @@ -17716,11 +17706,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 +17829,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}:" @@ -17924,7 +17914,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:" @@ -17968,7 +17958,7 @@ msgstr "Nur Berichte aus dem Berichterstellungswerkzeug können gelöscht werden 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Nur Standard-DocTypes dürfen über Formular anpassen angepasst werden." @@ -18042,7 +18032,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 +18050,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 +18058,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Listenelement öffnen" @@ -18083,13 +18073,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 +18088,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 +18107,7 @@ msgstr "Geöffnet" msgid "Operation" msgstr "Arbeitsgang" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "Betreiber muss einer von {0}" @@ -18139,7 +18133,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" @@ -18171,7 +18165,7 @@ msgstr "Optional: Der Alarm wird gesendet, wenn dieser Ausdruck wahr ist" 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 +18174,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 +18182,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." @@ -18232,8 +18226,8 @@ msgstr "Überschrift zur Unternehmensgeschichte" 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" @@ -18312,9 +18306,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:1796 msgid "PDF" msgstr "PDF" @@ -18355,11 +18349,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:629 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:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "Der PDF-Druck über „Raw Print“ wird nicht unterstützt." @@ -18531,7 +18525,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}" @@ -18575,11 +18569,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 +18582,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 +18656,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18667,7 @@ msgstr "Passiv" msgid "Password" msgstr "Passwort" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "Passwort E-Mail gesendet" @@ -18686,7 +18680,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:896 msgid "Password cannot be filtered" msgstr "Passwort kann nicht gefiltert werden" @@ -18703,6 +18697,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 +18709,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:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "Anweisungen zum Zurücksetzen des Passworts wurden an die E-Mail von {} gesendet" @@ -18723,7 +18721,7 @@ msgstr "Passwort gesetzt" msgid "Password size exceeded the maximum allowed size" msgstr "Passwort überschreitet die maximal zulässige Länge" -#: frappe/core/doctype/user/user.py: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 +18729,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:210 msgid "Passwords do not match!" msgstr "Passwörter stimmen nicht überein!" @@ -18801,10 +18799,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" @@ -18940,16 +18940,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "Berechtigungsfehler" @@ -19037,8 +19037,8 @@ 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/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 +19098,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 +19110,7 @@ msgstr "Bitte füge einen Betreff zu deiner E-Mail hinzu" msgid "Please add a valid comment." msgstr "Bitte fügen Sie einen gültigen Kommentar hinzu." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen" @@ -19130,10 +19130,6 @@ 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: {}" @@ -19142,7 +19138,7 @@ msgstr "Bitte überprüfen Sie die für das Dashboard-Diagramm festgelegten Filt msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Bitte überprüfen Sie den Wert von "Abrufen von" für Feld {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1072 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,7 +19170,7 @@ msgstr "Bitte auf die folgende Verknüpfung klicken um ein neues Passwort zu set msgid "Please confirm your action to {0} this document." msgstr "Bitte bestätigen Sie Ihre Aktion für {0} dieses Dokument." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "Bitte wenden Sie sich an Ihren Systemmanager, um die richtige Version zu installieren." @@ -19204,8 +19200,8 @@ msgstr "Bitte aktivieren Sie mindestens eines der Anmeldeverfahren Social Login #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19244,7 +19240,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 +19277,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." @@ -19297,7 +19294,7 @@ msgstr "Bitte stellen Sie sicher, dass die Referenzkommunikationsdokumente nicht 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:548 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 +19310,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:1711 msgid "Please save the report first" msgstr "Bitte speichern Sie den Bericht zuerst" @@ -19349,7 +19346,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 +19358,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:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe" @@ -19387,7 +19384,7 @@ 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:562 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" @@ -19399,7 +19396,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" @@ -19435,23 +19432,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 +19469,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." @@ -19562,14 +19559,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19585,7 +19574,7 @@ msgstr "" msgid "Precision" msgstr "Genauigkeit" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "Genauigkeit sollte zwischen 1 und 6 liegen" @@ -19641,7 +19630,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" @@ -19676,13 +19665,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 +19693,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 @@ -19728,7 +19710,7 @@ msgstr "Vorhergehende" 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 +19756,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Drucken" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Drucken" @@ -19804,8 +19786,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19912,7 +19894,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19961,11 +19943,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:843 msgid "Printer" msgstr "Drucker" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "Druckerzuordnung" @@ -19975,11 +19957,11 @@ msgstr "Druckerzuordnung" msgid "Printer Name" msgstr "Druckername" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "Druckereinstellungen" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "Druckerzuordnung nicht gesetzt." @@ -20041,7 +20023,7 @@ msgstr "Fortfahren" msgid "Proceed Anyway" msgstr "Fahre dennoch fort" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "wird bearbeitet" @@ -20067,9 +20049,9 @@ 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" @@ -20155,24 +20137,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 +20158,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 +20247,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" @@ -20293,8 +20262,8 @@ 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:" +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 +20312,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 +20412,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:309 msgid "Quoting must be between 0 and 3" msgstr "Einstellung für CSV-Anführungszeichen muss zwischen 0 und 3 liegen" @@ -20480,12 +20449,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 @@ -20522,7 +20485,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 +20502,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 +20559,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 +20574,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" @@ -20678,7 +20636,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 +20647,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 +20687,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 +20704,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" @@ -21000,15 +20971,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Aktualisieren" @@ -21033,18 +21004,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:534 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:374 #: 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" @@ -21221,7 +21192,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!" @@ -21424,7 +21395,7 @@ msgstr "Berichts-Manager" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "Berichtsname" @@ -21462,7 +21433,7 @@ msgstr "Berichtsansicht" msgid "Report bug" msgstr "Fehler melden" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "Bericht kann nicht für Einzel-Typen festgelegt werden" @@ -21488,20 +21459,20 @@ msgstr "Berichtsgrenze erreicht" msgid "Report timed out." msgstr "Zeitüberschreitung des Berichts." -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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}" @@ -21524,7 +21495,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" @@ -21654,11 +21625,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "LDAP-Passwort zurücksetzen" @@ -21666,11 +21637,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:235 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:168 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 +21676,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:433 msgid "Reset to default" msgstr "Auf Standard zurücksetzen" @@ -21743,6 +21714,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 +21724,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 +21782,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" @@ -21867,9 +21834,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 +21875,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 +21889,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 @@ -21971,7 +21938,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:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Rollenberechtigungen-Manager" @@ -22014,6 +21981,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 +21991,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 +22028,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 +22048,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 +22059,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 @@ -22122,12 +22087,12 @@ msgstr "Route: Beispiel \"/app\"" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 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" @@ -22135,7 +22100,7 @@ msgstr "Zeile # {0}: Nicht-Administrator-Benutzer können die Rolle {1} nicht au 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" @@ -22163,7 +22128,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,25 +22136,25 @@ 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:353 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:342 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" @@ -22285,7 +22250,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 +22328,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 +22356,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22378,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:1735 msgid "Save As" msgstr "Speichern als" @@ -22430,7 +22391,7 @@ 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:1951 msgid "Save Report" msgstr "Bericht speichern" @@ -22459,7 +22420,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 +22499,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" @@ -22706,7 +22667,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" @@ -22815,7 +22776,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 +22823,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22870,12 +22831,12 @@ 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:497 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" @@ -22886,7 +22847,7 @@ msgstr "Anhänge auswählen" 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" @@ -22950,12 +22911,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:489 #: 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" @@ -23001,8 +22965,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:598 msgid "Select Network Printer" msgstr "Netzwerkdrucker auswählen" @@ -23070,11 +23034,11 @@ msgstr "Wählen Sie ein Feld aus, um seine Eigenschaften zu bearbeiten." msgid "Select a group node first." msgstr "Zuerst einen Gruppenknoten wählen." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 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 +23068,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Wählen Sie mehrere Listenelemente aus" @@ -23144,7 +23108,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 +23292,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:1946 msgid "Sender Field should have Email in options" msgstr "Das Absenderfeld sollte E-Mail-Optionen enthalten" @@ -23422,7 +23386,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}" @@ -23451,7 +23415,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." @@ -23556,7 +23520,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:2104 msgid "Set Level" msgstr "Ebenen einstellen" @@ -23610,7 +23574,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:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Nutzer-Berechtigungen setzen" @@ -23775,14 +23739,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 +23757,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "Einstellungen Auto E-Mail" @@ -23868,11 +23827,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 +23846,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 +23898,7 @@ msgstr "Dokument anzeigen" msgid "Show Error" msgstr "Fehler anzeigen" -#: frappe/public/js/frappe/form/layout.js:579 +#: 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 +24026,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:1845 msgid "Show Tags" msgstr "Schlagworte anzeigen" @@ -24094,7 +24043,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 +24083,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 +24131,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 +24161,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 +24196,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" @@ -24311,7 +24256,7 @@ msgstr "Einfacher Python-Ausdruck, Beispiel: status == 'Open' and type == 'Bug'" msgid "Simultaneous Sessions" msgstr "Gleichzeitige Sitzungen" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "Einzelne DocTypes können nicht angepasst werden." @@ -24544,11 +24489,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,13 +24524,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24593,6 +24537,10 @@ msgstr "Sortierfeld {0} muss ein gültiger Feldname sein" 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 +24567,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" @@ -24680,7 +24634,7 @@ msgstr "Standard" 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" @@ -24736,8 +24690,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 +24699,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 @@ -24818,7 +24772,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 +24828,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 +24853,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 +24861,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 +24899,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:454 msgid "Sticky" msgstr "Fixiert" @@ -24973,6 +24929,10 @@ msgstr "Speichernutzung nach Tabelle" msgid "Store Attached PDF Document" msgstr "Angehängtes PDF-Dokument speichern" +#: frappe/core/doctype/user/user.js:490 +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." @@ -25067,7 +25027,7 @@ msgstr "Betreff" msgid "Subject Field" msgstr "Themenfeld" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 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" @@ -25092,7 +25052,7 @@ msgstr "Buchungs-Warteschlange" msgid "Submit" msgstr "Buchen" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Buchen" @@ -25102,7 +25062,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Buchen" @@ -25126,7 +25086,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 +25098,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 +25110,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} Dokumente einreichen?" @@ -25159,11 +25119,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 +25146,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 +25160,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:1171 #: 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 +25202,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 +25253,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 +25375,7 @@ msgstr "Synchronisiert" msgid "Syncing {0} of {1}" msgstr "{0} von {1} synchronisieren" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "Syntaxfehler" @@ -25544,6 +25498,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 +25581,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 +25655,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 +25664,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,7 +25686,7 @@ 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:1170 msgid "Table updated" msgstr "Tabelle aktualisiert" @@ -25776,11 +25732,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 +25805,7 @@ msgstr "Vorlagenwarnungen" msgid "Templates" msgstr "Vorlagen" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "Zeitweise nicht verfügbar" @@ -25916,7 +25879,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 +25903,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:1193 msgid "The CSV format is case sensitive" msgstr "Das CSV-Format unterscheidet zwischen Groß- und Kleinschreibung" @@ -25953,7 +25916,7 @@ 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" @@ -25961,7 +25924,7 @@ msgstr "Die Bedingung '{0}' ist ungültig" 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 +25967,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 +25975,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:685 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." @@ -26114,11 +26077,11 @@ msgstr "Die Projektnummer aus der Google Cloud Console unter " -#: frappe/core/doctype/user/user.py:993 +#: 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" @@ -26155,7 +26118,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}." @@ -26204,7 +26167,7 @@ msgstr "Es gibt bereits {0} mit denselben Filtern in der Warteschlange:" msgid "There can be only 9 Page Break fields in a Web Form" msgstr "Es dürfen höchstens 9 Seitenumbrüche in einem Webformular vorkommen" -#: frappe/core/doctype/doctype/doctype.py: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,6 +26179,10 @@ 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." @@ -26248,11 +26215,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" @@ -26340,7 +26307,7 @@ msgstr "Dieses Diagramm steht allen Benutzern zur Verfügung, wenn diese Option msgid "This doctype has no orphan fields to trim" msgstr "Dieser Doctype hat keine verwaisten Felder zum Kürzen" -#: frappe/core/doctype/doctype/doctype.py: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." @@ -26406,7 +26373,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 +26392,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:2180 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 +26416,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 +26434,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:423 msgid "This may get printed on multiple pages" msgstr "Dies kann auf mehreren Seiten ausgedruckt werden" @@ -26520,8 +26481,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 +26513,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:1253 msgid "Throttled" msgstr "Gedrosselt" @@ -26704,11 +26665,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" @@ -26757,9 +26718,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 +26742,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 +26764,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" @@ -26964,7 +26919,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 +26935,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Seitenleiste ein-/ausblenden" @@ -27030,7 +26985,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 +27001,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:1041 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 +27063,10 @@ msgstr "Oben rechts" msgid "Topic" msgstr "Thema" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "Summe" @@ -27154,18 +27109,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" @@ -27266,6 +27221,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 +27240,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:2235 msgid "Translate Data" msgstr "Daten übersetzen" @@ -27291,7 +27251,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 +27335,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" @@ -27723,8 +27683,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 +27699,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" @@ -27813,7 +27772,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:427 msgid "Update" msgstr "Aktualisieren" @@ -27889,7 +27848,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 +27856,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 🎉" @@ -28070,7 +28029,7 @@ msgstr "Die Verwendung der Funktion {0} im Feld ist eingeschränkt" 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 +28050,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 +28061,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 +28076,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 +28090,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 +28107,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 +28141,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 +28205,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 +28224,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 +28247,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "Benutzerberechtigungen" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Benutzerberechtigungen" @@ -28307,7 +28265,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 +28333,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 +28367,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 +28388,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:1382 msgid "User {0} impersonated as {1}" msgstr "Benutzer {0} hat sich als {1} ausgegeben" @@ -28453,7 +28417,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 +28501,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" @@ -28609,7 +28573,7 @@ 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:612 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" @@ -28655,7 +28619,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 +28632,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 +28694,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:156 msgid "View Doctype Permissions" msgstr "DocType-Berechtigungen anzeigen" @@ -28760,7 +28716,7 @@ msgstr "Liste anzeigen" msgid "View Log" msgstr "Protokoll anzeigen" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Anzeigen von zulässigen Dokumenten" @@ -28807,7 +28763,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" @@ -28884,7 +28840,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" @@ -29073,7 +29029,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 +29042,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 +29085,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 +29302,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" @@ -29447,7 +29394,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 +29420,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 +29432,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,7 +29471,7 @@ 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" @@ -29585,11 +29547,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." @@ -29612,7 +29574,7 @@ msgstr "Schreiben" 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,7 +29593,7 @@ 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" @@ -29689,14 +29651,15 @@ 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/website/doctype/help_article/templates/help_article.html:25 @@ -29773,11 +29736,11 @@ msgstr "Sie dürfen keinen {} Doctype exportieren" msgid "You are not allowed to print this report" msgstr "Sie sind nicht berechtigt diesen Bericht zu drucken" -#: frappe/public/js/frappe/views/communication.js: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:605 msgid "You are not allowed to update this Web Form Document" msgstr "Sie sind nicht berechtigt, dieses Web Form-Dokument zu aktualisieren" @@ -29801,7 +29764,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 +29790,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." @@ -29870,7 +29837,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." @@ -29900,11 +29867,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "Sie können 'Übersetzbar' für Feld {0} nicht festlegen" @@ -29922,7 +29889,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "\"Nur lesen\" kann für das Feld {0} nicht rückgängig gemacht werden" @@ -29973,7 +29940,7 @@ msgstr "Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchz msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}." @@ -29985,7 +29952,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "Sie haben keine Berechtigung, auf den DocType {0} zuzugreifen." @@ -29997,19 +29964,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:245 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 +29984,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 +30004,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:501 msgid "You haven't created a {0} yet" msgstr "Sie haben noch kein(en) {0} erstellt" @@ -30058,11 +30021,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:804 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:645 msgid "You must login to submit this form" msgstr "Anmeldung erforderlich, um dieses Formular zu übermitteln" @@ -30094,13 +30057,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." @@ -30169,10 +30132,22 @@ msgstr "Sie haben dieses Dokument nicht mehr verfolgt" msgid "You viewed this" msgstr "Von Ihnen angesehen" -#: frappe/public/js/frappe/desk.js:553 +#: 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." @@ -30226,10 +30201,18 @@ 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/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" @@ -30334,7 +30317,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 +30462,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 +30524,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 +30539,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" @@ -30619,11 +30597,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 +30620,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" @@ -30835,19 +30808,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:301 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:300 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:302 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:299 msgid "since yesterday" msgstr "seit gestern" @@ -30900,6 +30873,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 +30904,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 +30918,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:403 msgid "via Notification" msgstr "über Benachrichtigung" @@ -30974,10 +30951,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:635 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 +30987,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 +31017,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:486 +#: 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 +31053,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" @@ -31097,7 +31083,6 @@ msgstr "{0} Bericht(e)" 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 +31107,7 @@ msgstr "Arbeitsbereich {0}" msgid "{0} added" msgstr "{0} hinzugefügt" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: 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" @@ -31201,11 +31186,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." @@ -31272,7 +31253,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,7 +31262,7 @@ 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" @@ -31289,15 +31270,15 @@ msgstr "{0} ist ein Pflichtfeld" msgid "{0} is a not a valid zip file" msgstr "{0} ist keine gültige Zip-Datei" -#: frappe/core/doctype/doctype/doctype.py: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 +31287,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}" @@ -31358,8 +31339,8 @@ msgstr "{0} ist kein gültiger Cron-Ausdruck." 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} ist keine gültige E-Mail-Adresse" @@ -31367,15 +31348,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:174 msgid "{0} is not a valid Name" msgstr "{0} ist kein gültiger Name" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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." @@ -31395,19 +31376,23 @@ msgstr "{0} ist kein gültiges Berichtsformat. Berichtsformat sollte eines der f 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" @@ -31415,31 +31400,31 @@ msgstr "{0} ist nicht eingetragen" msgid "{0} is now default print format for {1} doctype" msgstr "{0} ist jetzt das Standard-Druckformat für den DocType {1}" -#: frappe/public/js/frappe/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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} ist erforderlich" -#: 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:1835 msgid "{0} items selected" msgstr "{0} Elemente ausgewählt" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 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,7 +31457,7 @@ msgstr "vor {0} Minuten" msgid "{0} months ago" msgstr "vor {0} Monaten" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} muss nach {1} liegen" @@ -31508,7 +31493,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 +31506,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} von {1} ({2} Zeilen mit untergeordneten Elementen)" @@ -31571,11 +31556,11 @@ msgstr "{0} hat seine Zuordnung entfernt." msgid "{0} role does not have permission on any doctype" msgstr "{0} Die Rolle hat keine Berechtigung für einen Doctype" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} Zeile #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "{0} Zeile #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} wurde erfolgreich gespeichert" @@ -31595,11 +31580,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 +31597,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" @@ -31631,7 +31616,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:254 msgid "{0} updated" msgstr "{0} aktualisiert" @@ -31675,7 +31660,7 @@ msgstr "{0} {1} existiert bereits" 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" @@ -31707,75 +31692,75 @@ msgstr "{0}/{1} abgeschlossen | Bitte lassen Sie diese Registerkarte bis zum Abs 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:1801 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:1819 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:1817 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:1796 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:1803 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:1799 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:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "{0}: Keine Grundberechtigungen festgelegt" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31768,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:1785 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 +31776,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" @@ -31808,7 +31793,7 @@ msgstr "{0}: {1} ist auf Status {2} festgelegt" 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 +31817,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 +31825,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:2525 msgid "{} Invalid python code on line {}" msgstr "{} Ungültiger Python-Code in Zeile {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
{}" msgstr "{} Possibly invalid python code.
{}" diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po index 9a9890b8aa..c5fda54bfb 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:29\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "crwdns90542:0crwdne90542:0" @@ -144,10 +140,6 @@ msgstr "crwdns90548:0crwdne90548:0" 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 msgid "1 day ago" msgstr "crwdns90552:0crwdne90552:0" @@ -245,6 +237,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" @@ -481,7 +480,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 +547,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,10 +556,6 @@ 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" - #: 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" @@ -578,7 +573,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 +672,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:452 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 +701,10 @@ msgstr "crwdns127994:0crwdne127994:0" msgid "API Key cannot be regenerated" msgstr "crwdns127996:0crwdne127996:0" +#: frappe/core/doctype/user/user.js:449 +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 +725,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:459 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 +772,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 @@ -858,7 +875,7 @@ msgstr "crwdns128016:0crwdne128016:0" msgid "Action Complete" msgstr "crwdns90762:0crwdne90762:0" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "crwdns90764:0crwdne90764:0" @@ -967,7 +984,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:501 #: 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 +995,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:454 msgid "Add / Remove Columns" msgstr "crwdns110786:0crwdne110786:0" @@ -990,7 +1007,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" @@ -1023,10 +1040,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1102,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 +1135,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:2145 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" @@ -1250,7 +1267,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" @@ -1358,7 +1375,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" @@ -1385,11 +1402,11 @@ msgstr "crwdns90948:0crwdne90948:0" msgid "Administrator" msgstr "crwdns90950:0crwdne90950:0" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "crwdns90952:0crwdne90952:0" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "crwdns90954:0{0}crwdnd90954:0{1}crwdnd90954:0{2}crwdne90954:0" @@ -1410,8 +1427,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" @@ -1566,7 +1583,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 +1643,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 +1664,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 +1712,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 +1944,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 +1952,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" @@ -2124,10 +2136,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 +2212,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 +2225,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:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "crwdns91270:0crwdne91270:0" @@ -2255,7 +2273,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 +2306,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "crwdns104470:0crwdne104470:0" @@ -2316,7 +2338,11 @@ 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" @@ -2392,7 +2418,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "crwdns91346:0crwdne91346:0" @@ -2455,6 +2481,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 +2555,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:696 msgid "At least one column is required to show in the grid." msgstr "crwdns91414:0crwdne91414:0" @@ -2638,7 +2675,7 @@ 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" @@ -2669,6 +2706,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 +2727,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 +2841,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 +2853,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 +2906,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 +2954,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 +2968,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 +3239,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 +3357,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 +3388,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 +3484,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,7 +3541,7 @@ 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:1189 msgid "Bulk Edit {0}" msgstr "crwdns91884:0{0}crwdne91884:0" @@ -3590,7 +3564,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 +3576,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 +3706,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 +3756,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 @@ -3850,7 +3809,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" @@ -3876,12 +3835,13 @@ msgstr "crwdns92008:0{0}crwdnd92008:0{1}crwdnd92008:0{0}crwdne92008:0" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "crwdns92012:0crwdne92012:0" @@ -3899,16 +3859,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:2205 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 @@ -3958,7 +3920,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" @@ -3978,11 +3940,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" @@ -4033,7 +3995,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 +4003,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" @@ -4070,7 +4032,7 @@ 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" @@ -4082,11 +4044,11 @@ msgstr "crwdns92122:0crwdne92122:0" 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:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "crwdns154588:0crwdne154588:0" @@ -4106,7 +4068,7 @@ msgstr "crwdns92132:0{0}crwdne92132:0" 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 +4076,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 +4093,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:1129 +msgid "Cannot use sub-query here." +msgstr "crwdns157190:0crwdne157190:0" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "crwdns92150:0{0}crwdne92150:0" @@ -4249,8 +4211,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 +4281,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 +4314,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 +4322,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" @@ -4415,7 +4377,7 @@ 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" @@ -4468,7 +4430,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 +4442,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:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "crwdns104478:0crwdne104478:0" @@ -4506,7 +4468,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,7 +4480,11 @@ 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" @@ -4570,7 +4536,7 @@ msgstr "crwdns110842:0crwdne110842:0" 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:739 msgid "Click to sort by {0}" msgstr "crwdns110846:0{0}crwdne110846:0" @@ -4748,7 +4714,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "crwdns92404:0crwdne92404:0" @@ -4859,11 +4825,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:454 msgid "Column Width" msgstr "crwdns110850:0crwdne110850:0" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "crwdns92470:0crwdne92470:0" @@ -4932,16 +4898,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 +4905,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 +4914,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" @@ -5035,7 +4991,7 @@ msgstr "crwdns128706:0crwdne128706:0" 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" @@ -5130,6 +5086,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 +5116,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:406 msgid "Configure Columns" msgstr "crwdns92608:0crwdne92608:0" @@ -5184,7 +5145,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "crwdns92612:0crwdne92612:0" @@ -5203,7 +5164,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:196 msgid "Confirm New Password" msgstr "crwdns92618:0crwdne92618:0" @@ -5230,7 +5191,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" @@ -5357,7 +5318,6 @@ msgstr "crwdns127604:0{0}crwdne127604:0" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5365,7 +5325,6 @@ msgstr "crwdns127604:0{0}crwdne127604:0" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5373,24 +5332,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" @@ -5466,12 +5413,16 @@ msgstr "crwdns92732:0crwdne92732:0" msgid "Copy to Clipboard" msgstr "crwdns148722:0crwdne148722:0" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "crwdns92738:0crwdne92738:0" @@ -5479,7 +5430,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:633 msgid "Correct version :" msgstr "crwdns127608:0crwdne127608:0" @@ -5500,10 +5451,10 @@ 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" @@ -5640,7 +5591,7 @@ 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:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "crwdns110866:0crwdne110866:0" @@ -5653,7 +5604,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:276 msgid "Create User Email" msgstr "crwdns92814:0crwdne92814:0" @@ -5665,7 +5616,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,10 +5624,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "crwdns92824:0{0}crwdne92824:0" @@ -5693,7 +5644,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:507 msgid "Create your first {0}" msgstr "crwdns92832:0{0}crwdne92832:0" @@ -5719,7 +5670,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 +5682,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" @@ -6068,14 +6019,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "crwdns93018:0crwdne93018:0" @@ -6219,7 +6170,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" @@ -6327,7 +6278,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:615 msgid "Data Too Long" msgstr "crwdns93160:0crwdne93160:0" @@ -6358,7 +6309,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:249 msgid "Database Table Row Size Limit" msgstr "crwdns93172:0crwdne93172:0" @@ -6496,11 +6447,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "crwdns127622:0crwdne127622:0" @@ -6662,11 +6613,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" @@ -6717,10 +6668,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6728,11 +6679,16 @@ msgstr "crwdns128908:0crwdne128908:0" msgid "Delete" msgstr "crwdns93336:0crwdne93336:0" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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" @@ -6773,7 +6729,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 +6762,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "crwdns93360:0{0}crwdne93360:0" @@ -6851,6 +6807,10 @@ msgstr "crwdns128914:0crwdne128914:0" msgid "Deleted all documents successfully" msgstr "crwdns127624:0crwdne127624:0" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "crwdns158716:0crwdne158716:0" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "crwdns93378:0{0}crwdne93378:0" @@ -6866,8 +6826,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 +6843,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:301 msgid "Delimiter must be a single character" msgstr "crwdns93388:0crwdne93388:0" @@ -6910,7 +6870,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 +6905,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 +6925,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 +6934,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 +7017,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 +7078,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 +7095,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 +7104,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 +7154,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 +7168,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 +7178,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 +7196,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 +7219,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,16 +7255,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "crwdns93560:0crwdne93560:0" @@ -7412,7 +7358,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 +7405,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 +7418,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 +7451,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 +7465,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,19 +7527,19 @@ 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" @@ -7790,7 +7736,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:1955 msgid "Document Unlocked" msgstr "crwdns93812:0crwdne93812:0" @@ -7798,15 +7744,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:1300 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:1299 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:1298 msgid "Document is in draft state" msgstr "crwdns93818:0crwdne93818:0" @@ -7948,13 +7894,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "crwdns93882:0crwdne93882:0" @@ -8176,17 +8122,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:1776 #: 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:350 #: 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 +8140,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:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "crwdns93976:0crwdne93976:0" @@ -8204,7 +8150,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "crwdns110896:0crwdne110896:0" @@ -8233,7 +8179,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "crwdns93986:0crwdne93986:0" @@ -8336,7 +8282,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 +8291,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" @@ -8392,6 +8338,7 @@ 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' @@ -8405,6 +8352,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 @@ -8445,7 +8393,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" @@ -8576,10 +8524,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 +8592,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:278 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" @@ -8714,7 +8662,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 +8688,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 +8781,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 +8788,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 +8800,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 +8822,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 +8835,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 +8861,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 +8881,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 +8897,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 +8913,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 +8961,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 +9031,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 +9051,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" @@ -9158,9 +9099,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "crwdns94424:0crwdne94424:0" @@ -9180,7 +9121,7 @@ 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:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "crwdns94430:0{0}crwdne94430:0" @@ -9333,7 +9274,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 +9282,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:2123 msgid "Execution Time: {0} sec" msgstr "crwdns94498:0{0}crwdne94498:0" @@ -9367,7 +9308,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "crwdns94506:0crwdne94506:0" @@ -9400,7 +9341,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 +9371,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "crwdns94528:0crwdne94528:0" @@ -9471,7 +9414,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "crwdns94552:0{0}crwdne94552:0" @@ -9480,11 +9423,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" @@ -9597,7 +9540,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 +9557,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" @@ -9627,7 +9570,7 @@ msgstr "crwdns94602:0crwdne94602:0" 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" @@ -9639,8 +9582,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 +9599,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 +9619,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 +9673,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 +9730,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:1870 #: 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 +9753,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" @@ -9872,11 +9809,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:545 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,16 +9831,16 @@ 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:454 #: 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" @@ -9927,11 +9864,11 @@ msgstr "crwdns94736:0{0}crwdne94736:0" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "crwdns94738:0{0}crwdnd94738:0{1}crwdne94738:0" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9891,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 @@ -10003,7 +9940,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "crwdns94778:0{0}crwdnd94778:0{1}crwdnd94778:0{2}crwdne94778:0" @@ -10107,7 +10044,7 @@ msgstr "crwdns129306:0crwdne129306:0" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10166,7 +10103,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 +10117,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 +10141,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,7 +10158,7 @@ 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" @@ -10232,18 +10175,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" @@ -10331,11 +10274,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" @@ -10497,7 +10440,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 +10498,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:2120 +#: 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 +10525,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 +10539,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:1752 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 +10594,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 +10654,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 +10686,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 +10783,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:1831 msgid "From Document Type" msgstr "crwdns95162:0crwdne95162:0" @@ -10860,18 +10810,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" @@ -10970,6 +10918,12 @@ 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 msgid "Generate Tracking URL" @@ -10994,7 +10948,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:222 msgid "Get Alerts for Today" msgstr "crwdns95236:0crwdne95236:0" @@ -11300,11 +11254,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" @@ -11438,7 +11387,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 @@ -11451,7 +11399,6 @@ msgstr "crwdns129510:0crwdne129510:0" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11613,6 +11560,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 @@ -11747,11 +11700,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 +11779,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:1845 msgid "Hide Tags" msgstr "crwdns95620:0crwdne95620:0" @@ -11845,7 +11793,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 +11842,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 +11931,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "crwdns95676:0crwdne95676:0" @@ -12091,7 +12036,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12221,6 +12166,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 +12201,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 +12262,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:1120 msgid "Illegal SQL Query" msgstr "crwdns95820:0crwdne95820:0" @@ -12375,11 +12328,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,11 +12354,11 @@ 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:384 msgid "Impersonate" msgstr "crwdns111408:0crwdne111408:0" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "crwdns111412:0{0}crwdne111412:0" @@ -12435,7 +12388,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:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "crwdns95868:0crwdne95868:0" @@ -12730,7 +12683,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" @@ -12754,7 +12707,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 +12782,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:1876 msgid "Insert After" msgstr "crwdns96046:0crwdne96046:0" @@ -12845,7 +12798,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 +12816,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "crwdns96062:0{0}crwdne96062:0" @@ -12881,7 +12838,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" @@ -12910,7 +12867,7 @@ msgstr "crwdns96076:0crwdne96076:0" 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 +12971,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:849 +#: 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" @@ -13040,7 +12997,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,7 +13017,11 @@ 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" @@ -13101,7 +13062,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 +13071,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" @@ -13127,11 +13088,11 @@ msgstr "crwdns96174:0crwdne96174:0" 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:1239 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" @@ -13150,7 +13111,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" @@ -13173,7 +13134,7 @@ 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" @@ -13185,6 +13146,10 @@ msgstr "crwdns96196:0crwdne96196:0" msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "crwdns155546:0{0}crwdne155546:0" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "crwdns157328:0crwdne157328:0" + #: frappe/database/query.py:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "crwdns155548:0{0}crwdne155548:0" @@ -13201,7 +13166,7 @@ msgstr "crwdns155552:0{0}crwdne155552:0" 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" @@ -13237,19 +13202,15 @@ msgstr "crwdns155562:0{0}crwdnd155562:0{1}crwdne155562:0" 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:2199 msgid "Invalid field name {0}" msgstr "crwdns96206:0{0}crwdne96206:0" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "crwdns155974:0{0}crwdne155974:0" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "crwdns155566:0{0}crwdne155566:0" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "crwdns96208:0{0}crwdne96208:0" @@ -13277,12 +13238,20 @@ msgstr "crwdns155572:0{0}crwdne155572:0" 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 +13259,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" @@ -13302,6 +13275,10 @@ msgstr "crwdns96224:0crwdne96224:0" msgid "Invalid request arguments" msgstr "crwdns96226:0crwdne96226:0" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "crwdns157334:0crwdne157334:0" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "crwdns155576:0{0}crwdne155576:0" @@ -13318,7 +13295,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 +13304,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:627 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 +13326,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" @@ -13488,7 +13502,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" @@ -13780,12 +13794,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 @@ -14058,7 +14074,7 @@ msgstr "crwdns96576:0crwdne96576:0" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "crwdns96578:0crwdne96578:0" @@ -14162,6 +14178,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 +14199,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" @@ -14342,7 +14358,7 @@ msgstr "crwdns129986:0crwdne129986:0" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14438,20 +14454,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 +14494,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 +14508,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,6 +14639,10 @@ 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' @@ -14687,7 +14695,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:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "crwdns96868:0crwdne96868:0" @@ -14728,7 +14736,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 +14745,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/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "crwdns96888:0crwdne96888:0" @@ -14756,8 +14763,8 @@ 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 msgid "Loading" @@ -14771,7 +14778,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 +14788,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "crwdns96898:0crwdne96898:0" @@ -14842,7 +14849,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" @@ -14982,7 +14989,7 @@ msgstr "crwdns155976:0crwdne155976:0" msgid "Logout" msgstr "crwdns130092:0crwdne130092:0" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "crwdns96976:0crwdne96976:0" @@ -15162,7 +15169,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:509 msgid "Mandatory Information missing:" msgstr "crwdns97056:0crwdne97056:0" @@ -15182,7 +15189,7 @@ msgstr "crwdns97062:0{0}crwdnd97062:0{1}crwdne97062:0" msgid "Mandatory fields required in {0}" msgstr "crwdns97064:0{0}crwdne97064:0" -#: frappe/public/js/frappe/web_form/web_form.js: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 +15270,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 +15352,7 @@ msgstr "crwdns151428:0crwdne151428:0" msgid "Max auto email report per user" msgstr "crwdns130156:0crwdne130156:0" -#: 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 "crwdns97132:0{0}crwdne97132:0" @@ -15360,16 +15365,11 @@ msgstr "crwdns130158:0crwdne130158:0" 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" @@ -15439,7 +15439,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" @@ -15505,7 +15505,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 +15537,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" @@ -15694,7 +15686,7 @@ 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" @@ -15961,7 +15953,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" @@ -16035,7 +16027,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" @@ -16076,7 +16068,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:498 #: 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,7 +16106,7 @@ 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/views/file/file_view.js:97 @@ -16130,7 +16122,7 @@ msgstr "crwdns111010:0crwdne111010:0" 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 +16134,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 +16173,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 +16210,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:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "crwdns97566:0crwdne97566:0" @@ -16238,7 +16230,7 @@ msgstr "crwdns97568:0crwdne97568:0" msgid "Navigation Settings" msgstr "crwdns130268:0crwdne130268:0" -#: 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 "crwdns97572:0crwdne97572:0" @@ -16288,10 +16280,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 +16288,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" @@ -16367,12 +16355,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:190 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 +16369,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 +16387,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 +16445,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:411 msgid "New {0}" msgstr "crwdns97640:0{0}crwdne97640:0" @@ -16479,7 +16467,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 +16475,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 +16488,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,12 +16595,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16664,6 +16653,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 +16692,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16708,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:1744 msgid "No Permissions Specified" msgstr "crwdns97740:0crwdne97740:0" @@ -16735,11 +16728,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:720 msgid "No Preview Available" msgstr "crwdns111050:0crwdne111050:0" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "crwdns97748:0crwdne97748:0" @@ -16755,7 +16748,7 @@ 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" @@ -16779,7 +16772,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:232 msgid "No alerts for today" msgstr "crwdns97760:0crwdne97760:0" @@ -16807,19 +16800,15 @@ 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" @@ -16839,6 +16828,10 @@ 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" @@ -16911,7 +16904,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:947 msgid "No permission to read {0}" msgstr "crwdns97812:0{0}crwdne97812:0" @@ -16939,7 +16932,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" @@ -16963,7 +16956,7 @@ msgstr "crwdns111076:0{0}crwdne111076:0" 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:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "crwdns97826:0{0}crwdnd97826:0{0}crwdne97826:0" @@ -17015,7 +17008,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" @@ -17064,18 +17057,17 @@ msgstr "crwdns130314:0crwdne130314:0" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17085,9 +17077,9 @@ msgstr "crwdns97870:0crwdne97870:0" #: 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/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 +17111,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 +17127,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:637 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,7 +17155,7 @@ 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" @@ -17172,18 +17164,18 @@ msgstr "crwdns97910:0crwdne97910:0" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17210,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:399 msgid "Note: This will be shared with user." msgstr "crwdns111420:0crwdne111420:0" @@ -17242,10 +17234,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 +17282,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:542 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:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "crwdns142918:0{0}crwdne142918:0" @@ -17350,7 +17341,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,7 +17399,7 @@ 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" @@ -17522,11 +17513,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 +17636,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" @@ -17730,7 +17721,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" @@ -17774,7 +17765,7 @@ msgstr "crwdns98142:0crwdne98142:0" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "crwdns98146:0crwdne98146:0" @@ -17848,7 +17839,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 +17857,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 +17865,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "crwdns98186:0crwdne98186:0" @@ -17889,13 +17880,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 +17895,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 +17914,7 @@ msgstr "crwdns130426:0crwdne130426:0" msgid "Operation" msgstr "crwdns130428:0crwdne130428:0" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "crwdns98200:0{0}crwdne98200:0" @@ -17945,7 +17940,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" @@ -17977,7 +17972,7 @@ msgstr "crwdns130432:0crwdne130432:0" 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 +17981,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 +17989,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" @@ -18038,8 +18033,8 @@ msgstr "crwdns130442:0crwdne130442:0" 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" @@ -18118,9 +18113,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:1796 msgid "PDF" msgstr "crwdns98288:0crwdne98288:0" @@ -18161,11 +18156,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:629 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:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "crwdns98302:0crwdne98302:0" @@ -18337,7 +18332,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" @@ -18381,11 +18376,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 +18389,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 +18463,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18474,7 @@ msgstr "crwdns130516:0crwdne130516:0" msgid "Password" msgstr "crwdns98434:0crwdne98434:0" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "crwdns98448:0crwdne98448:0" @@ -18492,7 +18487,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:896 msgid "Password cannot be filtered" msgstr "crwdns98454:0crwdne98454:0" @@ -18509,6 +18504,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 +18516,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:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "crwdns142862:0crwdne142862:0" @@ -18529,7 +18528,7 @@ msgstr "crwdns98468:0crwdne98468:0" 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 +18536,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:210 msgid "Passwords do not match!" msgstr "crwdns98476:0crwdne98476:0" @@ -18607,10 +18606,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" @@ -18746,16 +18747,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "crwdns98572:0crwdne98572:0" @@ -18843,8 +18844,8 @@ 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/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 +18905,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 +18917,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:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "crwdns98636:0crwdne98636:0" @@ -18936,10 +18937,6 @@ 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" @@ -18948,7 +18945,7 @@ msgstr "crwdns98648:0crwdne98648:0" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "crwdns98650:0{0}crwdne98650:0" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1072 msgid "Please check your email for verification" msgstr "crwdns98652:0crwdne98652:0" @@ -18980,7 +18977,7 @@ msgstr "crwdns98660:0crwdne98660:0" msgid "Please confirm your action to {0} this document." msgstr "crwdns98664:0{0}crwdne98664:0" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "crwdns127708:0crwdne127708:0" @@ -19010,8 +19007,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19050,7 +19047,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 +19084,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" @@ -19103,7 +19101,7 @@ msgstr "crwdns98720:0crwdne98720:0" 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:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "crwdns98724:0crwdne98724:0" @@ -19119,7 +19117,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:1711 msgid "Please save the report first" msgstr "crwdns98734:0crwdne98734:0" @@ -19155,7 +19153,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 +19165,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:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "crwdns98756:0{0}crwdne98756:0" @@ -19193,7 +19191,7 @@ 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:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "crwdns98770:0crwdne98770:0" @@ -19205,7 +19203,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" @@ -19241,23 +19239,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 +19276,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" @@ -19368,14 +19366,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "crwdns155592:0{0}crwdne155592:0" @@ -19391,7 +19381,7 @@ 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:1401 msgid "Precision should be between 1 and 6" msgstr "crwdns98862:0crwdne98862:0" @@ -19447,7 +19437,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" @@ -19482,13 +19472,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 +19500,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 @@ -19534,7 +19517,7 @@ msgstr "crwdns111134:0crwdne111134:0" 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 +19563,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "crwdns98924:0crwdne98924:0" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "crwdns98926:0crwdne98926:0" @@ -19610,8 +19593,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19718,7 +19701,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19767,11 +19750,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:843 msgid "Printer" msgstr "crwdns99014:0crwdne99014:0" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "crwdns99016:0crwdne99016:0" @@ -19781,11 +19764,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:812 msgid "Printer Settings" msgstr "crwdns99020:0crwdne99020:0" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "crwdns99022:0crwdne99022:0" @@ -19847,7 +19830,7 @@ msgstr "crwdns99050:0crwdne99050:0" msgid "Proceed Anyway" msgstr "crwdns99052:0crwdne99052:0" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "crwdns99054:0crwdne99054:0" @@ -19873,9 +19856,9 @@ 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" @@ -19961,24 +19944,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 +19965,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 +20054,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" @@ -20099,8 +20069,8 @@ 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" +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 +20119,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 +20219,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:309 msgid "Quoting must be between 0 and 3" msgstr "crwdns99228:0crwdne99228:0" @@ -20286,12 +20256,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 @@ -20328,7 +20292,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 +20309,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 +20366,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 +20381,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" @@ -20484,7 +20443,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 +20454,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 +20494,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 +20511,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" @@ -20806,15 +20778,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "crwdns99530:0crwdne99530:0" @@ -20839,18 +20811,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:534 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:374 #: 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 +20999,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" @@ -21230,7 +21202,7 @@ msgstr "crwdns99694:0crwdne99694:0" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "crwdns99696:0crwdne99696:0" @@ -21268,7 +21240,7 @@ msgstr "crwdns142864:0crwdne142864:0" msgid "Report bug" msgstr "crwdns148700:0crwdne148700:0" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "crwdns99718:0crwdne99718:0" @@ -21294,20 +21266,20 @@ msgstr "crwdns99726:0crwdne99726:0" msgid "Report timed out." msgstr "crwdns99728:0crwdne99728:0" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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" @@ -21330,7 +21302,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" @@ -21460,11 +21432,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "crwdns99804:0crwdne99804:0" @@ -21472,11 +21444,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:235 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:168 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 +21483,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:433 msgid "Reset to default" msgstr "crwdns99824:0crwdne99824:0" @@ -21549,6 +21521,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 +21531,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 +21589,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" @@ -21673,9 +21641,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 +21682,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 +21696,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 @@ -21777,7 +21745,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:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "crwdns99970:0crwdne99970:0" @@ -21820,6 +21788,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 +21798,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 +21835,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 +21855,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 +21866,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 @@ -21928,12 +21894,12 @@ msgstr "crwdns130932:0crwdne130932:0" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 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" @@ -21941,7 +21907,7 @@ msgstr "crwdns100056:0{0}crwdnd100056:0{1}crwdne100056:0" 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" @@ -21969,7 +21935,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,25 +21943,25 @@ 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:353 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:342 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" @@ -22091,7 +22057,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 +22135,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 +22163,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22185,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:1735 msgid "Save As" msgstr "crwdns100178:0crwdne100178:0" @@ -22236,7 +22198,7 @@ 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:1951 msgid "Save Report" msgstr "crwdns100182:0crwdne100182:0" @@ -22265,7 +22227,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 +22306,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" @@ -22512,7 +22474,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" @@ -22621,7 +22583,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 +22630,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22676,12 +22638,12 @@ 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:497 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" @@ -22692,7 +22654,7 @@ msgstr "crwdns100382:0crwdne100382:0" 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" @@ -22756,12 +22718,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:489 #: 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" @@ -22807,8 +22772,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:598 msgid "Select Network Printer" msgstr "crwdns100436:0crwdne100436:0" @@ -22876,11 +22841,11 @@ msgstr "crwdns143144:0crwdne143144:0" msgid "Select a group node first." msgstr "crwdns100464:0crwdne100464:0" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "crwdns100468:0crwdne100468:0" @@ -22910,13 +22875,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "crwdns100480:0crwdne100480:0" @@ -22950,7 +22915,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 +23099,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:1946 msgid "Sender Field should have Email in options" msgstr "crwdns100592:0crwdne100592:0" @@ -23228,7 +23193,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" @@ -23257,7 +23222,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" @@ -23362,7 +23327,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:2104 msgid "Set Level" msgstr "crwdns148706:0crwdne148706:0" @@ -23416,7 +23381,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:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "crwdns100720:0crwdne100720:0" @@ -23557,14 +23522,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 +23540,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "crwdns100774:0crwdne100774:0" @@ -23650,11 +23610,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 +23629,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 +23681,7 @@ msgstr "crwdns131180:0crwdne131180:0" msgid "Show Error" msgstr "crwdns100834:0crwdne100834:0" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "crwdns100838:0crwdne100838:0" @@ -23859,7 +23809,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:1845 msgid "Show Tags" msgstr "crwdns100886:0crwdne100886:0" @@ -23876,7 +23826,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 +23866,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 +23914,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 +23944,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 +23979,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" @@ -24093,7 +24039,7 @@ msgstr "crwdns131248:0crwdne131248:0" msgid "Simultaneous Sessions" msgstr "crwdns131250:0crwdne131250:0" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "crwdns100966:0crwdne100966:0" @@ -24326,11 +24272,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,13 +24307,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24375,6 +24320,10 @@ msgstr "crwdns101064:0{0}crwdne101064:0" 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 +24350,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" @@ -24462,7 +24417,7 @@ msgstr "crwdns101094:0crwdne101094:0" 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" @@ -24518,8 +24473,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 +24482,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 @@ -24600,7 +24555,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 +24611,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 +24636,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 +24644,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 +24682,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:454 msgid "Sticky" msgstr "crwdns152394:0crwdne152394:0" @@ -24755,6 +24712,10 @@ msgstr "crwdns131334:0crwdne131334:0" msgid "Store Attached PDF Document" msgstr "crwdns131336:0crwdne131336:0" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24849,7 +24810,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:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "crwdns101310:0crwdne101310:0" @@ -24874,7 +24835,7 @@ msgstr "crwdns101312:0crwdne101312:0" msgid "Submit" msgstr "crwdns101314:0crwdne101314:0" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "crwdns101316:0crwdne101316:0" @@ -24884,7 +24845,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "crwdns101328:0crwdne101328:0" @@ -24908,7 +24869,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 +24881,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 +24893,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "crwdns101348:0{0}crwdne101348:0" @@ -24941,11 +24902,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 +24929,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 +24943,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:1171 #: 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 +24985,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 +25036,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 +25158,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:2531 msgid "Syntax Error" msgstr "crwdns101478:0crwdne101478:0" @@ -25326,6 +25281,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 +25364,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 +25438,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 +25447,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,7 +25469,7 @@ 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:1170 msgid "Table updated" msgstr "crwdns101536:0crwdne101536:0" @@ -25558,11 +25515,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 +25588,7 @@ msgstr "crwdns131428:0crwdne131428:0" msgid "Templates" msgstr "crwdns101586:0crwdne101586:0" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "crwdns101588:0crwdne101588:0" @@ -25696,7 +25660,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 +25684,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:1193 msgid "The CSV format is case sensitive" msgstr "crwdns101632:0crwdne101632:0" @@ -25731,7 +25695,7 @@ 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" @@ -25739,7 +25703,7 @@ msgstr "crwdns101636:0{0}crwdne101636:0" 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 +25744,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 +25752,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "crwdns111470:0crwdne111470:0" @@ -25888,11 +25852,11 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "crwdns131456:0crwdne131456:0" -#: frappe/core/doctype/user/user.py:993 +#: 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" @@ -25929,7 +25893,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" @@ -25978,7 +25942,7 @@ msgstr "crwdns111278:0{0}crwdne111278:0" msgid "There can be only 9 Page Break fields in a Web Form" msgstr "crwdns101732:0crwdne101732:0" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "crwdns101734:0crwdne101734:0" @@ -25990,6 +25954,10 @@ 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" @@ -26022,11 +25990,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" @@ -26114,7 +26082,7 @@ 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" @@ -26176,7 +26144,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 +26163,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "crwdns101812:0crwdne101812:0" @@ -26219,12 +26187,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 +26205,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:423 msgid "This may get printed on multiple pages" msgstr "crwdns101834:0crwdne101834:0" @@ -26290,8 +26252,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 +26284,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:1253 msgid "Throttled" msgstr "crwdns101870:0crwdne101870:0" @@ -26474,11 +26436,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" @@ -26527,9 +26489,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 +26513,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 +26535,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" @@ -26728,7 +26684,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 +26700,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "crwdns102088:0crwdne102088:0" @@ -26794,7 +26750,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 +26766,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "crwdns102112:0crwdne102112:0" @@ -26872,10 +26828,10 @@ msgstr "crwdns131572:0crwdne131572:0" msgid "Topic" msgstr "crwdns131574:0crwdne131574:0" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "crwdns102140:0crwdne102140:0" @@ -26918,18 +26874,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" @@ -27028,6 +26984,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 +27003,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:2235 msgid "Translate Data" msgstr "crwdns154320:0crwdne154320:0" @@ -27053,7 +27014,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 +27098,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" @@ -27484,8 +27445,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 +27461,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" @@ -27574,7 +27534,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:427 msgid "Update" msgstr "crwdns102412:0crwdne102412:0" @@ -27650,7 +27610,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 +27618,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" @@ -27831,7 +27791,7 @@ msgstr "crwdns102510:0{0}crwdne102510:0" 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 +27812,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 +27823,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 +27838,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 +27852,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 +27869,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 +27903,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 +27967,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 +27986,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 +28009,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "crwdns102628:0crwdne102628:0" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "crwdns102630:0crwdne102630:0" @@ -28068,7 +28027,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 +28095,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 +28129,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 +28150,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:1382 msgid "User {0} impersonated as {1}" msgstr "crwdns111442:0{0}crwdnd111442:0{1}crwdne111442:0" @@ -28214,7 +28179,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 +28263,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" @@ -28370,7 +28335,7 @@ 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:612 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" @@ -28416,7 +28381,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 +28394,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 +28456,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:156 msgid "View Doctype Permissions" msgstr "crwdns148750:0crwdne148750:0" @@ -28521,7 +28478,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:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "crwdns102812:0crwdne102812:0" @@ -28568,7 +28525,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" @@ -28645,7 +28602,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" @@ -28834,7 +28791,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 +28804,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 +28847,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 +29064,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" @@ -29208,7 +29156,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 +29182,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 +29194,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,7 +29233,7 @@ 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" @@ -29346,11 +29309,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" @@ -29373,7 +29336,7 @@ msgstr "crwdns131894:0crwdne131894:0" 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,7 +29355,7 @@ 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" @@ -29450,14 +29413,15 @@ 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/website/doctype/help_article/templates/help_article.html:25 @@ -29534,11 +29498,11 @@ msgstr "crwdns103270:0crwdne103270:0" msgid "You are not allowed to print this report" msgstr "crwdns103272:0crwdne103272:0" -#: frappe/public/js/frappe/views/communication.js: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:605 msgid "You are not allowed to update this Web Form Document" msgstr "crwdns103276:0crwdne103276:0" @@ -29562,7 +29526,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 +29552,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" @@ -29631,7 +29599,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" @@ -29661,11 +29629,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "crwdns103324:0{0}crwdne103324:0" @@ -29683,7 +29651,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "crwdns103334:0{0}crwdne103334:0" @@ -29734,7 +29702,7 @@ msgstr "crwdns103352:0crwdne103352:0" 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:878 msgid "You do not have permission to access {0}: {1}." msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0" @@ -29746,7 +29714,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "crwdns103364:0{0}crwdne103364:0" @@ -29758,19 +29726,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "crwdns103380:0{0}crwdne103380:0" @@ -29778,11 +29746,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 +29766,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:501 msgid "You haven't created a {0} yet" msgstr "crwdns103392:0{0}crwdne103392:0" @@ -29819,11 +29783,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:804 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:645 msgid "You must login to submit this form" msgstr "crwdns103402:0crwdne103402:0" @@ -29855,13 +29819,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." @@ -29930,10 +29894,22 @@ msgstr "crwdns103436:0crwdne103436:0" msgid "You viewed this" msgstr "crwdns103438:0crwdne103438:0" -#: frappe/public/js/frappe/desk.js:553 +#: 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" @@ -29987,10 +29963,18 @@ msgstr "crwdns103454:0crwdne103454:0" msgid "Your email address" msgstr "crwdns103456:0crwdne103456:0" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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" @@ -30095,7 +30079,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 +30224,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 +30286,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 +30301,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" @@ -30380,11 +30359,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 +30382,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" @@ -30596,19 +30570,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:301 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:300 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:302 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:299 msgid "since yesterday" msgstr "crwdns103936:0crwdne103936:0" @@ -30661,6 +30635,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 +30666,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 +30680,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:403 msgid "via Notification" msgstr "crwdns104012:0crwdne104012:0" @@ -30735,10 +30713,15 @@ msgstr "crwdns132074:0crwdne132074:0" msgid "wkhtmltopdf" msgstr "crwdns154324:0crwdne154324:0" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30749,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 +30779,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:486 +#: 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 +30815,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" @@ -30858,7 +30845,6 @@ msgstr "crwdns104086:0{0}crwdne104086:0" 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 +30869,7 @@ 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/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "crwdns104098:0{0}crwdne104098:0" @@ -30962,11 +30948,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" @@ -31033,7 +31015,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,7 +31024,7 @@ 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" @@ -31050,15 +31032,15 @@ msgstr "crwdns104200:0{0}crwdne104200:0" msgid "{0} is a not a valid zip file" msgstr "crwdns104202:0{0}crwdne104202:0" -#: frappe/core/doctype/doctype/doctype.py: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 +31049,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" @@ -31119,8 +31101,8 @@ msgstr "crwdns111446:0{0}crwdne111446:0" 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:206 msgid "{0} is not a valid Email Address" msgstr "crwdns104234:0{0}crwdne104234:0" @@ -31128,15 +31110,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:174 msgid "{0} is not a valid Name" msgstr "crwdns104236:0{0}crwdne104236:0" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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" @@ -31156,19 +31138,23 @@ msgstr "crwdns104246:0{0}crwdnd104246:0{1}crwdne104246:0" 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" @@ -31176,31 +31162,31 @@ msgstr "crwdns104256:0{0}crwdne104256:0" msgid "{0} is now default print format for {1} doctype" msgstr "crwdns104258:0{0}crwdnd104258:0{1}crwdne104258:0" -#: frappe/public/js/frappe/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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "crwdns104262:0{0}crwdne104262:0" -#: 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:1835 msgid "{0} items selected" msgstr "crwdns104268:0{0}crwdne104268:0" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "crwdns111448:0{0}crwdnd111448:0{1}crwdne111448:0" @@ -31233,7 +31219,7 @@ 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:1804 msgid "{0} must be after {1}" msgstr "crwdns104284:0{0}crwdnd104284:0{1}crwdne104284:0" @@ -31269,7 +31255,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 +31268,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "crwdns104302:0{0}crwdnd104302:0{1}crwdnd104302:0{2}crwdne104302:0" @@ -31332,11 +31318,11 @@ msgstr "crwdns104320:0{0}crwdne104320:0" msgid "{0} role does not have permission on any doctype" msgstr "crwdns111370:0{0}crwdne111370:0" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "crwdns152018:0{0}crwdnd152018:0#{1}crwdne152018:0" +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "crwdns158750:0{0}crwdnd158750:0#{1}crwdne158750:0" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "crwdns104328:0{0}crwdne104328:0" @@ -31356,11 +31342,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 +31359,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" @@ -31392,7 +31378,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:254 msgid "{0} updated" msgstr "crwdns104354:0{0}crwdne104354:0" @@ -31436,7 +31422,7 @@ msgstr "crwdns104372:0{0}crwdnd104372:0{1}crwdne104372:0" 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" @@ -31468,75 +31454,75 @@ msgstr "crwdns151120:0{0}crwdnd151120:0{1}crwdne151120:0" 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:1801 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:1819 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:1817 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:1796 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:1803 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:1799 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:1823 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:1756 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:1770 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 +31530,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:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "crwdns104426:0{0}crwdne104426:0" @@ -31552,7 +31538,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" @@ -31569,7 +31555,7 @@ msgstr "crwdns104434:0{0}crwdnd104434:0{1}crwdnd104434:0{2}crwdne104434:0" 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 +31579,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 +31587,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:2525 msgid "{} Invalid python code on line {}" msgstr "crwdns104452:0crwdne104452:0" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
{}" msgstr "crwdns104454:0crwdne104454:0" diff --git a/frappe/locale/es.po b/frappe/locale/es.po index 3e75fcf7a4..4037e056ba 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = Verdadero y 0 = Falso" @@ -145,10 +141,6 @@ msgstr "1 evento de Google Calendar sincronizado." 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 msgid "1 day ago" msgstr "Hace 1 día" @@ -246,6 +238,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" @@ -592,7 +591,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 +681,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,10 +690,6 @@ 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" - #: 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}" @@ -712,7 +707,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 +806,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:452 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 +835,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:449 +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 +859,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:459 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 +906,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 @@ -992,7 +1009,7 @@ msgstr "Acción / Ruta" msgid "Action Complete" msgstr "Acción completada" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "Acción Fallida" @@ -1101,7 +1118,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:501 #: 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 +1129,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:454 msgid "Add / Remove Columns" msgstr "Añadir / Eliminar Columnas" @@ -1124,7 +1141,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" @@ -1157,10 +1174,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1236,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 +1269,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:2145 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" @@ -1384,7 +1401,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}" @@ -1492,7 +1509,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" @@ -1519,11 +1536,11 @@ msgstr "Administración" msgid "Administrator" msgstr "Administrador" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "Administrador logeado" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 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 +1561,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" @@ -1700,7 +1717,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 +1777,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 +1798,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 +1846,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 +2079,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 +2087,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}" @@ -2259,10 +2271,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 +2347,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 +2360,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:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Aplicar regla de asignación" @@ -2390,7 +2408,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 +2441,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "¿Está seguro de que desea borrar las asignaciones?" @@ -2451,7 +2473,11 @@ 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?" @@ -2527,7 +2553,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Asignar a" @@ -2590,6 +2616,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 +2690,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:696 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." @@ -2773,7 +2810,7 @@ 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" @@ -2804,6 +2841,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 +2862,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 +2976,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 +2988,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 +3041,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 +3089,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 +3103,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 +3374,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 +3492,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 +3523,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 +3620,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,7 +3677,7 @@ 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:1189 msgid "Bulk Edit {0}" msgstr "Editar en masa {0}" @@ -3726,7 +3700,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 +3712,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 +3842,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 +3892,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 @@ -3986,7 +3945,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" @@ -4012,12 +3971,13 @@ msgstr "No se puede renombrar {0} a {1} porque {0} no existe." #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Cancelar" @@ -4035,16 +3995,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:2205 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 @@ -4094,7 +4056,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}" @@ -4114,11 +4076,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" @@ -4169,7 +4131,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 +4418,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 +4451,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 +4459,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}" @@ -4552,7 +4514,7 @@ 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}" @@ -4605,7 +4567,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 +4579,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:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Borrar Asignación" @@ -4643,7 +4605,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,7 +4617,11 @@ 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í" @@ -4707,7 +4673,7 @@ msgstr "Haga clic para establecer Filtros Dinámicos" msgid "Click to Set Filters" msgstr "Clic para establecer filtros" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "Clic para ordenar por {0}" @@ -4885,7 +4851,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Desplegar todo" @@ -4996,11 +4962,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:454 msgid "Column Width" msgstr "Ancho de Columna" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "El ancho de la columna no puede ser cero." @@ -5069,16 +5035,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 +5042,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 +5051,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" @@ -5172,7 +5128,7 @@ msgstr "Nombre de compañía" 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" @@ -5267,6 +5223,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 +5253,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:406 msgid "Configure Columns" msgstr "Configurar columnas" @@ -5323,7 +5284,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Confirmar" @@ -5342,7 +5303,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:196 msgid "Confirm New Password" msgstr "Confirmar nueva contraseña" @@ -5369,7 +5330,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 {}" @@ -5496,7 +5457,6 @@ msgstr "Contiene {0} correcciones de seguridad" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5504,7 +5464,6 @@ msgstr "Contiene {0} correcciones de seguridad" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5512,24 +5471,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" @@ -5605,12 +5552,16 @@ msgstr "Copiar error al Portapapeles" msgid "Copy to Clipboard" msgstr "Copiar al Portapapeles" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes no se puede personalizar." @@ -5618,7 +5569,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:633 msgid "Correct version :" msgstr "Versión correcta:" @@ -5639,10 +5590,10 @@ 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ó" @@ -5779,7 +5730,7 @@ 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:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Crear" @@ -5792,7 +5743,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:276 msgid "Create User Email" msgstr "Crear correo electrónico de usuario" @@ -5804,7 +5755,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,10 +5763,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "Crear: {0}" @@ -5832,7 +5783,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:507 msgid "Create your first {0}" msgstr "Crea tu primer {0}" @@ -5858,7 +5809,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 +5821,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}" @@ -6207,14 +6158,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "Personalización" @@ -6358,7 +6309,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" @@ -6466,7 +6417,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:615 msgid "Data Too Long" msgstr "Datos demasiado largos" @@ -6497,7 +6448,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:249 msgid "Database Table Row Size Limit" msgstr "Limite de tamaño de la tabla de la base de datos" @@ -6635,11 +6586,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "El separador decimal debe ser un solo carácter" @@ -6801,11 +6752,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." @@ -6856,10 +6807,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6867,11 +6818,16 @@ msgstr "Retrasado" msgid "Delete" msgstr "Eliminar" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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" @@ -6912,7 +6868,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 +6901,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "¿Eliminar {0} artículos de forma permanente?" @@ -6990,6 +6946,10 @@ msgstr "Nombre borrado" msgid "Deleted all documents successfully" msgstr "Todos los documentos eliminados con éxito" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Eliminado!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "Eliminando {0}" @@ -7005,8 +6965,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 +6982,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:301 msgid "Delimiter must be a single character" msgstr "El delimitador debe ser un solo carácter" @@ -7049,7 +7009,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 +7044,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 +7064,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 +7073,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 +7156,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 +7217,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 +7234,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 +7243,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 +7293,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 +7307,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 +7317,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 +7335,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 +7358,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,16 +7394,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "No edite los encabezados que están preestablecidos en la plantilla" @@ -7554,7 +7500,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 +7547,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 +7560,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 +7593,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 +7607,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,19 +7669,19 @@ 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" @@ -7932,7 +7878,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:1955 msgid "Document Unlocked" msgstr "Documento desbloqueado" @@ -7940,15 +7886,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:1300 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:1299 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:1298 msgid "Document is in draft state" msgstr "El documento está en estado de borrador" @@ -8090,13 +8036,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "Descargar" @@ -8318,17 +8264,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:1776 #: 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:350 #: 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 +8282,7 @@ msgstr "ESC" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Editar" @@ -8346,7 +8292,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "Editar" @@ -8375,7 +8321,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Editar DocType" @@ -8478,7 +8424,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 +8433,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}" @@ -8534,6 +8480,7 @@ 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' @@ -8547,6 +8494,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 @@ -8587,7 +8535,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" @@ -8718,10 +8666,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 +8734,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:278 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)" @@ -8856,7 +8804,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 +8830,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 +8923,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 +8930,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 +8942,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 +8965,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 +8978,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 +9004,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 +9024,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 +9040,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 +9056,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 +9104,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 +9174,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 +9194,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" @@ -9301,9 +9242,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "Error en la Notificación" @@ -9323,7 +9264,7 @@ 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:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Error al evaluar Notificación {0}. Por favor arregla tu plantilla." @@ -9476,7 +9417,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 +9425,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:2123 msgid "Execution Time: {0} sec" msgstr "Tiempo de ejecución: {0} segundos" @@ -9510,7 +9451,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandir todo" @@ -9543,7 +9484,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 +9514,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportar" @@ -9614,7 +9557,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Exportar Reporte: {0}" @@ -9623,11 +9566,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?" @@ -9740,7 +9683,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 +9700,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: {}" @@ -9770,7 +9713,7 @@ msgstr "Error al conectar con el servidor" 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}" @@ -9782,8 +9725,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 +9742,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 +9762,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 +9816,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 +9873,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:1870 #: 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 +9896,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" @@ -10015,11 +9952,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:545 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,16 +9974,16 @@ 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:454 #: 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" @@ -10070,11 +10007,11 @@ msgstr "El nombre de campo {0} aparece varias veces" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "El nombre del campo {0} no puede tener caracteres especiales como {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +10034,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 @@ -10146,7 +10083,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:589 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}" @@ -10250,7 +10187,7 @@ msgstr "Archivos" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10309,7 +10246,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 +10260,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 +10284,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,7 +10301,7 @@ 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}" @@ -10375,18 +10318,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 +10642,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:2120 +#: 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 +10669,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 +10683,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:1752 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 +10738,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 +10798,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 +10830,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 +10927,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:1831 msgid "From Document Type" msgstr "Desde tipo de documento" @@ -11004,18 +10954,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" @@ -11114,6 +11062,12 @@ 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 msgid "Generate Tracking URL" @@ -11138,7 +11092,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:222 msgid "Get Alerts for Today" msgstr "Recibe alertas para Hoy" @@ -11340,7 +11294,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 +11398,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" @@ -11582,7 +11531,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 @@ -11595,7 +11543,6 @@ msgstr "HH: mm: ss" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11757,6 +11704,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 @@ -11891,11 +11844,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 +11923,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:1845 msgid "Hide Tags" msgstr "Ocultar etiquetas" @@ -11989,7 +11937,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 +11986,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 +12075,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "Identificador" @@ -12235,7 +12180,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12365,6 +12310,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 +12345,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 +12406,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:1120 msgid "Illegal SQL Query" msgstr "Consulta SQL ilegal" @@ -12519,11 +12472,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,11 +12498,11 @@ 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:384 msgid "Impersonate" msgstr "Suplantar" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "Suplantando a {0}" @@ -12579,7 +12532,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:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "Importar / Exportar" @@ -12874,7 +12827,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" @@ -12898,7 +12851,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 +12926,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:1876 msgid "Insert After" msgstr "Insertar Después" @@ -12989,7 +12942,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 +12960,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "Instale {0} desde Marketplace" @@ -13025,7 +12982,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" @@ -13054,7 +13011,7 @@ msgstr "Permisos insuficientes para eliminar el informe" 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 +13115,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:849 +#: 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" @@ -13184,7 +13141,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,7 +13161,11 @@ 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" @@ -13245,7 +13206,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 +13215,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" @@ -13271,11 +13232,11 @@ msgstr "Formato de salida no válido" 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:1239 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" @@ -13294,7 +13255,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" @@ -13317,7 +13278,7 @@ 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" @@ -13329,6 +13290,10 @@ msgstr "Función de agregación inválida" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13345,7 +13310,7 @@ msgstr "" 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" @@ -13381,19 +13346,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "Nombre de campo inválido {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: 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" @@ -13421,12 +13382,20 @@ msgstr "" 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 +13403,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" @@ -13446,6 +13419,10 @@ msgstr "Regex de redirección no válida en la fila #{}: {}" msgid "Invalid request arguments" msgstr "Argumentos de solicitud inválidos" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13462,7 +13439,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 +13448,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:627 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 +13470,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" @@ -13632,7 +13646,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" @@ -13924,12 +13938,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 @@ -14202,7 +14218,7 @@ msgstr "Paisaje" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Idioma" @@ -14306,6 +14322,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 +14343,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" @@ -14486,7 +14502,7 @@ 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/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14582,20 +14598,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 +14638,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 +14652,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,6 +14783,10 @@ 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' @@ -14831,7 +14839,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:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Configuración de lista" @@ -14872,7 +14880,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 +14889,8 @@ msgstr "Listas" msgid "Load Balancing" msgstr "Balanceo de carga" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Carga más" @@ -14900,8 +14907,8 @@ 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 msgid "Loading" @@ -14915,7 +14922,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 +14932,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Cargando..." @@ -14986,7 +14993,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" @@ -15126,7 +15133,7 @@ msgstr "" msgid "Logout" msgstr "Salir" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "Cerrar sesión en todas las sesiones" @@ -15306,7 +15313,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:509 msgid "Mandatory Information missing:" msgstr "Información obligatoria faltante:" @@ -15326,7 +15333,7 @@ msgstr "Campos obligatorios requeridos en la tabla {0}, Fila {1}" msgid "Mandatory fields required in {0}" msgstr "Los siguientes campos son obligatorios en {0}" -#: frappe/public/js/frappe/web_form/web_form.js: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 +15414,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 +15496,7 @@ 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 +#: 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}" @@ -15504,16 +15509,11 @@ msgstr "Máximo" 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" @@ -15583,7 +15583,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" @@ -15649,7 +15649,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 +15681,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" @@ -15838,7 +15830,7 @@ 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" @@ -16105,7 +16097,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." @@ -16179,7 +16171,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." @@ -16220,7 +16212,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:498 #: 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,7 +16250,7 @@ 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/views/file/file_view.js:97 @@ -16274,7 +16266,7 @@ msgstr "Nombre (Doc Name)" msgid "Name already taken, please set a new name" msgstr "Nombre ya usado, por favor establezca un nuevo nombre" -#: frappe/model/naming.py: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 +16278,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 +16319,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 +16356,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:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navegar lista arriba" @@ -16384,7 +16376,7 @@ msgstr "Ir al contenido principal" msgid "Navigation Settings" msgstr "Configuración de Navegación" -#: 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 "Necesita el rol de Administrador del Área de Trabajo para editar el área de trabajo privada de otros usuarios" @@ -16434,10 +16426,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 +16434,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" @@ -16513,12 +16501,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:190 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 +16515,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 +16533,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 +16591,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:411 msgid "New {0}" msgstr "Nuevo/a: {0}" @@ -16625,7 +16613,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 +16621,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 +16634,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,12 +16741,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16810,6 +16799,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 +16838,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16854,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:1744 msgid "No Permissions Specified" msgstr "No hay Permisos Especificados" @@ -16881,11 +16874,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:720 msgid "No Preview Available" msgstr "Vista previa no disponible" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "No hay impresora disponible." @@ -16901,7 +16894,7 @@ 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" @@ -16925,7 +16918,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:232 msgid "No alerts for today" msgstr "No hay alertas para hoy" @@ -16953,19 +16946,15 @@ 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" @@ -16985,6 +16974,10 @@ 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" @@ -17057,7 +17050,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:947 msgid "No permission to read {0}" msgstr "No tiene permiso para leer {0}" @@ -17085,7 +17078,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" @@ -17109,7 +17102,7 @@ msgstr "Ningún {0} encontrado" 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:497 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}." @@ -17161,7 +17154,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" @@ -17210,18 +17203,17 @@ msgstr "No nulo" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17231,9 +17223,9 @@ msgstr "No publicado" #: 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/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 +17257,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 +17273,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:637 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,7 +17301,7 @@ 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." @@ -17318,18 +17310,18 @@ msgstr "No se encuentra en modo desarrollador! Debe establecerlo en el archivo s #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17356,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:399 msgid "Note: This will be shared with user." msgstr "Nota: Se compartirá con el usuario." @@ -17388,10 +17380,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 +17428,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:542 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:528 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:537 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 +17487,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,7 +17545,7 @@ 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 {}." @@ -17668,11 +17659,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 +17782,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ó:" @@ -17876,7 +17867,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:" @@ -17920,7 +17911,7 @@ msgstr "Solo se pueden eliminar informes del tipo Generador de Informes" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Solo los DocTypes estándar pueden personalizarse desde el formulario Personalizar." @@ -17994,7 +17985,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 +18003,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 +18011,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Abrir elemento de lista" @@ -18035,13 +18026,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 +18041,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 +18060,7 @@ msgstr "Abierto" msgid "Operation" msgstr "Operación" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "El Operador debe ser uno de {0}" @@ -18091,7 +18086,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" @@ -18123,7 +18118,7 @@ msgstr "Opcional: La alerta será enviada si esta expresión es verdadera" 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 +18127,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 +18135,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." @@ -18184,8 +18179,8 @@ msgstr "Encabezado de la historia de la organización" 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" @@ -18264,9 +18259,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:1796 msgid "PDF" msgstr "PDF" @@ -18307,11 +18302,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:629 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:547 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 +18478,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}" @@ -18527,11 +18522,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 +18535,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 +18609,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18620,7 @@ msgstr "Pasivo" msgid "Password" msgstr "Contraseña" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "Correo de Contraseña enviado" @@ -18638,7 +18633,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:896 msgid "Password cannot be filtered" msgstr "No se puede filtrar por contraseña" @@ -18655,6 +18650,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 +18662,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:1091 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 {}." @@ -18675,7 +18674,7 @@ msgstr "Contraseña establecida" msgid "Password size exceeded the maximum allowed size" msgstr "El tamaño de la contraseña excedió el tamaño máximo permitido" -#: frappe/core/doctype/user/user.py: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 +18682,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:210 msgid "Passwords do not match!" msgstr "¡Las contraseñas no coinciden!" @@ -18753,10 +18752,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 "Pendiente" @@ -18892,16 +18893,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "Error de Permisos" @@ -18989,8 +18990,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Seleccionar columnas" @@ -19050,11 +19051,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 +19063,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:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "Por favor, consulte a su administrador para verificar su registro" @@ -19082,10 +19083,6 @@ 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: {}" @@ -19094,7 +19091,7 @@ msgstr "Compruebe los valores de filtro establecidos para el gráfico del tabler msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Por favor, compruebe el valor de \"Obtener desde\" establecido para el campo {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1072 msgid "Please check your email for verification" msgstr "Por favor, consultar su correo electrónico para la verificación" @@ -19126,7 +19123,7 @@ msgstr "Por favor, haga clic en el siguiente enlace para configurar su nueva con msgid "Please confirm your action to {0} this document." msgstr "Confirma tu acción a {0} este documento." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 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." @@ -19156,8 +19153,8 @@ msgstr "Por favor, habilite al menos una Clave de Inicio de Sesión Social o LDA #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19196,7 +19193,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 +19230,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." @@ -19249,7 +19247,7 @@ msgstr "Asegúrese de que los documentos de comunicación de referencia no esté 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:548 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 +19263,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:1711 msgid "Please save the report first" msgstr "Por favor, guarde el informe primero" @@ -19301,7 +19299,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 +19311,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:1152 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,7 +19337,7 @@ 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:562 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" @@ -19351,7 +19349,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" @@ -19387,23 +19385,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 +19422,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." @@ -19514,14 +19512,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19537,7 +19527,7 @@ msgstr "" msgid "Precision" msgstr "Precisión" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "Precisión debe estar entre 1 y 6" @@ -19593,7 +19583,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" @@ -19628,13 +19618,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 +19646,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 @@ -19680,7 +19663,7 @@ msgstr "Anterior" 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 +19709,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Impresión" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impresión" @@ -19756,8 +19739,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19864,7 +19847,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19913,11 +19896,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:843 msgid "Printer" msgstr "Impresora" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "Mapeo de impresora" @@ -19927,11 +19910,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:812 msgid "Printer Settings" msgstr "Configuración de la impresora" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "El mapeo de impresora no está establecido." @@ -19993,7 +19976,7 @@ msgstr "Proceder" msgid "Proceed Anyway" msgstr "Procede de todas maneras" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "Procesando" @@ -20019,9 +20002,9 @@ 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" @@ -20107,24 +20090,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 +20111,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 +20200,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" @@ -20245,8 +20215,8 @@ 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: " +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 +20265,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 +20365,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:309 msgid "Quoting must be between 0 and 3" msgstr "La Cotización debe estar entre 0 y 3" @@ -20432,12 +20402,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 @@ -20474,7 +20438,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 +20455,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 +20512,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 +20527,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" @@ -20630,7 +20589,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 +20600,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 +20640,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 +20657,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" @@ -20952,15 +20924,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Actualizar" @@ -20985,18 +20957,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:534 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:374 #: 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 +21145,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!" @@ -21376,7 +21348,7 @@ msgstr "Administrador de reportes" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "Nombre del reporte" @@ -21414,7 +21386,7 @@ msgstr "Vista de Reporte" msgid "Report bug" msgstr "Reportar error" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "El reporte no se puede definir para un solo tipo" @@ -21440,20 +21412,20 @@ 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:615 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:1994 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}" @@ -21476,7 +21448,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" @@ -21606,11 +21578,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "Restablecer la contraseña LDAP" @@ -21618,11 +21590,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:235 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:168 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 +21629,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:433 msgid "Reset to default" msgstr "Restaurar valores" @@ -21695,6 +21667,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 +21677,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 +21735,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" @@ -21819,9 +21787,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 +21828,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 +21842,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 @@ -21923,7 +21891,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:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Administrar permisos" @@ -21966,6 +21934,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 +21944,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 +21981,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 +22001,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 +22012,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 @@ -22074,12 +22040,12 @@ msgstr "Ruta: Ejemplo \"/app\"" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 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" @@ -22087,7 +22053,7 @@ msgstr "Fila # {0}: El usuario no administrador no puede establecer el rol {1} a 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" @@ -22115,7 +22081,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,25 +22089,25 @@ 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:353 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:342 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" @@ -22237,7 +22203,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 +22281,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 +22309,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22331,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:1735 msgid "Save As" msgstr "Guardar como" @@ -22382,7 +22344,7 @@ 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:1951 msgid "Save Report" msgstr "Guardar reporte" @@ -22411,7 +22373,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 +22452,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}" @@ -22658,7 +22620,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" @@ -22767,7 +22729,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 +22776,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22822,12 +22784,12 @@ 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:497 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" @@ -22838,7 +22800,7 @@ msgstr "Seleccione adjuntos" 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" @@ -22902,12 +22864,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:489 #: 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" @@ -22953,8 +22918,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:598 msgid "Select Network Printer" msgstr "Seleccione Impresora de red" @@ -23022,11 +22987,11 @@ msgstr "Seleccione un campo para editar sus propiedades." msgid "Select a group node first." msgstr "Seleccione primero un nodo de grupo" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 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 +23021,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Seleccionar múltiples elementos de la lista" @@ -23096,7 +23061,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 +23245,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:1946 msgid "Sender Field should have Email in options" msgstr "El campo del remitente debe tener opciones de correo electrónico" @@ -23374,7 +23339,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}" @@ -23403,7 +23368,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." @@ -23508,7 +23473,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:2104 msgid "Set Level" msgstr "Establecer Nivel" @@ -23562,7 +23527,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:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Establecer permisos de usuario" @@ -23727,14 +23692,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 +23710,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "Configuración automática de correo electrónico" @@ -23820,11 +23780,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 +23799,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 +23851,7 @@ msgstr "Mostrar documento" msgid "Show Error" msgstr "Mostrar error" -#: frappe/public/js/frappe/form/layout.js:579 +#: 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 +23979,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:1845 msgid "Show Tags" msgstr "Mostrar etiquetas" @@ -24046,7 +23996,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 +24036,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 +24084,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 +24114,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 +24149,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" @@ -24263,7 +24209,7 @@ msgstr "Expresión Python simple, Ejemplo: estado == 'Abierto' y tipo == 'Error' msgid "Simultaneous Sessions" msgstr "Sesiones simultáneas" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "Los DocTypes individuales no se pueden personalizar." @@ -24496,11 +24442,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,13 +24477,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24545,6 +24490,10 @@ msgstr "Campo de orden {0} debe ser un nombre de campo válido" 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 +24520,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" @@ -24632,7 +24587,7 @@ msgstr "Estándar" 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" @@ -24688,8 +24643,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 +24652,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 @@ -24770,7 +24725,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 +24781,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 +24806,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 +24814,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 +24852,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:454 msgid "Sticky" msgstr "" @@ -24925,6 +24882,10 @@ msgstr "Uso de almacenamiento por tabla" msgid "Store Attached PDF Document" msgstr "Almacenar documento PDF adjunto" +#: frappe/core/doctype/user/user.js:490 +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." @@ -25019,7 +24980,7 @@ msgstr "Asunto" msgid "Subject Field" msgstr "Campo de Asunto" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 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" @@ -25044,7 +25005,7 @@ msgstr "Cola de envío" msgid "Submit" msgstr "Validar" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Validar" @@ -25054,7 +25015,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Validar" @@ -25078,7 +25039,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 +25051,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 +25063,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "¿Validar {0} documentos?" @@ -25111,11 +25072,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 +25099,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 +25113,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:1171 #: 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 +25155,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 +25206,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 +25328,7 @@ msgstr "Sincronización" msgid "Syncing {0} of {1}" msgstr "Sincronizando {0} de {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "Error de sintaxis" @@ -25496,6 +25451,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 +25534,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 +25608,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 +25617,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,7 +25639,7 @@ 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:1170 msgid "Table updated" msgstr "Tabla actualiza" @@ -25728,11 +25685,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 +25758,7 @@ msgstr "Advertencias de plantilla" msgid "Templates" msgstr "Plantillas" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "Desactivado temporalmente" @@ -25868,7 +25832,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 +25856,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:1193 msgid "The CSV format is case sensitive" msgstr "El formato CSV es sensible a mayúsculas y minúsculas" @@ -25905,7 +25869,7 @@ 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" @@ -25913,7 +25877,7 @@ msgstr "La Condición '{0}' no es válida" 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 +25920,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 +25928,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:685 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." @@ -26066,11 +26030,11 @@ msgstr "El número de proyecto obtenido de Google Cloud Console en " -#: frappe/core/doctype/user/user.py:993 +#: 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" @@ -26107,7 +26071,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}" @@ -26156,7 +26120,7 @@ msgstr "Ya hay {0} con los mismos filtros en la cola:" 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,6 +26132,10 @@ 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." @@ -26200,11 +26168,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" @@ -26292,7 +26260,7 @@ 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." @@ -26358,7 +26326,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 +26345,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:2180 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 +26369,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 +26387,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:423 msgid "This may get printed on multiple pages" msgstr "Esto puede imprimirse en varias páginas." @@ -26472,7 +26434,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 +26466,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:1253 msgid "Throttled" msgstr "Limitar" @@ -26656,11 +26618,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" @@ -26709,9 +26671,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 +26695,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 +26717,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" @@ -26916,7 +26872,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 +26888,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Alternar Barra Lateral" @@ -26982,7 +26938,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 +26954,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:1041 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 +27016,10 @@ msgstr "Parte superior derecha" msgid "Topic" msgstr "Tema" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "Total" @@ -27106,18 +27062,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" @@ -27218,6 +27174,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 +27193,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:2235 msgid "Translate Data" msgstr "" @@ -27243,7 +27204,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 +27288,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" @@ -27675,8 +27636,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 +27652,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" @@ -27765,7 +27725,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:427 msgid "Update" msgstr "Actualizar" @@ -27841,7 +27801,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 +27809,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 🎉" @@ -28022,7 +27982,7 @@ msgstr "El uso de la función {0} en el campo está restringido" 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 +28003,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 +28014,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 +28029,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 +28043,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 +28060,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 +28094,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 +28158,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 +28177,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 +28200,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "Permisos de Usuario" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Permisos de Usuario" @@ -28259,7 +28218,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 +28286,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 +28320,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 +28341,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:1382 msgid "User {0} impersonated as {1}" msgstr "Usuario {0} suplantado como {1}" @@ -28405,7 +28370,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 +28454,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" @@ -28561,7 +28526,7 @@ 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:612 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" @@ -28607,7 +28572,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 +28585,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 +28647,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:156 msgid "View Doctype Permissions" msgstr "Ver permisos del doctype" @@ -28712,7 +28669,7 @@ msgstr "Ver Lista" msgid "View Log" msgstr "Ver registro" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Ver Documentos Permitidos" @@ -28759,7 +28716,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" @@ -28836,7 +28793,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" @@ -29025,7 +28982,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 +28995,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 +29038,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 +29255,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" @@ -29399,7 +29347,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 +29373,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 +29385,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,7 +29424,7 @@ 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" @@ -29537,11 +29500,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 "" @@ -29564,7 +29527,7 @@ msgstr "Escribir" 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,7 +29546,7 @@ 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" @@ -29641,14 +29604,15 @@ 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/website/doctype/help_article/templates/help_article.html:25 @@ -29725,11 +29689,11 @@ msgstr "No está permitido exportar {} doctype" msgid "You are not allowed to print this report" msgstr "Usted no está autorizado a imprimir este informe" -#: frappe/public/js/frappe/views/communication.js: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:605 msgid "You are not allowed to update this Web Form Document" msgstr "Usted no está autorizado para modificar este formulario web" @@ -29753,7 +29717,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 +29743,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." @@ -29822,7 +29790,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." @@ -29852,11 +29820,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "No puedes establecer 'Traducible' para el campo {0}" @@ -29874,7 +29842,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "No se puede desmarcar 'solo lectura' para el campo {0}" @@ -29925,7 +29893,7 @@ msgstr "Usted no tiene suficientes permisos para completar la acción" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "No tienes permiso para acceder a {0}: {1}." @@ -29937,7 +29905,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "No tienes permiso para acceder al DocType {0} ." @@ -29949,19 +29917,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:245 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 +29937,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 +29957,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:501 msgid "You haven't created a {0} yet" msgstr "Aún no ha creado un {0}" @@ -30010,11 +29974,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:804 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:645 msgid "You must login to submit this form" msgstr "Debes iniciar sesión para enviar este formulario" @@ -30046,13 +30010,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." @@ -30121,10 +30085,22 @@ msgstr "Has dejado de seguir este documento" msgid "You viewed this" msgstr "Ya has visto esto" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -30178,10 +30154,18 @@ 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/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" @@ -30286,7 +30270,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 +30415,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 +30477,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 +30492,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" @@ -30571,11 +30550,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 +30573,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" @@ -30787,19 +30761,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:301 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:300 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:302 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:299 msgid "since yesterday" msgstr "desde ayer" @@ -30852,6 +30826,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 +30857,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 +30871,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:403 msgid "via Notification" msgstr "vía notificación" @@ -30926,10 +30904,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:635 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 +30940,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 +30970,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:486 +#: 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 +31006,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" @@ -31049,7 +31036,6 @@ msgstr "{0} Informe" 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 +31060,7 @@ 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/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} ya existe. Seleccione otro nombre" @@ -31153,11 +31139,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." @@ -31224,7 +31206,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,7 +31215,7 @@ 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" @@ -31241,15 +31223,15 @@ msgstr "{0} es un campo obligatorio" 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 +31240,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}" @@ -31310,8 +31292,8 @@ msgstr "{0} no es una expresión Cron válida." 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} no es una dirección de correo electrónico válida" @@ -31319,15 +31301,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:174 msgid "{0} is not a valid Name" msgstr "{0} no es un nombre válido" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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." @@ -31347,19 +31329,23 @@ msgstr "{0} no es un formato de informe válido. El formato del informe debe ser 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" @@ -31367,31 +31353,31 @@ msgstr "{0} no está establecido" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} es requerido" -#: 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:1835 msgid "{0} items selected" msgstr "{0} elementos seleccionados" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} se hizo pasar por usted. Dieron esta razón: {1}" @@ -31424,7 +31410,7 @@ msgstr "Hace {0} minutos" msgid "{0} months ago" msgstr "Hace {0} meses" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} debe ser después de {1}" @@ -31460,7 +31446,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 +31459,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} de {1} ({2} filas con hijos)" @@ -31523,11 +31509,11 @@ msgstr "{0} eliminado su asignación." msgid "{0} role does not have permission on any doctype" msgstr "{0} el rol no tiene permiso sobre ningún doctype" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} fila #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "{0} fila #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} guardado exitosamente" @@ -31547,11 +31533,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 +31550,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" @@ -31583,7 +31569,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:254 msgid "{0} updated" msgstr "{0} actualizado" @@ -31627,7 +31613,7 @@ msgstr "{0} {1} ya existe" 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" @@ -31659,75 +31645,75 @@ msgstr "{0}/{1} completo | Deje esta pestaña abierta hasta que se complete." 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:1801 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:1819 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:1817 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:1796 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:1803 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:1799 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:1823 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:1756 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:1770 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 +31721,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:1785 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 +31729,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}" @@ -31760,7 +31746,7 @@ msgstr "{0}: {1} está configurado para indicar {2}" 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 +31770,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 +31778,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:2525 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:2534 msgid "{} Possibly invalid python code.
{}" msgstr "{} Código python posiblemente inválido.
{}" diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po index d5c25b8091..690f7e4acd 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-28 23:16\n" +"POT-Creation-Date: 2025-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = درست و 0 = نادرست" @@ -145,10 +141,6 @@ msgstr "1 رویداد تقویم Google همگام‌سازی شد." 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 msgid "1 day ago" msgstr "1 روز پیش" @@ -246,6 +238,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 معتبر نیست" @@ -480,7 +479,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 +546,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,10 +555,6 @@ 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 "یک پست برجسته باید تصویر جلد داشته باشد" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "فیلدی با نام {0} از قبل در {1} وجود دارد" @@ -577,7 +572,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 +671,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:452 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 +700,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "کلید API قابل بازسازی نیست" +#: frappe/core/doctype/user/user.js:449 +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 +724,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:459 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 +771,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 @@ -857,7 +874,7 @@ msgstr "اقدام / مسیر" msgid "Action Complete" msgstr "اقدام کامل شد" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "اقدام ناموفق بود" @@ -966,7 +983,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:501 #: 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 +994,7 @@ msgstr "لاگ فعالیت" msgid "Add" msgstr "افزودن" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "اضافه / حذف ستون ها" @@ -989,7 +1006,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 "افزودن پیوست" @@ -1022,10 +1039,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1101,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 +1134,12 @@ msgstr "افزودن مشترکین" msgid "Add Tags" msgstr "افزودن تگ" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "افزودن الگو" @@ -1249,7 +1266,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}" @@ -1357,7 +1374,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 "مدیریت" @@ -1384,11 +1401,11 @@ msgstr "مدیریت" msgid "Administrator" msgstr "ادمین" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "مدیر وارد شده است" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "ادمین از طریق آدرس IP {2} به {0} در {1} دسترسی پیدا کرد." @@ -1409,8 +1426,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 "جستجوی پیشرفته" @@ -1565,7 +1582,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 "همه موارد ارسالی" @@ -1625,8 +1642,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 +1661,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 +1711,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 "اجازه چاپ برای پیش‌نویس" @@ -1768,7 +1780,8 @@ msgstr "اجازه ویرایش پس از ارسال" #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Allow editing even if the doctype has a workflow set up.\n\n" "Does nothing if a workflow isn't set up." -msgstr "" +msgstr "حتی اگر doctype دارای گردش کار تنظیم شده باشد، ویرایش را مجاز می‌کند.\n\n" +"اگر گردش کار تنظیم نشده باشد، کاری انجام نمی‌دهد." #. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -1931,7 +1944,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 +1952,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}" @@ -1990,12 +2003,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' @@ -2020,7 +2033,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 +2041,7 @@ msgstr "اصلاحیه مجاز نیست" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207 msgid "Amendment naming rules updated." -msgstr "قوانین نامگذاری اصلاحیه به روز شد." +msgstr "قوانین نام‌گذاری اصلاحیه به روز شد." #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" @@ -2051,7 +2064,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 +2136,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 +2212,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 +2225,7 @@ msgstr "اعمال شد" msgid "Apply" msgstr "درخواست دادن" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "اعمال قانون تخصیص" @@ -2254,7 +2273,7 @@ msgstr "اگر کاربر مالک است، این قانون را اعمال ک msgid "Apply to all Documents Types" msgstr "برای همه انواع اسناد اعمال شود" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "درخواست: {0}" @@ -2287,7 +2306,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "آیا مطمئن هستید که می‌خواهید واگذاری ها را پاک کنید؟" @@ -2315,7 +2338,11 @@ 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 "آیا مطمئن هستید که می‌خواهید تغییرات را نادیده بگیرید؟" @@ -2391,7 +2418,7 @@ msgstr "تعیین شرط" msgid "Assign To" msgstr "اختصاص دادن به" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "اختصاص دادن به" @@ -2454,6 +2481,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 +2555,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:696 msgid "At least one column is required to show in the grid." msgstr "حداقل یک ستون برای نمایش در شبکه مورد نیاز است." @@ -2637,7 +2675,7 @@ 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 "پیوست ها" @@ -2668,6 +2706,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 +2727,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 +2841,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 +2853,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 +2906,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 +2954,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 +2968,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 +3239,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 +3267,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 +3307,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 +3357,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 +3388,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 +3444,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 +3485,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 @@ -3557,7 +3532,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,7 +3542,7 @@ msgstr "حذف انبوه" msgid "Bulk Edit" msgstr "ویرایش انبوه" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "ویرایش انبوه {0}" @@ -3590,7 +3565,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 +3577,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 +3603,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 +3622,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 +3707,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 +3757,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 @@ -3850,7 +3810,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 وجود نداشته باشد" @@ -3876,12 +3836,13 @@ msgstr "نمی‌توان نام {0} را به {1} تغییر داد زیرا {0 #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "لغو" @@ -3899,16 +3860,18 @@ msgstr "لغو همه" msgid "Cancel All Documents" msgstr "لغو تمام اسناد" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3958,7 +3921,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} را ببینید" @@ -3978,11 +3941,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 تغییر داد" @@ -4033,15 +3996,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 "نمی‌توان اعلان استاندارد را ویرایش کرد. برای ویرایش، لطفاً این را غیرفعال کنید و آن را کپی کنید" @@ -4070,7 +4033,7 @@ 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} را برای یک نوع سند غیر قابل ارسال فعال کرد" @@ -4082,11 +4045,11 @@ msgstr "نمی‌توان فایل {} را روی دیسک پیدا کرد" msgid "Cannot get file contents of a Folder" msgstr "محتویات فایل یک پوشه را نمی‌توان دریافت کرد" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4106,7 +4069,7 @@ msgstr "ستون {0} با هیچ فیلدی مطابقت ندارد" 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 +4077,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 +4094,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:1129 +msgid "Cannot use sub-query here." +msgstr "اینجا نمی‌توان از پرسمان فرعی استفاده کرد." -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "نمی‌توان از {0} به ترتیب/گروه بندی بر اساس استفاده کرد" @@ -4159,7 +4122,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" @@ -4249,9 +4212,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 @@ -4320,7 +4283,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 +4297,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 +4316,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 +4324,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}" @@ -4416,7 +4379,7 @@ 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}" @@ -4469,7 +4432,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 +4444,7 @@ msgstr "پاک کردن و افزودن الگو" msgid "Clear All" msgstr "همه را پاک کن" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "پاک کردن واگذاری" @@ -4507,7 +4470,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,7 +4482,11 @@ 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 "اینجا کلیک کنید" @@ -4571,7 +4538,7 @@ msgstr "برای تنظیم فیلترهای پویا کلیک کنید" msgid "Click to Set Filters" msgstr "برای تنظیم فیلترها کلیک کنید" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "برای مرتب سازی بر اساس {0} کلیک کنید" @@ -4749,7 +4716,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "جمع کردن همه" @@ -4860,11 +4827,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:454 msgid "Column Width" msgstr "عرض ستون" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "عرض ستون نمی‌تواند صفر باشد." @@ -4912,7 +4879,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 +4900,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 +4907,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 @@ -5036,7 +4993,7 @@ msgstr "نام شرکت" 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 "هشدار تالیف" @@ -5131,6 +5088,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" @@ -5156,11 +5118,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:406 msgid "Configure Columns" msgstr "پیکربندی ستون ها" @@ -5178,14 +5140,16 @@ 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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "تایید" @@ -5204,7 +5168,7 @@ msgstr "تأیید دسترسی" msgid "Confirm Deletion of Account" msgstr "حذف اکانت را تایید کنید" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "گذرواژه جدید را تأیید کنید" @@ -5231,7 +5195,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 "اتصال به {}" @@ -5358,7 +5322,6 @@ msgstr "حاوی {0} اصلاحات امنیتی است" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5366,7 +5329,6 @@ msgstr "حاوی {0} اصلاحات امنیتی است" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5374,24 +5336,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 +5359,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 @@ -5467,12 +5417,16 @@ msgstr "کپی خطا در کلیپ بورد" msgid "Copy to Clipboard" msgstr "کپی به کلیپ بورد" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes را نمی‌توان سفارشی کرد." @@ -5480,7 +5434,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:633 msgid "Correct version :" msgstr "" @@ -5501,10 +5455,10 @@ 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 "ذخیره نشد، لطفاً داده‌هایی را که وارد کرده‌اید بررسی کنید" @@ -5641,7 +5595,7 @@ msgstr "ایجاد لاگ" msgid "Create New" msgstr "ایجاد جدید" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "ایجاد جدید" @@ -5654,7 +5608,7 @@ msgstr "DocType جدید ایجاد کنید" msgid "Create New Kanban Board" msgstr "صفحه کانبان جدید ایجاد کنید" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "ایجاد ایمیل کاربر" @@ -5666,7 +5620,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,10 +5628,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "ایجاد یک {0} جدید" @@ -5694,7 +5648,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:507 msgid "Create your first {0}" msgstr "اولین {0} خود را ایجاد کنید" @@ -5720,7 +5674,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 +5684,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 +5781,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" @@ -6069,14 +6023,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "شخصی سازی" @@ -6220,7 +6174,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 "داشبورد" @@ -6328,7 +6282,7 @@ msgstr "لاگ درون‌بُرد داده" msgid "Data Import Template" msgstr "الگوی درون‌بُرد داده" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "داده خیلی طولانی است" @@ -6359,7 +6313,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:249 msgid "Database Table Row Size Limit" msgstr "محدودیت اندازه ردیف جدول پایگاه داده" @@ -6497,11 +6451,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "جداکننده اعشاری باید یک کاراکتر باشد" @@ -6529,7 +6483,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 +6521,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 @@ -6663,11 +6617,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} باید در لیست گزینه‌ها باشد." @@ -6718,10 +6672,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6729,11 +6683,16 @@ msgstr "با تاخیر" msgid "Delete" msgstr "حذف" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "حذف حساب کاربری" @@ -6774,7 +6733,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 +6766,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} مورد برای همیشه حذف شود؟" @@ -6852,6 +6811,10 @@ msgstr "نام حذف شده" msgid "Deleted all documents successfully" msgstr "تمام اسناد با موفقیت حذف شد" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "حذف شده!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "در حال حذف {0}" @@ -6867,8 +6830,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 +6847,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:301 msgid "Delimiter must be a single character" msgstr "جداکننده باید یک کاراکتر واحد باشد" @@ -6911,7 +6874,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 +6887,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 +6909,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 +6929,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 +6938,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 +7021,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 +7068,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 +7080,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 +7099,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 +7108,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 +7158,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 +7172,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 +7182,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 +7200,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 +7223,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,16 +7259,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "سرصفحه هایی را که در قالب از پیش تنظیم شده اند ویرایش نکنید" @@ -7413,7 +7362,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 +7409,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 +7422,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 +7455,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 +7469,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 +7506,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,19 +7531,19 @@ 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}: نام فیلد جدول برای پیوندهای داخلی اجباری است" @@ -7622,17 +7571,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 +7606,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 @@ -7791,7 +7740,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:1955 msgid "Document Unlocked" msgstr "قفل سند باز شد" @@ -7799,15 +7748,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:1300 msgid "Document has been cancelled" msgstr "سند لغو شده است" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "سند ارسال شده است" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "سند در حالت پیش‌نویس است" @@ -7949,13 +7898,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "دانلود" @@ -7999,7 +7948,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" @@ -8177,17 +8126,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:1776 #: 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:350 #: 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 +8144,7 @@ msgstr "خروج" msgid "Edit" msgstr "ویرایش" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "ویرایش" @@ -8205,7 +8154,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "ویرایش" @@ -8234,7 +8183,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "ویرایش DocType" @@ -8337,7 +8286,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 +8295,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}" @@ -8393,6 +8342,7 @@ 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' @@ -8406,6 +8356,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 @@ -8446,7 +8397,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 "حساب ایمیل چندین بار اضافه شده است" @@ -8577,10 +8528,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 @@ -8645,11 +8596,11 @@ msgstr "ایمیل به عنوان هرزنامه علامت گذاری شده msgid "Email has been moved to trash" msgstr "ایمیل به سطل زباله منتقل شد" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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} ارسال نشد (لغو اشتراک / غیرفعال)" @@ -8715,7 +8666,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 +8684,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 +8692,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 +8785,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 +8792,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 +8804,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 +8826,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 +8839,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 +8865,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 +8885,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 +8901,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 +8917,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 +8965,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 +9024,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 +9035,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 +9055,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 "خطا" @@ -9159,9 +9103,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "خطا در اعلان" @@ -9181,7 +9125,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "خطا هنگام اتصال به حساب ایمیل {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "خطا هنگام ارزیابی اعلان {0}. لطفا قالب خود را اصلاح کنید." @@ -9334,7 +9278,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 "" @@ -9342,7 +9286,7 @@ msgstr "" msgid "Executing..." msgstr "در حال اجرا..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "زمان اجرا: {0} ثانیه" @@ -9368,7 +9312,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "گسترش همه" @@ -9401,7 +9345,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 +9356,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 +9375,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "برون‌بُرد" @@ -9472,7 +9418,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "گزارش برون‌بُرد: {0}" @@ -9481,11 +9427,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 "" @@ -9598,9 +9544,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 +9561,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 "محاسبه بدنه درخواست ناموفق بود: {}" @@ -9628,7 +9574,7 @@ msgstr "اتصال به سرور ممکن نشد" 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} انجام نشد" @@ -9640,8 +9586,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 +9603,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 +9623,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 +9677,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 +9734,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:1870 #: 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 +9757,7 @@ msgstr "" msgid "Field Description" msgstr "شرح فیلد" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "فیلد جا افتاده است" @@ -9859,7 +9799,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 +9813,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9895,18 +9835,18 @@ 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:454 #: 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 msgid "Fieldname is limited to 64 characters ({0})" @@ -9928,11 +9868,11 @@ msgstr "نام فیلد {0} چندین بار ظاهر می‌شود" 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:1908 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 +9895,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 @@ -10004,7 +9944,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "نوع فیلد را نمی‌توان از {0} به {1} در ردیف {2} تغییر داد" @@ -10108,7 +10048,7 @@ msgstr "فایل ها" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10167,7 +10107,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 +10121,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 +10145,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,7 +10162,7 @@ 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}" @@ -10233,18 +10179,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}" @@ -10332,11 +10278,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 باشد" @@ -10498,7 +10444,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 +10502,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:2120 +#: 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 +10529,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 +10543,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "برای {0} در سطح {1} در {2} در ردیف {3}" @@ -10658,7 +10598,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 +10658,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 +10690,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" @@ -10834,7 +10787,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:1831 msgid "From Document Type" msgstr "از نوع سند" @@ -10861,18 +10814,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 "صفحه کامل" @@ -10904,7 +10855,7 @@ msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "گره های بیشتر را فقط می‌توان تحت گره های نوع «گروهی» ایجاد کرد" +msgstr "گره‌های بیشتر را فقط می‌توان تحت گره‌های نوع «گروهی» ایجاد کرد" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10971,6 +10922,12 @@ 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 msgid "Generate Tracking URL" @@ -10995,7 +10952,7 @@ msgstr "موقعیت جغرافیایی" msgid "Geolocation Settings" msgstr "تنظیمات مکان جغرافیایی" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "دریافت هشدار برای امروز" @@ -11301,11 +11258,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" @@ -11439,7 +11391,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 @@ -11452,7 +11403,6 @@ msgstr "HH:mm:ss" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11614,6 +11564,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 @@ -11748,11 +11704,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 +11776,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:1845 msgid "Hide Tags" msgstr "پنهان کردن تگ‌ها" @@ -11846,7 +11797,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 +11846,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 @@ -11987,16 +11935,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "شناسه" @@ -12092,7 +12040,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12222,6 +12170,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 +12199,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 +12266,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:1120 msgid "Illegal SQL Query" msgstr "پرسمان SQL غیر قانونی" @@ -12376,11 +12332,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,11 +12358,11 @@ 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:384 msgid "Impersonate" msgstr "جعل هویت" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "جعل هویت به عنوان {0}" @@ -12436,7 +12392,7 @@ msgstr "ضمنی" msgid "Import" msgstr "درون‌بُرد" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "درون‌بُرد" @@ -12532,7 +12488,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' @@ -12731,7 +12687,7 @@ msgstr "پیکربندی نادرست" msgid "Incorrect URL" msgstr "URL نادرست است" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "کاربر یا گذرواژه نادرست" @@ -12755,7 +12711,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 +12786,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:1876 msgid "Insert After" msgstr "درج بعد" @@ -12846,7 +12802,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 +12820,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "{0} را از Marketplace نصب کنید" @@ -12882,7 +12842,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 "برنامه های نصب شده" @@ -12911,7 +12871,7 @@ msgstr "مجوزهای ناکافی برای حذف گزارش" 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 +12895,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 +12975,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:849 +#: 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\" نامعتبر است" @@ -13041,7 +13001,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,7 +13021,11 @@ 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 "نام فیلد نامعتبر است" @@ -13102,7 +13066,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 +13075,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 "گزینه نامعتبر" @@ -13128,11 +13092,11 @@ msgstr "فرمت خروجی نامعتبر است" 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:1239 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" @@ -13151,7 +13115,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 "نام فیلد جدول نامعتبر است" @@ -13174,7 +13138,7 @@ 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 نامعتبر است" @@ -13186,6 +13150,10 @@ msgstr "تابع تجمیع نامعتبر است" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13202,7 +13170,7 @@ msgstr "" 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 "ستون نامعتبر است" @@ -13238,19 +13206,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "نام فیلد نامعتبر {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است" @@ -13278,12 +13242,20 @@ msgstr "" 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 +13263,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 "محتوای نامعتبر یا خراب برای درون‌بُرد" @@ -13303,6 +13279,10 @@ msgstr "Regex تغییر مسیر نامعتبر در ردیف #{}: {}" msgid "Invalid request arguments" msgstr "آرگومان های درخواست نامعتبر" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13319,7 +13299,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 +13308,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:627 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 +13330,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 @@ -13489,7 +13506,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 "فیلد منتشر شده است باید یک نام فیلد معتبر باشد" @@ -13772,7 +13789,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 +13798,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 @@ -14059,7 +14078,7 @@ msgstr "افقی" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "زبان" @@ -14108,7 +14127,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 @@ -14161,7 +14180,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 +14203,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" @@ -14343,7 +14362,7 @@ msgstr "نامه" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14437,21 +14456,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 +14498,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 +14512,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,6 +14643,10 @@ 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' @@ -14688,7 +14699,7 @@ msgstr "فیلتر لیست" msgid "List Settings" msgstr "تنظیمات لیست" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "تنظیمات لیست" @@ -14729,7 +14740,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 +14749,8 @@ msgstr "لیست ها" msgid "Load Balancing" msgstr "تعادل بار" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "بارگذاری بیشتر" @@ -14757,8 +14767,8 @@ 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 msgid "Loading" @@ -14772,7 +14782,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 +14792,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "بارگذاری..." @@ -14843,7 +14853,7 @@ msgstr "برای دسترسی به این صفحه وارد شوید." msgid "Log out" msgstr "خروج" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "از سیستم خارج شده است" @@ -14983,7 +14993,7 @@ msgstr "" msgid "Logout" msgstr "خروج" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "خروج از تمام نشست‌ها" @@ -15124,7 +15134,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 +15173,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:509 msgid "Mandatory Information missing:" msgstr "اطلاعات اجباری از دست رفته:" @@ -15183,7 +15193,7 @@ msgstr "فیلدهای اجباری در جدول {0}، ردیف {1} مورد ن 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 +15274,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 +15338,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 +15356,7 @@ msgstr "حداکثر اندازه پیوست" msgid "Max auto email report per user" 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 "حداکثر عرض برای نوع ارز 100 پیکسل در ردیف {0} است" @@ -15361,16 +15369,11 @@ msgstr "بیشترین" 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} ردیف مجاز است" @@ -15440,7 +15443,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 "ادغام فقط بین گره گروه به گروه یا گره برگ به برگ امکان پذیر است" @@ -15506,7 +15509,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 +15541,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 "عنوان متا" @@ -15641,7 +15636,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,7 +15690,7 @@ msgstr "" msgid "Missing DocType" msgstr "DocType وجود ندارد" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "فیلد جا افتاده" @@ -15960,9 +15955,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 "به احتمال زیاد گذرواژه شما خیلی طولانی است." @@ -16036,7 +16031,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "چندین گره ریشه مجاز نیست." @@ -16077,7 +16072,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:498 #: 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,7 +16110,7 @@ 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/views/file/file_view.js:97 @@ -16131,7 +16126,7 @@ msgstr "نام (نام سند)" 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 +16138,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 +16155,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 +16169,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 +16214,12 @@ msgstr "الگوی نوار ناوبری" msgid "Navbar Template Values" msgstr "مقادیر الگوی نوار ناوبری" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "پیمایش لیست به بالا" @@ -16239,7 +16234,7 @@ msgstr "به محتوای اصلی بروید" msgid "Navigation Settings" 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 "برای ویرایش محیط کار خصوصی سایر کاربران به نقش مدیر محیط کار نیاز دارید" @@ -16289,10 +16284,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,8 +16292,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 "فرمت چاپ سفارشی جدید" @@ -16368,12 +16359,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:190 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 +16373,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 +16391,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 +16449,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:411 msgid "New {0}" msgstr "{0} جدید" @@ -16480,7 +16471,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 +16479,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 +16492,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,12 +16599,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16665,6 +16657,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 +16696,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16712,7 @@ msgstr "نامی برای {0} مشخص نشده است" msgid "No New notifications" msgstr "بدون اعلان جدید" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "هیچ مجوزی مشخص نشده است" @@ -16736,11 +16732,11 @@ msgstr "هیچ نمودار مجاز در این داشبورد وجود ندا msgid "No Preview" msgstr "بدون پیش نمایش" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "پیش نمایش موجود نیست" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "هیچ چاپگری در دسترس نیست." @@ -16756,7 +16752,7 @@ 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 "هیچ نقشی مشخص نشده است" @@ -16780,7 +16776,7 @@ msgstr "رویدادهای آینده وجود ندارد" msgid "No address added yet." msgstr "هنوز آدرسی اضافه نشده است." -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "هیچ هشداری برای امروز وجود ندارد" @@ -16808,19 +16804,15 @@ 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 "هیچ مخاطبی به سند پیوند داده نشده است" @@ -16840,6 +16832,10 @@ 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 "هیچ لاگ ناموفقی نیست" @@ -16912,7 +16908,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:947 msgid "No permission to read {0}" msgstr "بدون اجازه خواندن {0}" @@ -16940,7 +16936,7 @@ msgstr "هیچ رکوردی برون‌بُرد نخواهد شد" msgid "No rows" msgstr "بدون ردیف" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16964,7 +16960,7 @@ msgstr "هیچ {0} یافت نشد" msgid "No {0} found" msgstr "هیچ {0} یافت نشد" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "هیچ {0} با فیلترهای منطبق پیدا نشد. برای دیدن همه {0} فیلترها را پاک کنید." @@ -17016,7 +17012,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,15 +17023,15 @@ 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 msgid "Not Found" @@ -17048,11 +17044,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" @@ -17065,18 +17061,17 @@ msgstr "غیرقابل تهی" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17086,9 +17081,9 @@ msgstr "منتشر نشده" #: 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/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 +17115,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 +17131,11 @@ msgstr "غیر فعال" msgid "Not allowed for {0}: {1}" msgstr "برای {0} مجاز نیست: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17159,7 @@ 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» بسازید." @@ -17173,18 +17168,18 @@ msgstr "در حالت توسعه دهنده نیست! در site_config.json تن #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17214,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:399 msgid "Note: This will be shared with user." msgstr "توجه: این با کاربر به اشتراک گذاشته خواهد شد." @@ -17243,10 +17238,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 +17286,15 @@ msgstr "سند ثبت شده اعلان" msgid "Notification sent to" msgstr "اعلان ارسال شد به" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17351,7 +17345,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,7 +17403,7 @@ 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 "تعداد فیلدهای پیوست بیش از {} است، محدودیت به {} به روز شده است." @@ -17523,11 +17517,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 +17640,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} نوشت:" @@ -17731,7 +17725,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 "فقط گزینه‌های مجاز برای فیلد داده عبارتند از:" @@ -17775,7 +17769,7 @@ msgstr "فقط گزارش هایی از نوع Report Builder قابل حذف ه 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "فقط DocType های استاندارد مجاز به سفارشی سازی از سفارشی‌سازی فرم هستند." @@ -17849,7 +17843,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 +17861,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 +17869,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "مورد فهرست را باز کنید" @@ -17890,13 +17884,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 +17899,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 +17918,7 @@ msgstr "باز شد" msgid "Operation" msgstr "عملیات" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "اپراتور باید یکی از {0} باشد" @@ -17946,7 +17944,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} یک جدول فرزند نیست" @@ -17978,7 +17976,7 @@ msgstr "اختیاری: اگر این عبارت درست باشد، هشدار 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 +17985,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 +17993,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} باید قبل از تنظیم مقدار پیش‌فرض تنظیم شوند." @@ -18039,8 +18037,8 @@ msgstr "عنوان تاریخچه سازمان" 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,9 +18117,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:1796 msgid "PDF" msgstr "PDF" @@ -18162,11 +18160,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:629 msgid "PDF generation may not work as expected." msgstr "تولید PDF ممکن است آنطور که انتظار می رود کار نکند." -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "چاپ PDF از طریق \"Raw Print\" پشتیبانی نمی‌شود." @@ -18338,7 +18336,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}" @@ -18382,11 +18380,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 +18393,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 +18467,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18478,7 @@ msgstr "منفعل" msgid "Password" msgstr "گذرواژه" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "گذرواژه ایمیل ارسال شد" @@ -18493,7 +18491,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:896 msgid "Password cannot be filtered" msgstr "گذرواژه را نمی‌توان فیلتر کرد" @@ -18510,6 +18508,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 +18520,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:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18530,7 +18532,7 @@ msgstr "تنظیم گذرواژه" 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 +18540,7 @@ msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بی msgid "Passwords do not match" msgstr "گذرواژه‌ها مطابقت ندارند" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "گذرواژه‌ها مطابقت ندارند!" @@ -18608,10 +18610,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 "انتظار" @@ -18747,16 +18751,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "خطای مجوزها" @@ -18844,8 +18848,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "ستون ها را انتخاب کنید" @@ -18905,11 +18909,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 +18921,7 @@ msgstr "لطفا یک موضوع به ایمیل خود اضافه کنید" msgid "Please add a valid comment." msgstr "لطفا یک نظر معتبر اضافه کنید." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18937,10 +18941,6 @@ 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 "لطفاً مقادیر فیلتر تنظیم شده برای نمودار داشبورد را بررسی کنید: {}" @@ -18949,7 +18949,7 @@ msgstr "لطفاً مقادیر فیلتر تنظیم شده برای نمودا msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "لطفاً مقدار تنظیم شده \"Fetch From\" را برای فیلد {0} بررسی کنید" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1072 msgid "Please check your email for verification" msgstr "لطفا ایمیل خود را برای تایید بررسی کنید" @@ -18981,7 +18981,7 @@ 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:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19011,8 +19011,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19051,7 +19051,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 +19088,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 "لطفا برای ارسال نظر وارد شوید." @@ -19104,7 +19105,7 @@ msgstr "لطفاً مطمئن شوید که اسناد ارتباطی مرجع msgid "Please refresh to get the latest document." msgstr "لطفاً برای دریافت آخرین سند، بازخوانی کنید." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "لطفاً نگاشت چاپگر را در تنظیمات چاپگر حذف کنید و دوباره امتحان کنید." @@ -19120,7 +19121,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:1711 msgid "Please save the report first" msgstr "لطفا ابتدا گزارش را ذخیره کنید" @@ -19156,7 +19157,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 +19169,7 @@ msgstr "لطفاً یک فیلتر تاریخ معتبر انتخاب کنید" msgid "Please select applicable Doctypes" msgstr "لطفاً Doctypes قابل اجرا را انتخاب کنید" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "لطفاً حداقل 1 ستون از {0} برای مرتب‌سازی/گروه‌بندی انتخاب کنید" @@ -19194,7 +19195,7 @@ msgstr "لطفاً {0} را انتخاب کنید" msgid "Please set Email Address" msgstr "لطفا آدرس ایمیل را تنظیم کنید" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "لطفاً یک نگاشت چاپگر برای این قالب چاپی در تنظیمات چاپگر تنظیم کنید" @@ -19206,7 +19207,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 "لطفا نام سند را تنظیم کنید" @@ -19242,23 +19243,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 +19280,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 مراجعه کنید." @@ -19369,14 +19370,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19392,7 +19385,7 @@ msgstr "" msgid "Precision" msgstr "دقت، درستی" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "دقت باید بین 1 تا 6 باشد" @@ -19448,7 +19441,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 "الگو را برای پیام ایمیل آماده کنید" @@ -19483,13 +19476,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 +19504,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 @@ -19535,7 +19521,7 @@ msgstr "قبلی" 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 +19567,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "چاپ" @@ -19611,8 +19597,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19719,7 +19705,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19768,11 +19754,11 @@ msgstr "چاپ سند" msgid "Print with letterhead" msgstr "چاپ با سربرگ" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "چاپگر" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "نگاشت چاپگر" @@ -19782,11 +19768,11 @@ msgstr "نگاشت چاپگر" msgid "Printer Name" msgstr "نام چاپگر" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "تنظیمات چاپگر" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "نگاشت چاپگر تنظیم نشده است." @@ -19848,7 +19834,7 @@ msgstr "ادامه دهید" msgid "Proceed Anyway" msgstr "در هر صورت انجام شود" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "در حال پردازش" @@ -19874,9 +19860,9 @@ 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 "ویژگی" @@ -19962,24 +19948,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 +19969,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 +20034,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 +20058,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 "پایتون" @@ -20100,8 +20073,8 @@ msgid "QR Code for Login Verification" msgstr "کد QR برای تأیید ورود" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr " سینی QZ ناموفق بود:" +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 +20123,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 +20223,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:309 msgid "Quoting must be between 0 and 3" msgstr "نقل قول باید بین 0 تا 3 باشد" @@ -20287,12 +20260,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 @@ -20329,7 +20296,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 +20313,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 +20370,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 +20385,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 "برای دانستن بیشتر مستندات را بخوانید" @@ -20485,7 +20447,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 +20458,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 +20498,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 +20515,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" @@ -20807,15 +20782,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "تازه کردن" @@ -20840,18 +20815,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:534 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:374 #: 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 +20965,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 +21003,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 "تغییر نام فایل ها و جایگزینی کد در کنترلرها، لطفا بررسی کنید!" @@ -21231,7 +21206,7 @@ msgstr "مدیر گزارش" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "نام گزارش" @@ -21269,7 +21244,7 @@ msgstr "نمای گزارش" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "گزارش را نمی‌توان برای انواع تک تنظیم کرد" @@ -21295,20 +21270,20 @@ msgstr "به حد مجاز گزارش رسیده است" msgid "Report timed out." msgstr "زمان گزارش تمام شد." -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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}" @@ -21331,7 +21306,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 "گزارش ها" @@ -21461,11 +21436,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "بازنشانی گذرواژه LDAP" @@ -21473,11 +21448,11 @@ msgstr "بازنشانی گذرواژه LDAP" msgid "Reset Layout" msgstr "بازنشانی چیدمان" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 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:168 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 +21487,7 @@ msgstr "" msgid "Reset sorting" msgstr "بازنشانی مرتب‌سازی" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "بازنشانی به حالت پیش‌فرض" @@ -21550,6 +21525,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 +21535,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 +21593,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 "محدودیت ها" @@ -21674,9 +21645,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 +21686,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 +21700,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 @@ -21778,7 +21749,7 @@ msgstr "مجوزهای نقش" msgid "Role Permissions Manager" msgstr "مدیر مجوزهای نقش" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "مدیر مجوزهای نقش" @@ -21821,6 +21792,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 +21802,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 +21839,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 +21859,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 +21870,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 @@ -21929,12 +21898,12 @@ msgstr "مسیر: مثال \"/app\"" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "ردیف # {0}: کاربر غیر ادمین نمی‌تواند نقش {1} را روی Doctype سفارشی تنظیم کند" @@ -21942,7 +21911,7 @@ msgstr "ردیف # {0}: کاربر غیر ادمین نمی‌تواند نقش 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 "ردیف #{}: نام فیلد مورد نیاز است" @@ -21970,7 +21939,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,25 +21947,25 @@ msgstr "مقادیر ردیف تغییر کرد" msgid "Row {0}" msgstr "ردیف {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "ردیف ها حذف شدند" @@ -22092,7 +22061,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 +22139,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 +22167,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22189,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:1735 msgid "Save As" msgstr "ذخیره به عنوان" @@ -22237,7 +22202,7 @@ msgstr "ذخیره به عنوان" msgid "Save Customizations" msgstr "سفارشی سازی ها را ذخیره کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "ذخیره گزارش" @@ -22266,7 +22231,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 +22310,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} به روز شده است" @@ -22513,7 +22478,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} معتبر نیست" @@ -22622,7 +22587,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 +22634,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22677,12 +22642,12 @@ 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:497 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" @@ -22693,7 +22658,7 @@ msgstr "پیوست ها را انتخاب کنید" 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 "ستون را انتخاب کنید" @@ -22757,12 +22722,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:489 #: 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 "انتخاب فیلدها برای درج" @@ -22808,8 +22776,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:598 msgid "Select Network Printer" msgstr "چاپگر شبکه را انتخاب کنید" @@ -22844,7 +22812,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" @@ -22877,11 +22845,11 @@ msgstr "یک فیلد را برای ویرایش ویژگی‌های آن انت msgid "Select a group node first." msgstr "ابتدا یک گره گروهی را انتخاب کنید." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "یک فیلد موضوع معتبر برای ایجاد اسناد از ایمیل انتخاب کنید" @@ -22911,13 +22879,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "چندین مورد از فهرست را انتخاب کنید" @@ -22951,7 +22919,7 @@ msgstr "برای مشاهده تفاوت، دو نسخه را انتخاب کن msgid "Select {0}" msgstr "انتخاب {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "تایید خود مجاز نیست" @@ -23135,7 +23103,7 @@ msgstr "ایمیل فرستنده" msgid "Sender Email Field" msgstr "فیلد ایمیل فرستنده" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "فیلد فرستنده باید گزینه‌های ایمیل را داشته باشد" @@ -23229,7 +23197,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} استفاده شده است" @@ -23258,7 +23226,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 "اسکریپت های سرور غیرفعال هستند. لطفاً اسکریپت های سرور را از پیکربندی بنچ فعال کنید." @@ -23363,7 +23331,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:2104 msgid "Set Level" msgstr "" @@ -23375,7 +23343,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 +23385,7 @@ msgstr "تنظیم مقدار" msgid "Set Role For" msgstr "تنظیم نقش برای" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "تنظیم مجوزهای کاربر" @@ -23558,14 +23526,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 +23544,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "تنظیم ایمیل خودکار" @@ -23596,11 +23559,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 +23614,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 +23633,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 +23685,7 @@ msgstr "نمایش سند" msgid "Show Error" msgstr "نمایش خطا" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "نمایش نام فیلد (برای کپی در کلیپ بورد کلیک کنید)" @@ -23761,7 +23714,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 +23813,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:1845 msgid "Show Tags" msgstr "نمایش برچسب ها" @@ -23877,7 +23830,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 +23870,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 +23918,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 +23948,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,7 +23975,7 @@ msgstr "تنظیمات نوار کناری" #. Label of the section_break_17 (Section Break) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Sidebar and Comments" -msgstr "نوار کناری و نظرات" +msgstr "نوار کناری و دیدگاه‌ها" #. Label of the sign_up_and_confirmation_section (Section Break) field in #. DocType 'Email Group' @@ -24034,7 +23983,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 "ثبت نام غیرفعال است" @@ -24094,7 +24043,7 @@ msgstr "عبارت ساده پایتون، مثال: status == 'Open' و نوع msgid "Simultaneous Sessions" msgstr "نشست‌های همزمان" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "Single DocType ها را نمی‌توان سفارشی کرد." @@ -24327,11 +24276,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,13 +24311,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24376,6 +24324,10 @@ msgstr "فیلد مرتب سازی {0} باید یک نام فیلد معتبر 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 +24354,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 "کاراکترهای خاص مجاز نیستند" @@ -24463,7 +24421,7 @@ msgstr "استاندارد" 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 استاندارد نمی‌تواند قالب چاپ پیش‌فرض داشته باشد، از سفارشی‌سازی فرم استفاده کنید" @@ -24519,8 +24477,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 +24486,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 @@ -24601,7 +24559,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 +24615,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 +24640,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 +24648,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 @@ -24726,7 +24686,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:454 msgid "Sticky" msgstr "چسبنده" @@ -24756,6 +24716,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "سند PDF پیوست شده را ذخیره کنید" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24850,7 +24814,7 @@ msgstr "موضوع" msgid "Subject Field" msgstr "زمینه موضوعی" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "نوع فیلد موضوع باید داده، متن، متن طولانی، متن کوچک، ویرایشگر متن باشد" @@ -24875,7 +24839,7 @@ msgstr "صف ارسال" msgid "Submit" msgstr "ارسال" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "ارسال" @@ -24885,7 +24849,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "ارسال" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "ارسال" @@ -24909,7 +24873,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 +24885,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" @@ -24933,7 +24897,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} سند ارسال شود؟" @@ -24942,11 +24906,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 +24933,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 +24947,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:1171 #: 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 +24989,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 +25040,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 +25162,7 @@ msgstr "در حال همگام سازی" msgid "Syncing {0} of {1}" msgstr "در حال همگام سازی {0} از {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "اشتباه نوشتاری" @@ -25327,6 +25285,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 +25368,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 +25442,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 +25451,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,7 +25473,7 @@ msgstr "جدول MultiSelect" msgid "Table Trimmed" msgstr "جدول بریده شده" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "جدول به روز شد" @@ -25559,11 +25519,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 @@ -25625,7 +25592,7 @@ msgstr "هشدارهای الگو" msgid "Templates" msgstr "قالب ها" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "موقتا غیر فعال می باشد" @@ -25697,7 +25664,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 +25688,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:1193 msgid "The CSV format is case sensitive" msgstr "قالب CSV به حروف بزرگ و کوچک حساس است" @@ -25732,7 +25699,7 @@ 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}\" نامعتبر است" @@ -25740,9 +25707,9 @@ msgstr "شرط \"{0}\" نامعتبر است" 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 +25748,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 +25756,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "تعداد نشان داده شده یک تعداد تخمینی است. برای مشاهده شمارش دقیق اینجا کلیک کنید." @@ -25889,11 +25856,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "پیوند بازنشانی گذرواژه یا قبلا استفاده شده است یا نامعتبر است" @@ -25930,7 +25897,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}" @@ -25979,7 +25946,7 @@ msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دا 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,6 +25958,10 @@ 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 "در حال حاضر چیز جدیدی برای نشان دادن شما وجود ندارد." @@ -26023,11 +25994,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 +26023,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" @@ -26115,7 +26086,7 @@ 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 "" @@ -26177,7 +26148,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 +26167,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "این یک گزارش پس زمینه است. لطفا فیلترهای مناسب را تنظیم کنید و سپس گزارش جدیدی ایجاد کنید." @@ -26220,12 +26191,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 +26209,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:423 msgid "This may get printed on multiple pages" msgstr "این ممکن است در چندین صفحه چاپ شود" @@ -26291,7 +26256,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 +26288,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:1253 msgid "Throttled" msgstr "گاز گرفت" @@ -26475,11 +26440,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 "فیلد جدول زمانی باید یک نام فیلد معتبر باشد" @@ -26528,9 +26493,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 +26517,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 +26539,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 "فیلد عنوان باید یک نام فیلد معتبر باشد" @@ -26729,7 +26688,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 +26704,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "تغییر وضعیت نوار کناری" @@ -26795,7 +26754,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 +26770,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "کاربران زیادی اخیرا ثبت نام کرده اند، بنابراین ثبت نام غیرفعال است. لطفا یک ساعت دیگر دوباره امتحان کنید" @@ -26873,10 +26832,10 @@ msgstr "بالا سمت راست" msgid "Topic" msgstr "موضوع" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "جمع" @@ -26919,18 +26878,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 +26918,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 @@ -27031,6 +26990,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,7 +27009,7 @@ msgstr "انتقال ها" msgid "Translatable" msgstr "قابل ترجمه" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "" @@ -27056,7 +27020,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 +27102,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 جدید را امتحان کنید" @@ -27487,8 +27451,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 +27467,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" @@ -27577,7 +27540,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:427 msgid "Update" msgstr "به‌روزرسانی" @@ -27585,7 +27548,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 @@ -27653,7 +27616,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 +27624,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 "به‌روزرسانی به نسخه جدید 🎉" @@ -27834,7 +27797,7 @@ msgstr "استفاده از تابع {0} در فیلد محدود شده است" 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 +27818,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 +27829,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 +27844,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 +27858,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 +27875,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,7 +27909,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 "" @@ -28011,11 +27973,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 +27992,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 +28015,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "مجوزهای کاربر" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "مجوزهای کاربر" @@ -28071,7 +28033,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 +28101,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 +28135,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 +28156,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:1382 msgid "User {0} impersonated as {1}" msgstr "کاربر {0} جعل هویت به عنوان {1}" @@ -28217,7 +28185,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} از قبل وجود دارد" @@ -28301,7 +28269,7 @@ msgstr "" 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 "خطای اعتبارسنجی" @@ -28373,7 +28341,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "مقدار فیلد {0} در {1} خیلی طولانی است. طول باید کمتر از {2} کاراکتر باشد" @@ -28419,7 +28387,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 +28400,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 "" @@ -28494,15 +28462,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:156 msgid "View Doctype Permissions" msgstr "مشاهده مجوزهای Doctype" @@ -28524,7 +28484,7 @@ msgstr "مشاهده لیست" msgid "View Log" msgstr "مشاهده لاگ" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "مشاهده اسناد مجاز" @@ -28571,7 +28531,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 "پاسخ خود را مشاهده کنید" @@ -28648,9 +28608,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}" @@ -28837,7 +28797,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 +28810,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 +28853,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 +29070,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 "شناسه ورود شما خواهد بود" @@ -29211,7 +29162,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 +29188,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 +29200,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,7 +29239,7 @@ 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" @@ -29349,11 +29315,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 "" @@ -29376,7 +29342,7 @@ msgstr "نوشتن" 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,7 +29361,7 @@ 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" @@ -29453,14 +29419,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29537,11 +29504,11 @@ msgstr "شما مجاز به برون‌بُرد {} doctype نیستید" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "شما مجاز به به‌روزرسانی این سند فرم وب نیستید" @@ -29565,7 +29532,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 "شما فقط مجاز به به‌روزرسانی سفارش هستید، برنامه‌ها را حذف یا اضافه نکنید." @@ -29591,13 +29558,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 "می‌توانید اسناد ارسال شده را با لغو آنها و سپس اصلاح آنها تغییر دهید." @@ -29634,7 +29605,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 را آپلود کنید." @@ -29664,11 +29635,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "نمی‌توانید «قابل ترجمه» را برای فیلد {0} تنظیم کنید" @@ -29686,7 +29657,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "نمی‌توانید «فقط خواندن» را برای فیلد {0} لغو تنظیم کنید" @@ -29737,7 +29708,7 @@ msgstr "شما مجوز کافی برای تکمیل عمل را ندارید" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "شما اجازه دسترسی به {0}: {1} را ندارید." @@ -29749,7 +29720,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "شما اجازه دسترسی به {0} DocType را ندارید." @@ -29761,19 +29732,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "شما به محدودیت اندازه ردیف در جدول پایگاه داده رسیده اید: {0}" @@ -29781,11 +29752,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 +29772,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:501 msgid "You haven't created a {0} yet" msgstr "شما هنوز یک {0} ایجاد نکرده‌اید" @@ -29822,11 +29789,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:804 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:645 msgid "You must login to submit this form" msgstr "برای ارسال این فرم باید وارد شوید" @@ -29858,13 +29825,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." @@ -29933,10 +29900,22 @@ msgstr "شما این سند را لغو دنبال کردید" msgid "You viewed this" msgstr "شما این را مشاهده کردید" -#: frappe/public/js/frappe/desk.js:553 +#: 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 شما در حال تولید است و به محض آماده شدن در بخش پیوست‌ها نمایش داده خواهد شد. علاوه بر این، هنگامی که فایل برای دانلود در دسترس قرار گرفت، به شما اطلاع داده خواهد شد." @@ -29990,10 +29969,18 @@ msgstr "درخواست اتصال شما به Google Calendar با موفقیت msgid "Your email address" msgstr "آدرس ایمیل شما" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "شناسه ورود شما است" @@ -30098,7 +30085,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 +30230,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 +30292,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 +30307,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" @@ -30383,11 +30365,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 +30388,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 "جدید" @@ -30599,19 +30576,19 @@ msgstr "اشتراک گذاری" msgid "short" msgstr "کوتاه" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "از ماه گذشته" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "از هفته گذشته" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "از سال قبل" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "از دیروز" @@ -30664,6 +30641,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 +30672,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 +30686,7 @@ msgstr "از طریق درون‌بُرد داده" msgid "via Google Meet" msgstr "از طریق Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "از طریق اطلاع رسانی" @@ -30738,10 +30719,15 @@ msgstr "هنگامی که بر روی عنصر کلیک کنید، در صورت msgid "wkhtmltopdf" msgstr "wkhtmltopdf" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30755,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 +30785,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:486 +#: 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 +30821,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} ماه" @@ -30861,7 +30851,6 @@ msgstr "گزارش {0}" 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 +30875,7 @@ msgstr "{0} محیط کار" msgid "{0} added" msgstr "{0} اضافه شد" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} از قبل وجود دارد. نام دیگری را انتخاب کنید" @@ -30965,11 +30954,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 "" @@ -31036,7 +31021,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,7 +31030,7 @@ 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} یک فیلد اجباری است" @@ -31053,15 +31038,15 @@ msgstr "{0} یک فیلد اجباری است" 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 +31055,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} است" @@ -31122,8 +31107,8 @@ msgstr "{0} یک عبارت Cron معتبر نیست." 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} یک آدرس ایمیل معتبر نیست" @@ -31131,15 +31116,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:174 msgid "{0} is not a valid Name" msgstr "{0} یک نام معتبر نیست" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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} یک وضعیت گردش کار معتبر نیست. لطفاً گردش کار خود را به روز کنید و دوباره امتحان کنید." @@ -31159,19 +31144,23 @@ msgstr "{0} قالب گزارش معتبری نیست. قالب گزارش با 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} تنظیم نشده است" @@ -31179,31 +31168,31 @@ msgstr "{0} تنظیم نشده است" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} مورد نیاز است" -#: 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:1835 msgid "{0} items selected" msgstr "{0} مورد انتخاب شد" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} به عنوان شما جعل شده است. این دلیل را آوردند: {1}" @@ -31236,7 +31225,7 @@ msgstr "{0} دقیقه قبل" msgid "{0} months ago" msgstr "{0} ماه پیش" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} باید بعد از {1} باشد" @@ -31272,7 +31261,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 +31274,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:1211 msgid "{0} of {1}" msgstr "{0} از {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} از {1} ({2} ردیف با فرزندان)" @@ -31335,11 +31324,11 @@ msgstr "{0} تخصیص خود را حذف کرد." 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:1795 +msgid "{0} row #{1}:" +msgstr "{0} ردیف #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} با موفقیت ذخیره شد" @@ -31359,11 +31348,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 +31365,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} مشترک اضافه شد" @@ -31395,7 +31384,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:254 msgid "{0} updated" msgstr "{0} به روز شد" @@ -31439,7 +31428,7 @@ msgstr "{0} {1} از قبل وجود دارد" 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} نمی‌تواند یک گره برگ باشد زیرا دارای فرزندان است" @@ -31471,75 +31460,75 @@ msgstr "" 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: نمی‌توان Amend را بدون لغو تنظیم کرد" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 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:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: در صورتی که قابل ارسال نباشد، نمی‌توان تخصیص ارسال را تنظیم کرد" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: لغو بدون ارسال قابل تنظیم نیست" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "{0}: نمی‌توان Import را بدون ایجاد تنظیم کرد" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: ارسال، لغو، اصلاح بدون نوشتن امکان‌پذیر نیست" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "{0}: هیچ مجوز اولیه تنظیم نشده است" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31536,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:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0}: مجوز در سطح 0 باید قبل از تنظیم سطوح بالاتر تنظیم شود" @@ -31555,7 +31544,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}" @@ -31572,7 +31561,7 @@ msgstr "{0}: {1} روی حالت {2} تنظیم شده است" 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 +31585,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 +31593,11 @@ msgstr "{{{0}}} یک الگوی نام فیلد معتبر نیست. باید {{ msgid "{} Complete" msgstr "{} کامل" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "{} کد پایتون نامعتبر در خط {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
{}" msgstr "{} احتمالاً کد پایتون نامعتبر است.
{}" diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po index 0bd967bb70..d147bf4534 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = Vrai & 0 = Faux" @@ -145,10 +141,6 @@ msgstr "1 événement Google Agenda synchronisé." 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 msgid "1 day ago" msgstr "Il y a 1 jour" @@ -246,6 +238,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 "" @@ -571,7 +570,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 +648,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,10 +657,6 @@ 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" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -679,7 +674,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 +773,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:452 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 +802,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:449 +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 +826,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:459 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 +873,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 @@ -959,7 +976,7 @@ msgstr "Action / Route" msgid "Action Complete" msgstr "Action terminée" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "Échec de l'action" @@ -1068,7 +1085,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:501 #: 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 +1096,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:454 msgid "Add / Remove Columns" msgstr "" @@ -1091,7 +1108,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" @@ -1124,10 +1141,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1203,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 +1236,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:2145 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 "" @@ -1351,7 +1368,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 "" @@ -1459,7 +1476,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" @@ -1486,11 +1503,11 @@ msgstr "Administration" msgid "Administrator" msgstr "Administrateur" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "Administrateur Connecté" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 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 +1528,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" @@ -1667,7 +1684,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 +1744,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 +1765,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 +1813,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 +2046,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 +2054,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}" @@ -2226,10 +2238,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 +2314,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 +2327,7 @@ msgstr "Appliqué sur" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Appliquer la règle d'assignation" @@ -2357,7 +2375,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 +2408,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2418,7 +2440,11 @@ 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 "" @@ -2494,7 +2520,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Attribuer À" @@ -2557,6 +2583,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 +2657,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:696 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." @@ -2740,7 +2777,7 @@ 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" @@ -2771,6 +2808,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 +2829,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 +2943,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 +2955,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 +3008,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 +3056,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 +3070,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 +3341,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 +3459,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 +3490,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 +3586,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,7 +3643,7 @@ msgstr "Suppression en masse" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "Modifier en Masse {0}" @@ -3692,7 +3666,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 +3678,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 +3808,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 +3858,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 @@ -3952,7 +3911,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 "" @@ -3978,12 +3937,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Annuler" @@ -4001,16 +3961,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:2205 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 @@ -4060,7 +4022,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}" @@ -4080,11 +4042,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 "" @@ -4135,7 +4097,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 +4105,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" @@ -4172,7 +4134,7 @@ 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 "" @@ -4184,11 +4146,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4208,7 +4170,7 @@ msgstr "Impossible de faire correspondre la colonne {0} avec un champ" 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 +4178,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 +4195,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:1129 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4351,9 +4313,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 @@ -4422,7 +4384,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 +4417,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 +4425,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}" @@ -4518,7 +4480,7 @@ 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 "" @@ -4571,7 +4533,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 +4545,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:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4609,7 +4571,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,7 +4583,11 @@ 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" @@ -4673,7 +4639,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4851,7 +4817,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Tout réduire" @@ -4962,11 +4928,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -5035,16 +5001,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 +5008,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 +5017,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" @@ -5138,7 +5094,7 @@ msgstr "Nom de la Société" 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 "" @@ -5233,6 +5189,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 +5219,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:406 msgid "Configure Columns" msgstr "Configurer Les Colonnes" @@ -5289,7 +5250,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Confirmer" @@ -5308,7 +5269,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "Confirmer le nouveau mot de passe" @@ -5335,7 +5296,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 "" @@ -5462,7 +5423,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5470,7 +5430,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5478,24 +5437,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" @@ -5571,12 +5518,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "Copier vers le presse-papiers" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "Les DocTypes de base ne peuvent pas être personnalisés." @@ -5584,7 +5535,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:633 msgid "Correct version :" msgstr "" @@ -5605,10 +5556,10 @@ 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" @@ -5745,7 +5696,7 @@ 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:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Créer Nouveau(elle)" @@ -5758,7 +5709,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "Créer un Email Utilisateur" @@ -5770,7 +5721,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,10 +5729,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "Créer un(e) nouveau(elle) {0}" @@ -5798,7 +5749,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:507 msgid "Create your first {0}" msgstr "Créez votre premier {0}" @@ -5824,7 +5775,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 +5787,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}" @@ -6173,14 +6124,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "Personnaliser" @@ -6324,7 +6275,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" @@ -6432,7 +6383,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:615 msgid "Data Too Long" msgstr "Données trop longues" @@ -6463,7 +6414,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6601,11 +6552,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6767,11 +6718,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 "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." @@ -6822,10 +6773,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6833,11 +6784,16 @@ msgstr "Différé" msgid "Delete" msgstr "Supprimer" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6878,7 +6834,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 +6867,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Supprimer {0} éléments de façon permanente?" @@ -6956,6 +6912,10 @@ msgstr "Nom Supprimé" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Supprimé!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "Suppression de {0}" @@ -6971,7 +6931,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 +6948,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -7015,7 +6975,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 +7010,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 +7030,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 +7039,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 +7122,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 +7183,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 +7200,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 +7209,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 +7259,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 +7273,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 +7283,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 +7301,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 +7324,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,16 +7360,16 @@ 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:1194 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" @@ -7517,7 +7463,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 +7510,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 +7523,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 +7556,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 +7570,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,19 +7632,19 @@ 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 "" @@ -7895,7 +7841,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:1955 msgid "Document Unlocked" msgstr "" @@ -7903,15 +7849,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:1300 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:1299 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:1298 msgid "Document is in draft state" msgstr "Document au statut brouillon" @@ -8053,13 +7999,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "Télécharger" @@ -8281,17 +8227,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:1776 #: 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:350 #: 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 +8245,7 @@ msgstr "" msgid "Edit" msgstr "modifier" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "modifier" @@ -8309,7 +8255,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "modifier" @@ -8338,7 +8284,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Modifier le DocType" @@ -8441,7 +8387,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 +8396,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}" @@ -8497,6 +8443,7 @@ 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' @@ -8510,6 +8457,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 @@ -8550,7 +8498,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" @@ -8681,10 +8629,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 +8697,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:278 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é)" @@ -8819,7 +8767,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 +8793,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 +8886,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 +8893,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 +8905,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 +8927,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 +8940,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 +8966,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 +8986,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 +9002,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 +9018,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 +9066,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 +9136,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 +9156,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" @@ -9263,9 +9204,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "Erreur dans la notification" @@ -9285,7 +9226,7 @@ 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:777 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." @@ -9438,7 +9379,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 +9387,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "Temps d'exécution: {0} s" @@ -9472,7 +9413,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Développer Tout" @@ -9505,7 +9446,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 +9476,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exporter" @@ -9576,7 +9519,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Rapport d'Export: {0}" @@ -9585,11 +9528,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 "" @@ -9702,7 +9645,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 +9662,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 "" @@ -9732,7 +9675,7 @@ msgstr "échec de connexion au serveur" 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 "" @@ -9744,8 +9687,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 +9704,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 +9724,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 +9778,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 +9835,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:1870 #: 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 +9858,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 "" @@ -9977,11 +9914,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9999,16 +9936,16 @@ 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:454 #: 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 "" @@ -10032,11 +9969,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Nom du Champ {0} ne peut pas avoir des caractères spéciaux comme {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9996,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 @@ -10108,7 +10045,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:589 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}" @@ -10212,7 +10149,7 @@ msgstr "Fichiers" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10271,7 +10208,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 +10222,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 +10246,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,7 +10263,7 @@ 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}" @@ -10337,18 +10280,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}" @@ -10436,11 +10379,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" @@ -10602,7 +10545,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 +10603,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:2120 +#: 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 +10630,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 +10644,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Pour {0} au niveau {1} dans {2} à la ligne {3}" @@ -10762,7 +10699,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 +10759,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 +10791,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 +10888,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:1831 msgid "From Document Type" msgstr "De type de document" @@ -10965,18 +10915,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" @@ -11075,6 +11023,12 @@ 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 msgid "Generate Tracking URL" @@ -11099,7 +11053,7 @@ msgstr "Géolocalisation" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "Obtenir les Alertes d'Aujourd'hui" @@ -11405,11 +11359,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" @@ -11543,7 +11492,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 @@ -11556,7 +11504,6 @@ msgstr "HH: mm: ss" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11718,6 +11665,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 @@ -11852,11 +11805,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 +11884,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:1845 msgid "Hide Tags" msgstr "" @@ -11950,7 +11898,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 +11947,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 +12036,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12196,7 +12141,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12326,6 +12271,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 +12306,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 +12367,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:1120 msgid "Illegal SQL Query" msgstr "Requête SQL illégale" @@ -12480,11 +12433,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,11 +12459,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12540,7 +12493,7 @@ msgstr "Implicite" msgid "Import" msgstr "Importer" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "Importer" @@ -12835,7 +12788,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" @@ -12859,7 +12812,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 +12887,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:1876 msgid "Insert After" msgstr "Insérer Après" @@ -12950,7 +12903,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 +12921,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12986,7 +12943,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 "" @@ -13015,7 +12972,7 @@ msgstr "" 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 +13076,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:849 +#: 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" @@ -13145,7 +13102,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,7 +13122,11 @@ 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 "" @@ -13206,7 +13167,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 +13176,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" @@ -13232,11 +13193,11 @@ msgstr "Format de Sortie Invalide" 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:1239 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" @@ -13255,7 +13216,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 "" @@ -13278,7 +13239,7 @@ 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 "" @@ -13290,6 +13251,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13306,7 +13271,7 @@ msgstr "" 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" @@ -13342,19 +13307,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "Nom de champ {0} invalide" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Champ invalide '{0}' dans nom automatique" @@ -13382,12 +13343,20 @@ msgstr "" 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 +13364,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" @@ -13407,6 +13380,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13423,7 +13400,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 +13409,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:627 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 +13431,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" @@ -13593,7 +13607,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" @@ -13885,12 +13899,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 @@ -14163,7 +14179,7 @@ msgstr "Paysage" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Langue" @@ -14267,6 +14283,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 +14304,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" @@ -14447,7 +14463,7 @@ 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/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14543,20 +14559,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 +14599,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 +14613,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,6 +14744,10 @@ 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' @@ -14792,7 +14800,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:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Paramètres de liste" @@ -14833,7 +14841,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 +14850,8 @@ msgstr "" msgid "Load Balancing" msgstr "L'équilibrage de charge" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Charger plus" @@ -14861,8 +14868,8 @@ 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 msgid "Loading" @@ -14876,7 +14883,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 +14893,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Chargement en Cours ..." @@ -14947,7 +14954,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é" @@ -15087,7 +15094,7 @@ msgstr "" msgid "Logout" msgstr "Déconnecté" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "Déconnecter toutes les sessions" @@ -15267,7 +15274,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:509 msgid "Mandatory Information missing:" msgstr "Renseignements Obligatoires manquants :" @@ -15287,7 +15294,7 @@ msgstr "Champs Obligatoires Requis dans la table {0}, Ligne {1}" 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 +15375,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 +15457,7 @@ msgstr "" msgid "Max auto email report per user" 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 "Largeur max pour le type Devise est 100px dans la ligne {0}" @@ -15465,16 +15470,11 @@ msgstr "" 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" @@ -15544,7 +15544,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" @@ -15610,7 +15610,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 +15642,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 "" @@ -15799,7 +15791,7 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -16066,7 +16058,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 "" @@ -16140,7 +16132,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." @@ -16181,7 +16173,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:498 #: 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,7 +16211,7 @@ 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/views/file/file_view.js:97 @@ -16235,7 +16227,7 @@ msgstr "" 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 +16239,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 +16278,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 +16315,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:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Naviguer dans la liste en haut" @@ -16343,7 +16335,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16393,10 +16385,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 +16393,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é" @@ -16472,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:190 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 +16474,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 +16492,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 +16550,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:411 msgid "New {0}" msgstr "Nouveau(elle) {0}" @@ -16584,7 +16572,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 +16580,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 +16593,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,12 +16700,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16769,6 +16758,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 +16797,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16813,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:1744 msgid "No Permissions Specified" msgstr "Aucune Autorisation Spécifiée" @@ -16840,11 +16833,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:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "Aucune imprimante n'est disponible." @@ -16860,7 +16853,7 @@ 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 "" @@ -16884,7 +16877,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "Aucune alerte pour aujourd'hui" @@ -16912,19 +16905,15 @@ 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" @@ -16944,6 +16933,10 @@ 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 "" @@ -17016,7 +17009,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:947 msgid "No permission to read {0}" msgstr "Pas d'autorisation pour lire {0}" @@ -17044,7 +17037,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 "" @@ -17068,7 +17061,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17120,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 "Non Autorisé" @@ -17169,18 +17162,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17190,9 +17182,9 @@ msgstr "Non Publié" #: 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/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 +17216,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 +17232,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:637 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,7 +17260,7 @@ 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'." @@ -17277,18 +17269,18 @@ msgstr "Pas en Mode Développeur! Configurez le dans site_config.json ou créez #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17315,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17347,10 +17339,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 +17387,15 @@ msgstr "Document souscrit à la notification" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17455,7 +17446,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,7 +17504,7 @@ 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 "" @@ -17627,11 +17618,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 +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 "" @@ -17835,7 +17826,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:" @@ -17879,7 +17870,7 @@ msgstr "" 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:129 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." @@ -17953,7 +17944,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 +17962,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 +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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Ouvrir un élément de la liste" @@ -17994,13 +17985,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 +18000,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 +18019,7 @@ msgstr "Ouvert" msgid "Operation" msgstr "Opération" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "L'Opérateur doit être parmi {0}" @@ -18050,7 +18045,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" @@ -18082,7 +18077,7 @@ msgstr "Optionel : L'alerte sera envoyée si cette expression est vraie" 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 +18086,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 +18094,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." @@ -18143,8 +18138,8 @@ msgstr "Rubriques Histoire Org" 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 "" @@ -18223,9 +18218,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:1796 msgid "PDF" msgstr "" @@ -18266,11 +18261,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18442,7 +18437,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}" @@ -18486,11 +18481,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 +18494,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 +18568,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18579,7 @@ msgstr "Passif" msgid "Password" msgstr "Mot de Passe" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18597,7 +18592,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18614,6 +18609,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 +18621,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18634,7 +18633,7 @@ msgstr "" 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 +18641,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "Les mots de passe ne correspondent pas!" @@ -18712,10 +18711,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" @@ -18851,16 +18852,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18948,8 +18949,8 @@ 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/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 +19010,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 +19022,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:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "Veuillez demander à votre administrateur de vérifier votre inscription" @@ -19041,10 +19042,6 @@ 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: {}" @@ -19053,7 +19050,7 @@ msgstr "Veuillez vérifier les valeurs de filtre définies pour le tableau de bo msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Veuillez vérifier la valeur de "Extraire depuis" définie pour le champ {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1072 msgid "Please check your email for verification" msgstr "Veuillez vérifier votre email pour validation" @@ -19085,7 +19082,7 @@ msgstr "Veuillez cliquer sur le lien suivant pour définir votre nouveau mot de msgid "Please confirm your action to {0} this document." msgstr "Veuillez confirmer votre action sur {0} ce document." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19115,8 +19112,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19155,7 +19152,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 +19189,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 "" @@ -19208,7 +19206,7 @@ msgstr "Assurez-vous que les documents de communication de référence ne sont p 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:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19224,7 +19222,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:1711 msgid "Please save the report first" msgstr "Veuillez d’abord enregistrer le rapport" @@ -19260,7 +19258,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 +19270,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:1152 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,7 +19296,7 @@ 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:562 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." @@ -19310,7 +19308,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 "" @@ -19346,23 +19344,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 +19381,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 "" @@ -19473,14 +19471,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19496,7 +19486,7 @@ msgstr "" msgid "Precision" msgstr "Précision" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: 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" @@ -19552,7 +19542,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 "" @@ -19587,13 +19577,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 +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 @@ -19639,7 +19622,7 @@ msgstr "Précedent" 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 +19668,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Impression" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impression" @@ -19715,8 +19698,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19823,7 +19806,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19872,11 +19855,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:843 msgid "Printer" msgstr "Imprimante" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "Cartographie d'imprimante" @@ -19886,11 +19869,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:812 msgid "Printer Settings" msgstr "Paramètres de l'imprimante" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19952,7 +19935,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "Continuer malgré tout" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "En traitement" @@ -19978,9 +19961,9 @@ 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é" @@ -20066,24 +20049,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 +20070,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 +20159,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 "" @@ -20204,8 +20174,8 @@ 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:" +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 +20224,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 +20324,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20391,12 +20361,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 @@ -20433,7 +20397,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 +20414,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 +20471,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 +20486,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 "" @@ -20589,7 +20548,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 +20559,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 +20599,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 +20616,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" @@ -20911,15 +20883,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Actualiser" @@ -20944,18 +20916,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:534 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:374 #: 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 +21104,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!" @@ -21335,7 +21307,7 @@ msgstr "Gestionnaire de Rapports" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "Nom du Rapport" @@ -21373,7 +21345,7 @@ msgstr "Vue rapport" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "Le Rapport ne peut pas être défini pour les types Uniques" @@ -21399,20 +21371,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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}" @@ -21435,7 +21407,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" @@ -21565,11 +21537,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "Réinitialiser le mot de passe LDAP" @@ -21577,11 +21549,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:235 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:168 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 +21588,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21654,6 +21626,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 +21636,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 +21694,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 "" @@ -21778,9 +21746,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 +21787,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 +21801,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 @@ -21882,7 +21850,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:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Gestionnaire d’Autorisations du Rôle" @@ -21925,6 +21893,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 +21903,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 +21940,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 +21960,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 +21971,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 @@ -22033,12 +21999,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -22046,7 +22012,7 @@ msgstr "" 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 "" @@ -22074,7 +22040,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,25 +22048,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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" @@ -22196,7 +22162,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 +22240,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 +22268,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22290,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:1735 msgid "Save As" msgstr "Enregistrer Sous" @@ -22341,7 +22303,7 @@ 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:1951 msgid "Save Report" msgstr "Enregistrer le rapport" @@ -22370,7 +22332,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 +22411,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" @@ -22617,7 +22579,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" @@ -22726,7 +22688,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 +22735,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22781,12 +22743,12 @@ 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:497 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" @@ -22797,7 +22759,7 @@ msgstr "Sélectionner Pièces Jointes" 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" @@ -22861,12 +22823,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:489 #: 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" @@ -22912,8 +22877,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:598 msgid "Select Network Printer" msgstr "" @@ -22981,11 +22946,11 @@ msgstr "" msgid "Select a group node first." msgstr "Sélectionner d'abord un niveau parent" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 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 +22980,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Sélectionner plusieurs éléments de liste" @@ -23055,7 +23020,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 +23204,7 @@ msgstr "Email d'expéditeur" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 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 +23298,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}" @@ -23362,7 +23327,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 "" @@ -23467,7 +23432,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:2104 msgid "Set Level" msgstr "" @@ -23521,7 +23486,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:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Définir les Autorisations des Utilisateurs" @@ -23662,14 +23627,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 +23645,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "Configuration Auto Email" @@ -23755,11 +23715,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 +23734,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 +23786,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23964,7 +23914,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:1845 msgid "Show Tags" msgstr "Voir les étiquettes" @@ -23981,7 +23931,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 +23971,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 +24019,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 +24049,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 +24084,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" @@ -24198,7 +24144,7 @@ msgstr "Expression Python simple, Exemple: status == 'Open' et tapez == msgid "Simultaneous Sessions" msgstr "Sessions Simultanées" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "Un seul DocTypes ne peut pas être personnalisé." @@ -24431,11 +24377,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,13 +24412,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24480,6 +24425,10 @@ msgstr "Champ de tri {0} doit être un nom de champ valide" 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 +24455,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" @@ -24567,7 +24522,7 @@ msgstr "" 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\"" @@ -24623,8 +24578,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 +24587,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 @@ -24705,7 +24660,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 +24716,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 +24741,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 +24749,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 +24787,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:454 msgid "Sticky" msgstr "" @@ -24860,6 +24817,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24954,7 +24915,7 @@ msgstr "Sujet" msgid "Subject Field" msgstr "Champ de sujet" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 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" @@ -24979,7 +24940,7 @@ msgstr "" msgid "Submit" msgstr "Valider" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Valider" @@ -24989,7 +24950,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Valider" @@ -25013,7 +24974,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 +24986,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 +24998,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Valider {0} documents ?" @@ -25046,11 +25007,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 +25034,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 +25048,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:1171 #: 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 +25090,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 +25141,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}" @@ -25308,7 +25263,7 @@ msgstr "Synchronisation" msgid "Syncing {0} of {1}" msgstr "Synchroniser {0} sur {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25431,6 +25386,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 +25469,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 +25543,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 +25552,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,7 +25574,7 @@ msgstr "Tableau MultiSelect" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "Table Mise à Jour" @@ -25663,11 +25620,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 +25693,7 @@ msgstr "Avertissements de modèles" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "Temporairement désactivé" @@ -25801,7 +25765,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 +25789,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:1193 msgid "The CSV format is case sensitive" msgstr "Le format CSV est sensible à la casse" @@ -25836,7 +25800,7 @@ 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" @@ -25844,7 +25808,7 @@ msgstr "La Condition '{0}' est invalide" 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 +25849,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 +25857,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25993,11 +25957,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -26034,7 +25998,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}" @@ -26083,7 +26047,7 @@ msgstr "" 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,6 +26059,10 @@ 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 "" @@ -26127,11 +26095,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" @@ -26219,7 +26187,7 @@ 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 "" @@ -26281,7 +26249,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 +26268,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:2180 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 +26292,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 +26310,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:423 msgid "This may get printed on multiple pages" msgstr "Cela peut être imprimé sur plusieurs pages" @@ -26395,7 +26357,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 +26389,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:1253 msgid "Throttled" msgstr "Étranglé" @@ -26579,11 +26541,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" @@ -26632,9 +26594,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 +26618,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 +26640,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" @@ -26835,7 +26791,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 +26807,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Afficher/Cacher la barre latérale" @@ -26901,7 +26857,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 +26873,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:1041 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 +26935,10 @@ msgstr "" msgid "Topic" msgstr "Sujet" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -27025,18 +26981,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" @@ -27135,6 +27091,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 +27110,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:2235 msgid "Translate Data" msgstr "" @@ -27160,7 +27121,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 +27205,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 "" @@ -27591,8 +27552,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 +27568,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 "" @@ -27681,7 +27641,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:427 msgid "Update" msgstr "Mettre à Jour" @@ -27757,7 +27717,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 +27725,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 🎉" @@ -27938,7 +27898,7 @@ msgstr "" 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 +27919,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 +27930,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 +27945,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 +27959,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 +27976,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 +28010,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 +28074,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 +28093,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 +28116,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "Autorisations des Utilisateurs" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Autorisations des Utilisateurs" @@ -28175,7 +28134,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 +28202,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 +28236,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 +28257,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:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28321,7 +28286,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 +28370,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" @@ -28477,7 +28442,7 @@ 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:612 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" @@ -28523,7 +28488,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 +28501,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 +28563,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28628,7 +28585,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:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Afficher les Documents Autorisés" @@ -28675,7 +28632,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 "" @@ -28752,7 +28709,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 "" @@ -28941,7 +28898,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 +28911,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 +28954,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 +29171,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" @@ -29315,7 +29263,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 +29289,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 +29301,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,7 +29340,7 @@ 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" @@ -29453,11 +29416,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 "" @@ -29480,7 +29443,7 @@ msgstr "Écrire" 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,7 +29462,7 @@ 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" @@ -29557,14 +29520,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29641,11 +29605,11 @@ msgstr "Vous n'êtes pas autorisé à exporter {} doctype" msgid "You are not allowed to print this report" msgstr "Vous n'êtes pas autorisé à imprimer ce rapport" -#: frappe/public/js/frappe/views/communication.js: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:605 msgid "You are not allowed to update this Web Form Document" msgstr "Vous n'êtes pas autorisé à mettre à jour ce formulaire Web" @@ -29669,7 +29633,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 +29659,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 "" @@ -29738,7 +29706,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 "" @@ -29768,11 +29736,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "Vous ne pouvez pas définir \"Traduisible\" pour le champ {0}" @@ -29790,7 +29758,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Vous ne pouvez pas désactiver 'Lecture Seule' pour le champ {0}\"" @@ -29841,7 +29809,7 @@ msgstr "Vous ne disposez pas de suffisamment d'autorisations pour compléter l'a msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29853,7 +29821,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29865,19 +29833,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29885,11 +29853,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 +29873,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:501 msgid "You haven't created a {0} yet" msgstr "" @@ -29926,11 +29890,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:804 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:645 msgid "You must login to submit this form" msgstr "Vous devez vous connecter pour valider ce formulaire" @@ -29962,12 +29926,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 @@ -30037,10 +30001,22 @@ msgstr "Vous avez non suivi ce document" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -30094,10 +30070,18 @@ 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/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" @@ -30202,7 +30186,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 +30331,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 +30393,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 +30408,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 "" @@ -30487,11 +30466,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 +30489,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)" @@ -30703,19 +30677,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:301 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:300 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:302 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:299 msgid "since yesterday" msgstr "depuis hier" @@ -30768,6 +30742,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 +30773,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 +30787,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:403 msgid "via Notification" msgstr "via notification" @@ -30842,10 +30820,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30856,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 +30886,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:486 +#: 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 +30922,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 "" @@ -30965,7 +30952,6 @@ msgstr "Rapport {0}" 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 +30976,7 @@ msgstr "" msgid "{0} added" msgstr "{0} ajouté(e)" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: 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" @@ -31069,11 +31055,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 "" @@ -31140,7 +31122,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,7 +31131,7 @@ 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" @@ -31157,15 +31139,15 @@ msgstr "{0} est un champ obligatoire" 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 +31156,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 "" @@ -31226,8 +31208,8 @@ msgstr "{0} n'est pas une expression Cron valide." 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} n’est pas une Adresse Email valide" @@ -31235,15 +31217,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:174 msgid "{0} is not a valid Name" msgstr "{0} n'est pas un nom valide" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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." @@ -31263,19 +31245,23 @@ msgstr "{0} n'est pas un format de rapport valide. Le format du rapport doit 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 "" @@ -31283,31 +31269,31 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} est nécessaire" -#: 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:1835 msgid "{0} items selected" msgstr "{0} articles sélectionnés" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31340,7 +31326,7 @@ 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:1804 msgid "{0} must be after {1}" msgstr "{0} doit être après {1}" @@ -31376,7 +31362,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 +31375,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} sur {1} ({2} lignes avec des enfants)" @@ -31439,11 +31425,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} enregistré avec succès" @@ -31463,11 +31449,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 +31466,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" @@ -31499,7 +31485,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:254 msgid "{0} updated" msgstr "{0} mis(e) à jour" @@ -31543,7 +31529,7 @@ msgstr "{0} {1} existe déjà" 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" @@ -31575,75 +31561,75 @@ msgstr "" 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:1801 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:1819 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:1817 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:1796 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:1803 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:1799 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:1823 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:1756 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:1770 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 +31637,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:1785 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 +31645,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 "" @@ -31676,7 +31662,7 @@ msgstr "{0}: {1} est passé au statut {2}" 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 +31686,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 +31694,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:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
{}" msgstr "" diff --git a/frappe/locale/hr.po b/frappe/locale/hr.po index c2b6fa5778..0d7e6c0bff 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = Točno & 0 = Netočno" @@ -145,10 +141,6 @@ msgstr "Sinkroniziran je 1 događaj Google Kalendara." 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 msgid "1 day ago" msgstr "prije 1 dan" @@ -246,6 +238,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" @@ -640,7 +641,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 +731,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,10 +740,6 @@ 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" - #: 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}" @@ -760,7 +757,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 +858,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:452 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 +887,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:449 +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 +911,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:459 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 +958,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 @@ -1042,7 +1061,7 @@ msgstr "Radnja / Ruta" msgid "Action Complete" msgstr "Radnja Završena" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "Radnja Neuspješna" @@ -1151,7 +1170,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:501 #: 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 +1181,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:454 msgid "Add / Remove Columns" msgstr "Dodaj/Ukloni Stupce" @@ -1174,7 +1193,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" @@ -1207,10 +1226,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1288,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 +1321,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:2145 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" @@ -1434,7 +1453,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}" @@ -1542,7 +1561,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" @@ -1569,11 +1588,11 @@ msgstr "Administracija" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "Administrator je prijavljen" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator je pristupio {0} {1} putem IP adrese {2}." @@ -1594,8 +1613,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" @@ -1750,7 +1769,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 +1829,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 +1850,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 +1898,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 +2131,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 +2139,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}" @@ -2309,10 +2323,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 +2399,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 +2412,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:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Primijeni Pravilo Dodjele" @@ -2440,7 +2460,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 +2493,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "Jeste li sigurni da želite izbrisati zadatke?" @@ -2501,7 +2525,11 @@ 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?" @@ -2577,7 +2605,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Dodijeli" @@ -2640,6 +2668,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 +2742,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:696 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." @@ -2823,7 +2862,7 @@ 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" @@ -2854,6 +2893,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 +2914,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 +3028,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 +3040,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 +3093,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 +3141,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 +3155,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 +3426,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 +3544,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 +3575,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 +3671,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,7 +3728,7 @@ 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:1189 msgid "Bulk Edit {0}" msgstr "Grupno uređivanje {0}" @@ -3775,7 +3751,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 +3763,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 +3893,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 +3943,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 @@ -4035,7 +3996,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" @@ -4061,12 +4022,13 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji." #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4084,16 +4046,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:2205 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 @@ -4143,7 +4107,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}" @@ -4163,11 +4127,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" @@ -4218,7 +4182,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 +4190,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" @@ -4255,7 +4219,7 @@ 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" @@ -4267,11 +4231,11 @@ msgstr "Nije moguće pronaći datoteku {} na disku" 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:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "Nije moguće uvesti tablicu s više od 5000 redaka." @@ -4291,7 +4255,7 @@ msgstr "Nije moguće uskladiti kolonu {0} ni sa jednim poljem" 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 +4263,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 +4280,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:1129 +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:1157 msgid "Cannot use {0} in order/group by" msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po" @@ -4434,9 +4398,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 +4469,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 +4502,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 +4510,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}" @@ -4601,7 +4565,7 @@ 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}" @@ -4654,7 +4618,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 +4630,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:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Obriši Dodjelu" @@ -4692,7 +4656,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,7 +4668,11 @@ 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" @@ -4756,7 +4724,7 @@ msgstr "Klikni da Postavite Dinamičke Filtere" 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:739 msgid "Click to sort by {0}" msgstr "Klikni da sortirate po {0}" @@ -4934,7 +4902,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Sklopi Sve" @@ -5045,11 +5013,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:454 msgid "Column Width" msgstr "Širina Kolone" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "Širina kolone ne može biti nula." @@ -5118,16 +5086,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 +5093,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 +5102,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" @@ -5221,7 +5179,7 @@ msgstr "Naziv Kompanije" 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" @@ -5316,6 +5274,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 +5304,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:406 msgid "Configure Columns" msgstr "Konfiguriši Kolone" @@ -5372,7 +5335,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Potvrdi" @@ -5391,7 +5354,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:196 msgid "Confirm New Password" msgstr "Potvrdi Novu Lozinku" @@ -5418,7 +5381,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 {}" @@ -5545,7 +5508,6 @@ msgstr "Sadrži {0} sigurnosne ispravke" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5553,7 +5515,6 @@ msgstr "Sadrži {0} sigurnosne ispravke" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5561,24 +5522,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" @@ -5654,12 +5603,16 @@ msgstr "Greška pri kopiranju u međuspremnik" msgid "Copy to Clipboard" msgstr "Kopiraj u Međuspremnik" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "Osnovni DocTypes se ne mogu prilagoditi." @@ -5667,7 +5620,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:633 msgid "Correct version :" msgstr "Ispravna verzija:" @@ -5688,10 +5641,10 @@ 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" @@ -5760,7 +5713,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' @@ -5828,7 +5781,7 @@ 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:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Kreiraj" @@ -5841,7 +5794,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:276 msgid "Create User Email" msgstr "Kreiraj Korisničku e-poštu" @@ -5853,7 +5806,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,10 +5814,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "+ {0}" @@ -5881,7 +5834,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:507 msgid "Create your first {0}" msgstr "+ {0}" @@ -5907,7 +5860,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 +5872,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}" @@ -6256,14 +6209,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "Prilagodi" @@ -6407,7 +6360,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" @@ -6515,7 +6468,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:615 msgid "Data Too Long" msgstr "Predugi Podaci" @@ -6546,7 +6499,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:249 msgid "Database Table Row Size Limit" msgstr "Ograničenje Veličine Reda Tabele Baze Podataka" @@ -6684,11 +6637,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "Decimalni Razdjelnik mora biti jedan znak" @@ -6850,11 +6803,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." @@ -6905,10 +6858,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6916,11 +6869,16 @@ msgstr "Odgođeno" msgid "Delete" msgstr "Izbriši" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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" @@ -6961,7 +6919,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 +6952,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Trajno izbriši {0} stavke?" @@ -7039,6 +6997,10 @@ msgstr "Izbrisano Ime" msgid "Deleted all documents successfully" msgstr "Svi dokumenti su uspješno izbrisani" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Izbrisano!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "Brisanje {0} u toku" @@ -7054,8 +7016,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 +7033,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:301 msgid "Delimiter must be a single character" msgstr "Razdjelnik mora biti jedan znak" @@ -7098,7 +7060,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 +7095,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 +7115,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 +7124,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 +7207,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 +7268,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 +7285,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 +7294,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 +7344,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 +7358,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 +7368,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 +7386,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 +7409,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,16 +7445,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "Ne uređiuji zaglavlja koja su unaprijed postavljena u šablonu" @@ -7603,7 +7551,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 +7598,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 +7611,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 +7644,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 +7658,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,19 +7720,19 @@ 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" @@ -7981,7 +7929,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:1955 msgid "Document Unlocked" msgstr "Dokument Otključan" @@ -7989,15 +7937,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:1300 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:1299 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:1298 msgid "Document is in draft state" msgstr "Dokument je u stanju nacrta" @@ -8139,13 +8087,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "Preuzmi" @@ -8201,7 +8149,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 @@ -8367,17 +8315,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:1776 #: 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:350 #: 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 +8333,7 @@ msgstr "ESC" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Uredi" @@ -8395,7 +8343,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "Uredi" @@ -8424,7 +8372,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Uredi DocType" @@ -8527,7 +8475,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 +8484,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}" @@ -8583,6 +8531,7 @@ 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' @@ -8596,6 +8545,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 @@ -8636,7 +8586,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" @@ -8767,10 +8717,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 +8785,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:278 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)" @@ -8905,7 +8855,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 +8881,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 +8974,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 +8981,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 +8993,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 +9016,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 +9029,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 +9055,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 +9075,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 +9091,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 +9107,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 +9155,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 +9225,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 +9245,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" @@ -9350,9 +9293,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "Greška u Obavještenju" @@ -9372,7 +9315,7 @@ 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:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Greška prilikom evaluacije Obavještenja {0}. Popravite vaš šablon." @@ -9525,7 +9468,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 +9476,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:2123 msgid "Execution Time: {0} sec" msgstr "Vrijeme izvršenja: {0} sek" @@ -9559,7 +9502,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Rasklopi Sve" @@ -9592,7 +9535,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 +9565,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Izvezi" @@ -9663,7 +9608,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Eksportiraj Izvještaj: {0}" @@ -9672,11 +9617,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?" @@ -9789,7 +9734,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 +9751,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: {}" @@ -9819,7 +9764,7 @@ msgstr "Povezivanje sa serverom nije uspjelo" 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" @@ -9831,8 +9776,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 +9793,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 +9813,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 +9867,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 +9924,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:1870 #: 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 +9947,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" @@ -10064,11 +10003,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:545 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,16 +10025,16 @@ 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:454 #: 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" @@ -10119,11 +10058,11 @@ msgstr "Ime polja {0} pojavljuje se više puta" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +10085,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 @@ -10195,7 +10134,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:589 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}" @@ -10299,7 +10238,7 @@ msgstr "Datoteke" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10358,7 +10297,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 +10311,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 +10335,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,7 +10352,7 @@ 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}" @@ -10424,18 +10369,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}" @@ -10523,11 +10468,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" @@ -10689,7 +10634,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 +10693,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:2120 +#: 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 +10720,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 +10734,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Za {0} na nivou {1} u {2} u redu {3}" @@ -10850,7 +10789,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 +10849,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 +10881,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 +10978,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:1831 msgid "From Document Type" msgstr "Od Dokumenta" @@ -11053,18 +11005,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" @@ -11163,6 +11113,12 @@ 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 msgid "Generate Tracking URL" @@ -11187,7 +11143,7 @@ msgstr "Geolokacija" msgid "Geolocation Settings" msgstr "Geolokacijske Postavke" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "Preuzmi Današnja Upozorenja" @@ -11493,11 +11449,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" @@ -11631,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 @@ -11644,7 +11594,6 @@ msgstr "HH:mm:ss" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11806,6 +11755,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 @@ -11940,11 +11895,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 +11974,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:1845 msgid "Hide Tags" msgstr "Sakrij Oznake" @@ -12038,7 +11988,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 +12037,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 +12126,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12284,7 +12231,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12414,6 +12361,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 +12396,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 +12457,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:1120 msgid "Illegal SQL Query" msgstr "Ilegalan SQL Upit" @@ -12568,11 +12523,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,11 +12549,11 @@ 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:384 msgid "Impersonate" msgstr "Oponašaj" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "Oponašaj {0}" @@ -12628,7 +12583,7 @@ msgstr "Implicitno" msgid "Import" msgstr "Uvezi" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "Uvezi" @@ -12923,7 +12878,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" @@ -12947,7 +12902,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 +12977,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:1876 msgid "Insert After" msgstr "Umetni Poslije" @@ -13038,7 +12993,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 +13011,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "Instaliraj {0} sa Marketplace" @@ -13074,7 +13033,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" @@ -13103,7 +13062,7 @@ msgstr "Nedovoljne dozvole za brisanje izvještaja" 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 +13166,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:849 +#: 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\"" @@ -13233,7 +13192,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,7 +13212,11 @@ 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" @@ -13294,7 +13257,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 +13266,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" @@ -13320,11 +13283,11 @@ msgstr "Nevažeći Izlazni Format" 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:1239 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" @@ -13343,7 +13306,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" @@ -13366,7 +13329,7 @@ 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" @@ -13378,6 +13341,10 @@ msgstr "Nevažeća agregatna funkcija" msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator." +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Nevažeća aplikacija" + #: frappe/database/query.py:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Nevažeći format argumenta: {0}. Dopušteni su samo navodni znakovni literali ili jednostavna imena polja." @@ -13394,7 +13361,7 @@ msgstr "Nevažeći znakovi u nazivu polja: {0}. Dopušteni su samo slova, brojev 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" @@ -13430,19 +13397,15 @@ msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field' 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:2199 msgid "Invalid field name {0}" msgstr "Nevažeći naziv polja {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "Nevažeći naziv polja: {0}" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "Nevažeći tip polja: {0}" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu" @@ -13470,12 +13433,20 @@ msgstr "Nevažeći tip argumenta funkcije: {0}. Dozvoljeni su samo nizovi, broje 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 +13454,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" @@ -13495,6 +13470,10 @@ msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}" msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahtjeva" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "Nevažeća uloga" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "Nevažeći format jednostavnog filtra: {0}" @@ -13511,7 +13490,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 +13499,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:627 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 +13521,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" @@ -13681,7 +13697,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" @@ -13973,12 +13989,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 @@ -14251,7 +14269,7 @@ msgstr "Pejzaž" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Jezik" @@ -14355,6 +14373,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 +14394,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" @@ -14535,7 +14553,7 @@ msgstr "Pismo" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14631,20 +14649,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 +14689,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 +14703,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,6 +14834,10 @@ 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' @@ -14880,7 +14890,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:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Postavke Liste" @@ -14921,7 +14931,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 +14940,8 @@ msgstr "Liste" msgid "Load Balancing" msgstr "Balansiranje Opterećenja" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Učitaj Još" @@ -14949,8 +14958,8 @@ 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 msgid "Loading" @@ -14964,7 +14973,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 +14983,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Učitavanje u toku..." @@ -15035,7 +15044,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" @@ -15175,7 +15184,7 @@ msgstr "URI Logotipa" msgid "Logout" msgstr "Odjava" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "Odjava sa Svih Sesija" @@ -15355,7 +15364,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:509 msgid "Mandatory Information missing:" msgstr "Nedostaju obavezne informacije:" @@ -15375,7 +15384,7 @@ msgstr "Obavezna polja u tabeli {0}, red {1}" 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 +15465,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 +15547,7 @@ 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 +#: 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}" @@ -15553,16 +15560,11 @@ msgstr "Maksimum" 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" @@ -15632,7 +15634,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" @@ -15698,7 +15700,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 +15732,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" @@ -15887,7 +15881,7 @@ 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" @@ -16154,7 +16148,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." @@ -16228,7 +16222,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." @@ -16269,7 +16263,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:498 #: 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,7 +16301,7 @@ 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/views/file/file_view.js:97 @@ -16323,7 +16317,7 @@ msgstr "Naziv (Naziv dokumenta)" 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 +16329,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 +16370,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 +16407,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:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Kreći se po listi prema gore" @@ -16433,7 +16427,7 @@ msgstr "Idi na glavni sadržaj" msgid "Navigation Settings" msgstr "Postavke Navigacije" -#: 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 "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika" @@ -16483,10 +16477,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 +16485,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" @@ -16562,12 +16552,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:190 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 +16566,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 +16584,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 +16644,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:411 msgid "New {0}" msgstr "Novi {0}" @@ -16676,7 +16666,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 +16674,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 +16687,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,12 +16794,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16861,6 +16852,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 +16891,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16907,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:1744 msgid "No Permissions Specified" msgstr "Nema Navedenih Dozvola" @@ -16932,11 +16927,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:720 msgid "No Preview Available" msgstr "Pregled nije Dostupan" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "Nijedan Pisač nije Dostupan." @@ -16952,7 +16947,7 @@ 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" @@ -16976,7 +16971,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:232 msgid "No alerts for today" msgstr "Nema upozorenja za danas" @@ -17004,19 +16999,15 @@ 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" @@ -17036,6 +17027,10 @@ 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" @@ -17108,7 +17103,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:947 msgid "No permission to read {0}" msgstr "Nema dozvole za čitanje {0}" @@ -17136,7 +17131,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" @@ -17160,7 +17155,7 @@ msgstr "Nije pronađeno {0}" 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:497 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}." @@ -17212,7 +17207,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" @@ -17261,18 +17256,17 @@ msgstr "Nemože se Nulirati" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17282,9 +17276,9 @@ msgstr "Nije Objavljeno" #: 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/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 +17310,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 +17326,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:637 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,7 +17354,7 @@ 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." @@ -17369,18 +17363,18 @@ msgstr "Nije u načinu rada za programere! Postavi u site_config.json ili naprav #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17409,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:399 msgid "Note: This will be shared with user." msgstr "Napomena: Ovo će biti podijeljeno s korisnikom." @@ -17439,10 +17433,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 +17481,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:542 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:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "Obavještenje: korisnik {0} nema postavljen broj mobilnog telefona" @@ -17547,7 +17540,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,7 +17598,7 @@ 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 {}." @@ -17719,11 +17712,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 +17835,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:" @@ -17927,7 +17920,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:" @@ -17971,7 +17964,7 @@ msgstr "Mogu se izbrisati samo izvještaji tipa Konstruktor Izvještaja" 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:129 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." @@ -18045,7 +18038,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 +18056,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 +18064,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Otvorite stavku liste" @@ -18086,13 +18079,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 +18094,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 +18113,7 @@ msgstr "Otvoreno" msgid "Operation" msgstr "Operacija" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "Operator mora biti jedan od {0}" @@ -18142,7 +18139,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" @@ -18174,7 +18171,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan" 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 +18180,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 +18188,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." @@ -18235,8 +18232,8 @@ msgstr "Naslov Povijesti Organizacije" 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" @@ -18315,9 +18312,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:1796 msgid "PDF" msgstr "PDF" @@ -18358,11 +18355,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:629 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:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "PDF ispis putem \"Direktnog Ispisa\" nije podržano." @@ -18534,7 +18531,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}" @@ -18578,11 +18575,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 +18588,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 +18662,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18673,7 @@ msgstr "Pasivno" msgid "Password" msgstr "Lozinka" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "E-pošta s lozinkom poslana" @@ -18689,7 +18686,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:896 msgid "Password cannot be filtered" msgstr "Lozinka se ne može filtrirati" @@ -18706,6 +18703,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 +18715,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:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}" @@ -18726,7 +18727,7 @@ msgstr "Lozinka postavljena" msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu" -#: frappe/core/doctype/user/user.py: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 +18735,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:210 msgid "Passwords do not match!" msgstr "Lozinke se ne podudaraju!" @@ -18804,10 +18805,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" @@ -18943,16 +18946,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "Greška Dozvola" @@ -19040,8 +19043,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Odaberi Kolone" @@ -19101,11 +19104,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 +19116,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:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "Zamoli administratora da potvrdi vašu registraciju" @@ -19133,10 +19136,6 @@ 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: {}" @@ -19145,7 +19144,7 @@ msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1072 msgid "Please check your email for verification" msgstr "Provjeri e-poštu za potvrdu" @@ -19177,7 +19176,7 @@ msgstr "Klikni na sljedeću vezu da postavite novu lozinku" msgid "Please confirm your action to {0} this document." msgstr "Potvrdi akciju {0} ovog dokumenta." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "Kontaktiraj Upravitelja Sistema da instalira ispravnu verziju." @@ -19207,8 +19206,8 @@ msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19247,7 +19246,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 +19283,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." @@ -19300,7 +19300,7 @@ msgstr "Provjeri da su Referentni Dokumenti Konverzacije kružno povezani." 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:548 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 +19316,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:1711 msgid "Please save the report first" msgstr "Prvo spremi izvještaj" @@ -19352,7 +19352,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 +19364,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:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje" @@ -19390,7 +19390,7 @@ 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:562 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" @@ -19402,7 +19402,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" @@ -19438,23 +19438,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 +19475,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." @@ -19565,14 +19565,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potencijalno opasan sadržaj u nizu literala: {0}" @@ -19588,7 +19580,7 @@ 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:1401 msgid "Precision should be between 1 and 6" msgstr "Preciznost bi trebala biti između 1 i 6" @@ -19644,7 +19636,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" @@ -19679,13 +19671,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 +19699,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 @@ -19731,7 +19716,7 @@ msgstr "Prethodna" 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 +19762,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Ispiši" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Ispiši" @@ -19807,8 +19792,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19915,7 +19900,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19964,11 +19949,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:843 msgid "Printer" msgstr "Pisač" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "Mapiranje Pisača" @@ -19978,11 +19963,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:812 msgid "Printer Settings" msgstr "Postavke Pisača" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "Mapiranje pisača nije postavljeno." @@ -20044,7 +20029,7 @@ msgstr "Nastavi" msgid "Proceed Anyway" msgstr "Svejedno Nastavi" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "Obrađuje se" @@ -20070,9 +20055,9 @@ 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" @@ -20158,24 +20143,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 +20164,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 +20253,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" @@ -20296,8 +20268,8 @@ 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: " +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 +20318,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 +20418,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:309 msgid "Quoting must be between 0 and 3" msgstr "Ponuda mora biti između 0 i 3" @@ -20483,12 +20455,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 @@ -20525,7 +20491,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 +20508,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 +20565,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 +20580,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" @@ -20681,7 +20642,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 +20653,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 +20693,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 +20710,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" @@ -21003,15 +20977,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Osvježi" @@ -21036,18 +21010,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:534 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:374 #: 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 +21198,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!" @@ -21427,7 +21401,7 @@ msgstr "Upravitelj izvještaja" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "Naziv Izvještaja" @@ -21465,7 +21439,7 @@ msgstr "Pregled iIvještaja" msgid "Report bug" msgstr "Prijavi Grešku" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "Izvještaj se ne može postaviti za Singl tipove" @@ -21491,20 +21465,20 @@ 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:615 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:1994 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}" @@ -21527,7 +21501,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" @@ -21657,11 +21631,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "Poništi LDAP Lozinku" @@ -21669,11 +21643,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:235 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:168 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 +21682,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:433 msgid "Reset to default" msgstr "Vrati na Standard" @@ -21746,6 +21720,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 +21730,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 +21788,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" @@ -21870,9 +21840,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 +21881,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 +21895,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 @@ -21974,7 +21944,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:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" @@ -22017,6 +21987,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 +21997,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 +22034,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 +22054,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 +22065,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 @@ -22125,12 +22093,12 @@ msgstr "Ruta: Primjer \"/app\"" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 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" @@ -22138,7 +22106,7 @@ msgstr "Red # {0}: korisnik koji nije administrator ne može postaviti ulogu {1} 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" @@ -22166,7 +22134,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,25 +22142,25 @@ 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:353 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:342 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" @@ -22288,7 +22256,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 +22334,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 +22362,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22384,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:1735 msgid "Save As" msgstr "Spremi Kao" @@ -22433,7 +22397,7 @@ 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:1951 msgid "Save Report" msgstr "Spremi Izvještaj" @@ -22462,7 +22426,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 +22505,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" @@ -22709,7 +22673,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" @@ -22818,7 +22782,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 +22829,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22873,12 +22837,12 @@ 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:497 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" @@ -22889,7 +22853,7 @@ msgstr "Odaberi Priloge" 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" @@ -22953,12 +22917,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:489 #: 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" @@ -23004,8 +22971,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:598 msgid "Select Network Printer" msgstr "Odaberi Mrežni Pisač" @@ -23073,11 +23040,11 @@ msgstr "Odaberi polje da biste uredili njegova svojstva." msgid "Select a group node first." msgstr "Odaberi Grupu." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 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 +23074,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Odaberi artikle više listi" @@ -23147,7 +23114,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 +23298,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:1946 msgid "Sender Field should have Email in options" msgstr "Polje Pošiljatelja treba da ima opciju E-pošta" @@ -23425,7 +23392,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}" @@ -23454,7 +23421,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." @@ -23559,7 +23526,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:2104 msgid "Set Level" msgstr "Postavi Nivo" @@ -23613,7 +23580,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:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Postavi Korisničke Dozvole" @@ -23778,14 +23745,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 +23763,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "Postavljanje Automatske e-pošte" @@ -23871,11 +23833,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 +23852,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 +23904,7 @@ msgstr "Prikaži Dokument" msgid "Show Error" msgstr "Prikaži Grešku" -#: frappe/public/js/frappe/form/layout.js:579 +#: 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 +24032,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:1845 msgid "Show Tags" msgstr "Prikaži Oznake" @@ -24097,7 +24049,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 +24089,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 +24137,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 +24167,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 +24202,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" @@ -24314,7 +24262,7 @@ msgstr "Jednostavan Python izraz, primjer: status == 'Otvoren' i tip == 'Bug'" msgid "Simultaneous Sessions" msgstr "Simultane Sesije" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "Pojedinačni DocTypes se ne mogu prilagoditi." @@ -24547,11 +24495,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,13 +24530,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24596,6 +24543,10 @@ msgstr "Polje sortiranja {0} mora biti važeći naziv polja" 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 +24573,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" @@ -24683,7 +24640,7 @@ msgstr "Standard" 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" @@ -24739,8 +24696,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 +24705,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 @@ -24821,7 +24778,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 +24834,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 +24859,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 +24867,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 +24905,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:454 msgid "Sticky" msgstr "Sticky" @@ -24976,6 +24935,10 @@ msgstr "Korištenje Pohrane po Tabelama" msgid "Store Attached PDF Document" msgstr "Pohrani priloženi PDF dokument" +#: frappe/core/doctype/user/user.js:490 +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." @@ -25070,7 +25033,7 @@ msgstr "Predmet" msgid "Subject Field" msgstr "Polje Predmeta" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 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" @@ -25095,7 +25058,7 @@ msgstr "Red Podnošenja" msgid "Submit" msgstr "Rezerviši" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Rezerviši" @@ -25105,7 +25068,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Pošalji" @@ -25129,7 +25092,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 +25104,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 +25116,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Pošalji {0} dokumenata?" @@ -25162,11 +25125,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 +25152,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 +25166,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:1171 #: 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 +25208,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 +25259,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 +25381,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:2531 msgid "Syntax Error" msgstr "Greška Sintakse" @@ -25547,6 +25504,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 +25587,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 +25661,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 +25670,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,7 +25692,7 @@ 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:1170 msgid "Table updated" msgstr "Tabela Ažurirana" @@ -25779,11 +25738,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 +25811,7 @@ msgstr "Šablon Upozorenja" msgid "Templates" msgstr "Šabloni" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "Privremeno Onemogućeno" @@ -25919,7 +25885,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 +25909,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:1193 msgid "The CSV format is case sensitive" msgstr "CSV format razlikuje velika i mala slova" @@ -25956,7 +25922,7 @@ 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" @@ -25964,7 +25930,7 @@ msgstr "Uvjet '{0}' je nevažeći" 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 +25973,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 +25981,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:685 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." @@ -26117,11 +26083,11 @@ msgstr "Broj projekta dobijen od Google Cloud Console pod " -#: frappe/core/doctype/user/user.py:993 +#: 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" @@ -26158,7 +26124,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}" @@ -26207,7 +26173,7 @@ msgstr "U redu čekanja već postoji {0} s istim filterima:" msgid "There can be only 9 Page Break fields in a Web Form" msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice" -#: frappe/core/doctype/doctype/doctype.py: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,6 +26185,10 @@ 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." @@ -26251,11 +26221,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" @@ -26343,7 +26313,7 @@ msgstr "Ovaj grafikon će biti dostupan svim korisnicima ako je ovo postavljeno" msgid "This doctype has no orphan fields to trim" msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje" -#: frappe/core/doctype/doctype/doctype.py: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." @@ -26409,7 +26379,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 +26398,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:2180 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 +26422,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 +26440,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:423 msgid "This may get printed on multiple pages" msgstr "Ovo se može ispisati na više stranica" @@ -26523,8 +26487,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 +26519,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:1253 msgid "Throttled" msgstr "Prigušeno" @@ -26707,11 +26671,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" @@ -26760,9 +26724,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 +26748,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 +26770,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" @@ -26967,7 +26925,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 +26941,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" @@ -27033,7 +26991,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 +27007,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:1041 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 +27069,10 @@ msgstr "Vrh Desno" msgid "Topic" msgstr "Tema" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "Ukupno" @@ -27157,18 +27115,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" @@ -27269,6 +27227,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 +27246,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:2235 msgid "Translate Data" msgstr "Prevedi Podatke" @@ -27294,7 +27257,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 +27341,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" @@ -27728,8 +27691,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 +27707,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" @@ -27818,7 +27780,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:427 msgid "Update" msgstr "Ažuriraj" @@ -27894,7 +27856,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 +27864,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 🎉" @@ -28075,7 +28037,7 @@ msgstr "Korištenje funkcije {0} u polju je ograničena" 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 +28058,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 +28069,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 +28084,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 +28098,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 +28115,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 +28149,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 +28213,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 +28232,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 +28255,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "Korisničke Dozvole" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Korisničke Dozvole" @@ -28312,7 +28273,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 +28341,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 +28375,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 +28396,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:1382 msgid "User {0} impersonated as {1}" msgstr "Korisnik {0} predstavljen kao {1}" @@ -28458,7 +28425,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 +28509,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" @@ -28614,7 +28581,7 @@ 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:612 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" @@ -28660,7 +28627,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 +28640,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 +28702,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:156 msgid "View Doctype Permissions" msgstr "Prikaz Doctype Dozvola" @@ -28765,7 +28724,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:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Prikaži Dozvoljene Dokumente" @@ -28812,7 +28771,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" @@ -28889,7 +28848,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" @@ -29078,7 +29037,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 +29050,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 +29093,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 +29310,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" @@ -29452,7 +29402,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 +29428,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 +29440,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,7 +29479,7 @@ 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" @@ -29590,11 +29555,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." @@ -29617,7 +29582,7 @@ msgstr "Piši" 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,7 +29601,7 @@ 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" @@ -29694,14 +29659,15 @@ 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/website/doctype/help_article/templates/help_article.html:25 @@ -29778,11 +29744,11 @@ msgstr "Nije vam dozvoljeno da izvezete {} doctype" msgid "You are not allowed to print this report" msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj" -#: frappe/public/js/frappe/views/communication.js: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:605 msgid "You are not allowed to update this Web Form Document" msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme" @@ -29806,7 +29772,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 +29798,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." @@ -29875,7 +29845,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." @@ -29905,11 +29875,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "Ne možete postaviti 'Prevodivo' za polje {0}" @@ -29927,7 +29897,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}" @@ -29978,7 +29948,7 @@ msgstr "Nemate dovoljno dozvola da dovršite radnju" 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:878 msgid "You do not have permission to access {0}: {1}." msgstr "Nemate dozvolu za pristup {0}: {1}." @@ -29990,7 +29960,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "Nemate dozvolu za pristup {0} DocType." @@ -30002,19 +29972,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:245 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 +29992,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 +30012,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:501 msgid "You haven't created a {0} yet" msgstr "{0} nema u sistemu" @@ -30063,11 +30029,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:804 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:645 msgid "You must login to submit this form" msgstr "Morate se prijaviti da pošaljete ovu formu" @@ -30099,13 +30065,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." @@ -30174,10 +30140,22 @@ msgstr "Prestali ste pratiti ovaj dokument" msgid "You viewed this" msgstr "Prikazali ste ovo" -#: frappe/public/js/frappe/desk.js:553 +#: 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." @@ -30231,10 +30209,18 @@ 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/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" @@ -30339,7 +30325,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 +30470,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 +30532,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 +30547,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" @@ -30624,11 +30605,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 +30628,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" @@ -30840,19 +30816,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:301 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:300 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:302 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:299 msgid "since yesterday" msgstr "od jučer" @@ -30905,6 +30881,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 +30912,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 +30926,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:403 msgid "via Notification" msgstr "putem Obavijesti" @@ -30979,10 +30959,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:635 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 +30995,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 +31025,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:486 +#: 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 +31061,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" @@ -31102,7 +31091,6 @@ msgstr "{0} Izvještaj" 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 +31115,7 @@ msgstr "{0} Radni Prostor" msgid "{0} added" msgstr "{0} dodano" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} već postoji. Odaberite drugo ime" @@ -31206,11 +31194,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." @@ -31277,7 +31261,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,7 +31270,7 @@ 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" @@ -31294,15 +31278,15 @@ msgstr "{0} je obavezno polje" msgid "{0} is a not a valid zip file" msgstr "{0} nije važeća zip datoteka" -#: frappe/core/doctype/doctype/doctype.py: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 +31295,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}" @@ -31363,8 +31347,8 @@ msgstr "{0} nije važeći Cron izraz." 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} nije važeća adresa e-pošte" @@ -31372,15 +31356,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:174 msgid "{0} is not a valid Name" msgstr "{0} nije važeće Ime" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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." @@ -31400,19 +31384,23 @@ msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti 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" @@ -31420,31 +31408,31 @@ msgstr "{0} nije postavljeno" msgid "{0} is now default print format for {1} doctype" msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta" -#: frappe/public/js/frappe/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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} je obavezan" -#: 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:1835 msgid "{0} items selected" msgstr "{0} artikala odabrano" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}" @@ -31477,7 +31465,7 @@ msgstr "prije {0} minuta" msgid "{0} months ago" msgstr "{0} mjeseci prije" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} mora biti iza {1}" @@ -31513,7 +31501,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 +31514,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} od {1} ({2} redovi sa potomcima)" @@ -31576,11 +31564,11 @@ msgstr "{0} je uklonio(la) svoju dodjelu." msgid "{0} role does not have permission on any doctype" msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} red #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "{0} red #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} uspješno spremljen" @@ -31600,11 +31588,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 +31605,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" @@ -31636,7 +31624,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:254 msgid "{0} updated" msgstr "{0} ažurirano" @@ -31680,7 +31668,7 @@ msgstr "{0} {1} već postoji" 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" @@ -31712,75 +31700,75 @@ msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom do završetka." 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:1801 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:1819 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:1817 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:1796 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:1803 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:1799 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:1823 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:1756 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:1770 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 +31776,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:1785 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 +31784,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}" @@ -31813,7 +31801,7 @@ msgstr "{0}: {1} je postavljeno na stanje {2}" 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 +31825,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 +31833,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:2525 msgid "{} Invalid python code on line {}" msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
{}" msgstr "{} Možda nevažeći python kod.
{}" diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po index 874aa3cd9b..ac646b22b2 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +111,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:892 msgid "1 = True & 0 = False" msgstr "" @@ -130,11 +126,12 @@ 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." @@ -144,17 +141,13 @@ msgstr "" msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - #: frappe/tests/test_utils.py:716 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 @@ -173,7 +166,7 @@ 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" @@ -211,15 +204,15 @@ msgstr "" #: frappe/tests/test_utils.py:713 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" @@ -227,7 +220,7 @@ msgstr "" #: frappe/tests/test_utils.py:717 msgid "5 days ago" -msgstr "" +msgstr "5 napja" #: frappe/desk/doctype/bulk_update/bulk_update.py:36 msgid "; not allowed in condition" @@ -237,22 +230,29 @@ 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 "" +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!
" #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' @@ -314,7 +314,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 +398,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 +480,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 +506,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 +539,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 +585,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 +596,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 +622,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 +650,85 @@ 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 "" - -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -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/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 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 +744,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 +826,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:452 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:449 +msgid "API Keys" msgstr "" #. Label of the api_logging_section (Section Break) field in DocType 'System @@ -709,7 +858,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 +869,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:459 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 +916,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,12 +948,12 @@ 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 msgid "Access not allowed from this IP Address" @@ -806,7 +969,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 @@ -849,39 +1012,39 @@ msgstr "" #. Label of the action (Small Text) field in DocType 'DocType Action' #: frappe/core/doctype/doctype_action/doctype_action.json msgid "Action / Route" -msgstr "" +msgstr "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:1884 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' @@ -915,7 +1078,7 @@ 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 +1095,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 +1128,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:501 #: 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 +1139,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1151,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 "" @@ -1001,12 +1164,12 @@ 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 "" +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 msgid "Add Card to Dashboard" @@ -1021,10 +1184,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1203,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 @@ -1083,7 +1246,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 +1279,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "" @@ -1248,7 +1411,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 "" @@ -1262,7 +1425,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: {}" @@ -1356,7 +1519,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,11 +1546,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1400,7 +1563,7 @@ 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' @@ -1408,8 +1571,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 "" @@ -1466,7 +1629,7 @@ msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "After Submit" -msgstr "" +msgstr "Beküldés Után" #: frappe/desk/doctype/number_card/number_card.py:62 msgid "Aggregate Field is required to create a number card" @@ -1488,7 +1651,7 @@ 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 @@ -1507,7 +1670,7 @@ 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 @@ -1517,7 +1680,7 @@ 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 "" +msgstr "Igazítás Jobbra" #: frappe/printing/page/print_format_builder/print_format_builder.js:479 msgid "Align Value" @@ -1564,7 +1727,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,7 +1737,7 @@ 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 @@ -1624,7 +1787,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 @@ -1638,18 +1801,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 +1819,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 +1841,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 +1856,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 +1870,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 +1879,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 +1930,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 +1940,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 +1965,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 +1986,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 @@ -1930,7 +2088,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 +2096,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 "" @@ -1959,13 +2117,13 @@ 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' @@ -2122,10 +2280,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,7 +2311,7 @@ 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' @@ -2167,7 +2327,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" @@ -2194,18 +2354,22 @@ msgstr "" #. 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:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2218,7 +2382,7 @@ 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 @@ -2234,7 +2398,7 @@ msgstr "" #. Label of the apply_user_permission_on (Link) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Apply User Permission On" -msgstr "" +msgstr "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 +2411,13 @@ msgstr "" #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json msgid "Apply this rule if the User is the Owner" -msgstr "" +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 +2430,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 +2450,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,7 +2482,11 @@ 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 "" @@ -2362,12 +2534,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." @@ -2384,13 +2556,13 @@ 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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2403,7 +2575,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 +2600,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 +2610,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 +2625,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 +2699,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2636,7 +2819,7 @@ 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 "" @@ -2665,6 +2848,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 +2871,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 +2985,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 +2997,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 +3050,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 +3098,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 +3112,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 +3383,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 +3501,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 +3532,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 +3628,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,7 +3685,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "" @@ -3588,7 +3708,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 +3720,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 +3850,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 +3900,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 @@ -3848,7 +3953,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 "" @@ -3874,12 +3979,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +4003,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3956,7 +4064,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 "" @@ -3976,11 +4084,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,7 +4139,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 +4147,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 "" @@ -4068,7 +4176,7 @@ 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 "" @@ -4080,11 +4188,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4104,7 +4212,7 @@ msgstr "" 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 +4220,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 +4237,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:1129 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4247,8 +4355,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 +4426,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 +4459,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 +4467,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,7 +4522,7 @@ 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 "" @@ -4466,7 +4575,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 +4587,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4613,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,7 +4625,11 @@ 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 "" @@ -4568,7 +4681,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4859,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4857,11 +4970,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4930,16 +5043,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 +5050,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 +5059,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 "" @@ -5033,7 +5136,7 @@ msgstr "" 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 "" @@ -5128,6 +5231,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 +5261,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:406 msgid "Configure Columns" msgstr "" @@ -5182,7 +5290,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5309,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:196 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5336,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 "" @@ -5355,7 +5463,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5363,7 +5470,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5371,24 +5477,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 "" @@ -5464,12 +5558,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5575,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:633 msgid "Correct version :" msgstr "" @@ -5498,10 +5596,10 @@ 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 "" @@ -5638,7 +5736,7 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" @@ -5651,7 +5749,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "" @@ -5663,7 +5761,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,10 +5769,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5789,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:507 msgid "Create your first {0}" msgstr "" @@ -5717,7 +5815,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 +5827,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 "" @@ -6066,14 +6164,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6217,7 +6315,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 "" @@ -6325,7 +6423,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "" @@ -6356,7 +6454,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6592,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6758,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 "" @@ -6715,10 +6813,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6726,11 +6824,16 @@ msgstr "" msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6771,7 +6874,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 +6907,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6849,6 +6952,10 @@ msgstr "" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Törölt!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "" @@ -6864,8 +6971,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 +6988,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +7015,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 +7050,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 +7070,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 +7079,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 +7162,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 +7223,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 +7240,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 +7249,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 +7299,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 +7313,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 +7323,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 +7341,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 +7364,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,16 +7400,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "" @@ -7410,7 +7503,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 +7550,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 +7563,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 +7596,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 +7610,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,19 +7672,19 @@ 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 "" @@ -7788,7 +7881,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:1955 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7889,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "" @@ -7946,13 +8039,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "" @@ -8174,17 +8267,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:1776 #: 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:350 #: 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 +8285,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8295,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8324,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8334,7 +8427,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 +8436,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 "" @@ -8390,6 +8483,7 @@ 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' @@ -8403,6 +8497,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 @@ -8443,7 +8538,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 "" @@ -8574,9 +8669,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 +8737,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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 "" @@ -8712,7 +8807,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 +8833,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 +8926,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 +8933,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 +8945,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 +8967,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 +8980,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 +9006,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 +9026,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 +9042,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 +9058,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 +9106,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 +9176,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 +9196,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 "" @@ -9156,9 +9244,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "" @@ -9178,7 +9266,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9331,7 +9419,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 +9427,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,7 +9453,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" @@ -9398,7 +9486,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 +9516,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9559,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9568,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 "" @@ -9595,7 +9685,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 +9702,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 "" @@ -9625,7 +9715,7 @@ msgstr "" 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 "" @@ -9637,8 +9727,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 +9744,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 +9764,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 +9818,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 +9875,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:1870 #: 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 +9898,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9870,11 +9954,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,16 +9976,16 @@ 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:454 #: 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 "" @@ -9925,11 +10009,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +10036,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 @@ -10001,7 +10085,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10105,7 +10189,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10164,7 +10248,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 +10262,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 +10286,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,7 +10303,7 @@ 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 "" @@ -10230,18 +10320,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 "" @@ -10329,11 +10419,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 "" @@ -10495,7 +10585,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 +10643,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:2120 +#: 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 +10670,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 +10684,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10739,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 +10799,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 +10831,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 +10928,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:1831 msgid "From Document Type" msgstr "" @@ -10858,18 +10955,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 "" @@ -10968,6 +11063,12 @@ 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 msgid "Generate Tracking URL" @@ -10992,7 +11093,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "" @@ -11298,11 +11399,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" @@ -11436,7 +11532,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 @@ -11449,7 +11544,6 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11611,6 +11705,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 @@ -11745,11 +11845,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 +11924,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "" @@ -11843,7 +11938,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 +11987,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 +12076,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,7 +12181,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12219,6 +12311,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 +12346,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 +12407,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:1120 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12473,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,11 +12499,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12433,7 +12533,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12728,7 +12828,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12752,7 +12852,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 +12927,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:1876 msgid "Insert After" msgstr "" @@ -12843,7 +12943,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 +12961,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12983,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 "" @@ -12908,7 +13012,7 @@ msgstr "" 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 +13116,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:849 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13038,7 +13142,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,7 +13162,11 @@ 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 "" @@ -13099,7 +13207,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 +13216,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 "" @@ -13125,11 +13233,11 @@ msgstr "" 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:1239 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" @@ -13148,7 +13256,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 "" @@ -13171,7 +13279,7 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" @@ -13183,6 +13291,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13199,7 +13311,7 @@ msgstr "" 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 "" @@ -13235,19 +13347,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13275,12 +13383,20 @@ msgstr "" 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 +13404,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 "" @@ -13300,6 +13420,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter 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 "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:627 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 "" @@ -13486,7 +13647,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 "" @@ -13778,12 +13939,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 @@ -14056,7 +14219,7 @@ msgstr "" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14160,6 +14323,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 +14344,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" @@ -14340,7 +14503,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14436,20 +14599,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 +14639,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 +14653,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,6 +14784,10 @@ 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' @@ -14685,7 +14840,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14881,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 +14890,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,8 +14908,8 @@ 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 msgid "Loading" @@ -14769,7 +14923,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 +14933,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14994,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14980,7 +15134,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "" @@ -15160,7 +15314,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:509 msgid "Mandatory Information missing:" msgstr "" @@ -15180,7 +15334,7 @@ msgstr "" 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 +15415,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 +15497,7 @@ msgstr "" msgid "Max auto email report per user" 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 "" @@ -15358,16 +15510,11 @@ msgstr "" 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 "" @@ -15437,7 +15584,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 "" @@ -15503,7 +15650,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 +15682,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 "" @@ -15692,7 +15831,7 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -15959,7 +16098,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 "" @@ -16033,7 +16172,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16074,7 +16213,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:498 #: 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,7 +16251,7 @@ 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/views/file/file_view.js:97 @@ -16128,7 +16267,7 @@ msgstr "" 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 +16279,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 +16318,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16355,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16375,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16286,10 +16425,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 +16433,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 "" @@ -16365,12 +16500,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:190 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 +16514,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 +16532,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 +16590,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:411 msgid "New {0}" msgstr "" @@ -16477,7 +16612,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 +16620,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 +16633,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,12 +16740,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16662,6 +16798,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 +16837,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16853,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16873,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "" @@ -16753,7 +16893,7 @@ 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 "" @@ -16777,7 +16917,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "" @@ -16805,19 +16945,15 @@ 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 "" @@ -16837,6 +16973,10 @@ 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 "" @@ -16909,7 +17049,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:947 msgid "No permission to read {0}" msgstr "" @@ -16937,7 +17077,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16961,7 +17101,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17013,7 +17153,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 "" @@ -17062,18 +17202,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17083,9 +17222,9 @@ msgstr "" #: 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/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 +17256,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 +17272,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17300,7 @@ 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 "" @@ -17170,18 +17309,18 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17355,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17379,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 +17427,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17486,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,7 +17544,7 @@ 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 "" @@ -17520,11 +17658,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 +17781,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 "" @@ -17728,7 +17866,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 "" @@ -17772,7 +17910,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" @@ -17846,7 +17984,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 +18002,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 +18010,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +18025,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 +18040,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 +18059,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +18085,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 "" @@ -17975,7 +18117,7 @@ msgstr "" 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 +18126,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 +18134,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 "" @@ -18036,8 +18178,8 @@ msgstr "" 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 "" @@ -18116,9 +18258,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:1796 msgid "PDF" msgstr "" @@ -18159,11 +18301,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18477,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 "" @@ -18379,11 +18521,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 +18534,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 +18608,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18619,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18632,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18649,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 +18661,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18527,7 +18673,7 @@ msgstr "" 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 +18681,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18751,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 "" @@ -18744,16 +18892,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18841,8 +18989,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +19050,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 +19062,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18934,10 +19082,6 @@ 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 "" @@ -18946,7 +19090,7 @@ msgstr "" 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:1072 msgid "Please check your email for verification" msgstr "" @@ -18978,7 +19122,7 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19008,8 +19152,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19048,7 +19192,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 +19229,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 "" @@ -19101,7 +19246,7 @@ msgstr "" msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19262,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:1711 msgid "Please save the report first" msgstr "" @@ -19153,7 +19298,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 +19310,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,7 +19336,7 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" @@ -19203,7 +19348,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 "" @@ -19239,23 +19384,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 +19421,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 "" @@ -19366,14 +19511,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19526,7 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19445,7 +19582,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 "" @@ -19480,13 +19617,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 +19645,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 @@ -19532,7 +19662,7 @@ msgstr "" 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 +19708,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19738,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19716,7 +19846,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19765,11 +19895,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19909,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19845,7 +19975,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "" @@ -19871,9 +20001,9 @@ 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,24 +20089,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 +20110,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 +20199,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 "" @@ -20097,7 +20214,7 @@ msgid "QR Code for Login Verification" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20264,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 +20364,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20401,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 @@ -20326,7 +20437,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 +20454,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 +20511,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 +20526,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 "" @@ -20482,7 +20588,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 +20599,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 +20639,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 +20656,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" @@ -20804,15 +20923,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20837,18 +20956,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:534 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:374 #: 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 +21144,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 "" @@ -21228,7 +21347,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "" @@ -21266,7 +21385,7 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "" @@ -21292,20 +21411,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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 "" @@ -21328,7 +21447,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 "" @@ -21458,11 +21577,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21589,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21628,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21547,6 +21666,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 +21676,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 +21734,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 "" @@ -21671,9 +21786,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 +21827,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 +21841,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 @@ -21775,7 +21890,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21933,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 +21943,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 +21980,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 +22000,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 +22011,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 @@ -21926,12 +22039,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21939,7 +22052,7 @@ msgstr "" msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21967,7 +22080,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,25 +22088,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22089,7 +22202,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 +22280,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 +22308,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22330,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:1735 msgid "Save As" msgstr "" @@ -22234,7 +22343,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "" @@ -22263,7 +22372,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 +22451,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 "" @@ -22510,7 +22619,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 "" @@ -22619,7 +22728,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 +22775,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,12 +22783,12 @@ 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:497 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" @@ -22690,7 +22799,7 @@ msgstr "" 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 "" @@ -22754,12 +22863,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:489 #: 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 "" @@ -22805,8 +22917,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:598 msgid "Select Network Printer" msgstr "" @@ -22874,11 +22986,11 @@ msgstr "" msgid "Select a group node first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +23020,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +23060,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 +23244,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23338,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 "" @@ -23255,7 +23367,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 "" @@ -23360,7 +23472,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:2104 msgid "Set Level" msgstr "" @@ -23414,7 +23526,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23555,14 +23667,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 +23685,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23755,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 +23774,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 +23826,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23954,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:1845 msgid "Show Tags" msgstr "" @@ -23874,7 +23971,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 +24011,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 +24059,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 +24089,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 +24124,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 "" @@ -24091,7 +24184,7 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "" @@ -24324,11 +24417,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,13 +24452,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24373,6 +24465,10 @@ msgstr "" 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 +24495,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 "" @@ -24460,7 +24562,7 @@ msgstr "" 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 "" @@ -24516,8 +24618,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 +24627,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 @@ -24598,7 +24700,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 +24756,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 +24781,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 +24789,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 +24827,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:454 msgid "Sticky" msgstr "" @@ -24753,6 +24857,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24847,7 +24955,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24872,7 +24980,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,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 "" @@ -24918,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 "" @@ -24930,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +25047,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 +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 "" @@ -24982,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:1171 #: 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 +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 "" @@ -25079,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 "" @@ -25201,7 +25303,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25324,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 @@ -25406,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 "" @@ -25479,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 "" @@ -25488,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 "" @@ -25510,7 +25614,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "" @@ -25556,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 @@ -25622,7 +25733,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "" @@ -25694,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 "" @@ -25718,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:1193 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,7 +25840,7 @@ 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 "" @@ -25737,7 +25848,7 @@ msgstr "" 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 +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 "" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "" @@ -25786,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25886,11 +25997,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -25927,7 +26038,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 "" @@ -25976,7 +26087,7 @@ msgstr "" 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,6 +26099,10 @@ 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 "" @@ -26020,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 "" @@ -26112,7 +26227,7 @@ 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 "" @@ -26174,7 +26289,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 +26308,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26332,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 +26350,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:423 msgid "This may get printed on multiple pages" msgstr "" @@ -26288,7 +26397,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 +26429,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:1253 msgid "Throttled" msgstr "" @@ -26472,11 +26581,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 "" @@ -26525,9 +26634,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 +26658,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 +26680,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 "" @@ -26726,7 +26829,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 +26845,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26895,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 +26911,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26973,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +27019,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 "" @@ -27026,6 +27129,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 +27148,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "" @@ -27051,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 "" @@ -27135,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 "" @@ -27482,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 "" @@ -27499,7 +27606,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27572,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:427 msgid "Update" msgstr "" @@ -27648,7 +27755,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 +27763,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 "" @@ -27829,7 +27936,7 @@ msgstr "" 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 +27957,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 +27968,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 +27983,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 +27997,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 +28014,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 +28048,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 +28112,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 +28131,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 +28154,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28172,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 +28240,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 +28274,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 +28295,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28212,7 +28324,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 +28408,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 "" @@ -28368,7 +28480,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28414,7 +28526,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 +28539,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 +28601,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28519,7 +28623,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28670,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 "" @@ -28643,7 +28747,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 "" @@ -28832,7 +28936,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 +28949,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 +28992,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 +29209,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 "" @@ -29206,7 +29301,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 +29327,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 +29339,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,7 +29378,7 @@ 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" @@ -29344,11 +29454,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 "" @@ -29371,7 +29481,7 @@ msgstr "" 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,7 +29500,7 @@ 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 "" @@ -29448,14 +29558,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29532,11 +29643,11 @@ msgstr "" 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:605 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 "" @@ -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 "" @@ -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:390 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:394 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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29732,7 +29847,7 @@ msgstr "" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,7 +29859,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." 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:245 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:501 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:804 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:645 msgid "You must login to submit this form" 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 @@ -29928,10 +30039,22 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -29985,10 +30108,18 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "" @@ -30093,7 +30224,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 +30369,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 +30431,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 +30446,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 "" @@ -30378,11 +30504,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 +30527,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 "" @@ -30594,19 +30715,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "" @@ -30659,6 +30780,10 @@ 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 @@ -30686,7 +30811,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 +30825,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "" @@ -30733,10 +30858,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30894,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 +30924,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:486 +#: 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 +30960,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 +30990,6 @@ msgstr "" 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 +31014,7 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30960,11 +31093,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 "" @@ -31031,7 +31160,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,7 +31169,7 @@ 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 "" @@ -31048,15 +31177,15 @@ msgstr "" 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 +31194,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 "" @@ -31117,8 +31246,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31255,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:174 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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 "" @@ -31154,19 +31283,23 @@ msgstr "" 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 "" @@ -31174,31 +31307,31 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" -#: 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:1835 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,7 +31364,7 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "" @@ -31267,7 +31400,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 +31413,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:1211 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31330,11 +31463,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31487,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 +31504,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 "" @@ -31390,7 +31523,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:254 msgid "{0} updated" msgstr "" @@ -31434,7 +31567,7 @@ msgstr "" 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 "" @@ -31466,75 +31599,75 @@ msgstr "" 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31675,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31683,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 "" @@ -31567,7 +31700,7 @@ msgstr "" 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 +31724,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 +31732,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "" diff --git a/frappe/locale/id.po b/frappe/locale/id.po index 69f71893f1..76f632447d 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:29\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,19 @@ 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:363 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:259 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 +98,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 +118,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:892 msgid "1 = True & 0 = False" msgstr "" @@ -144,10 +140,6 @@ msgstr "1 Acara Kalender Google disinkronkan." 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 msgid "1 day ago" msgstr "" @@ -245,6 +237,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 "" @@ -479,7 +478,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 +545,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,10 +554,6 @@ 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" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -576,7 +571,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 +670,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:452 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 +699,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +723,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:459 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 +770,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 @@ -856,7 +873,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "aksi Gagal" @@ -965,7 +982,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:501 #: 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 +993,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:454 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1005,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" @@ -1021,10 +1038,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1085,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 +1100,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 +1133,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:2145 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,12 +1263,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 @@ -1301,14 +1318,14 @@ msgstr "Alamat" #: frappe/contacts/doctype/address/address.json #: 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/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 +1373,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" @@ -1383,11 +1400,11 @@ msgstr "Administrasi" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator mengakses {0} pada {1} melalui IP Address {2}." @@ -1408,8 +1425,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" @@ -1564,7 +1581,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 +1641,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 +1662,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 +1710,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 +1942,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 +1950,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}" @@ -2122,10 +2134,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 +2210,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 +2223,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Terapkan Aturan Penugasan" @@ -2253,7 +2271,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 +2304,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,7 +2336,11 @@ 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 "" @@ -2390,7 +2416,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Tugaskan Kepada" @@ -2453,6 +2479,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 +2553,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2636,7 +2673,7 @@ 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" @@ -2667,6 +2704,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 +2725,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 +2839,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 +2851,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 +2904,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 +2952,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 +2966,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 +3221,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 +3237,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 +3355,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 +3386,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 +3452,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 +3482,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,7 +3539,7 @@ msgstr "Hapus Massal" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "Sunting Massal {0}" @@ -3588,7 +3562,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 +3574,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 +3704,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 +3754,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 @@ -3816,7 +3775,7 @@ msgstr "Kamera" #: 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 +3807,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 "" @@ -3874,12 +3833,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Batalkan" @@ -3897,16 +3857,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:2205 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 @@ -3956,7 +3918,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}" @@ -3976,11 +3938,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 "" @@ -4031,7 +3993,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 +4001,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" @@ -4068,7 +4030,7 @@ 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 "" @@ -4080,11 +4042,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4104,7 +4066,7 @@ msgstr "Tidak dapat mencocokkan kolom {0} dengan bidang apa pun" 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 +4074,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 +4091,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:1129 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4247,7 +4209,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 +4279,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 +4312,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 +4320,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}" @@ -4413,7 +4375,7 @@ 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 "" @@ -4466,7 +4428,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 +4440,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4466,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,7 +4478,11 @@ 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 "" @@ -4568,7 +4534,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4712,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Perkecil Semua" @@ -4857,11 +4823,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4930,16 +4896,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 +4903,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 +4912,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" @@ -5033,7 +4989,7 @@ msgstr "Nama Perusahaan" 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 "" @@ -5128,6 +5084,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 +5114,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:406 msgid "Configure Columns" msgstr "" @@ -5182,7 +5143,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Menegaskan" @@ -5201,7 +5162,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "Konfirmasi password baru" @@ -5228,7 +5189,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 "" @@ -5355,7 +5316,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5363,7 +5323,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5371,24 +5330,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 "" @@ -5464,12 +5411,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes tidak dapat dikustomisasi." @@ -5477,7 +5428,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:633 msgid "Correct version :" msgstr "" @@ -5498,10 +5449,10 @@ 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" @@ -5638,7 +5589,7 @@ msgstr "" msgid "Create New" msgstr "Buat New" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Buat New" @@ -5651,7 +5602,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "Buat Email Pengguna" @@ -5663,7 +5614,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,10 +5622,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "Buat baru {0}" @@ -5691,7 +5642,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:507 msgid "Create your first {0}" msgstr "Buat {0} pertama Anda" @@ -5717,7 +5668,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 +5680,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}" @@ -6066,14 +6017,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "Sesuaikan" @@ -6217,7 +6168,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" @@ -6325,7 +6276,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:615 msgid "Data Too Long" msgstr "Data Terlalu Panjang" @@ -6356,7 +6307,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6445,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6516,7 +6467,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 +6611,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." @@ -6715,10 +6666,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6726,11 +6677,16 @@ msgstr "" msgid "Delete" msgstr "Hapus" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6771,7 +6727,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 +6760,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Hapus {0} item secara permanen?" @@ -6849,6 +6805,10 @@ msgstr "" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Dihapus!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "Menghapus {0}" @@ -6864,8 +6824,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 +6841,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6868,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 +6903,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 +6923,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 +6932,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 +6941,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 +7015,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 +7076,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 +7093,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 +7102,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 +7152,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 +7166,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 +7176,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 +7194,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 +7217,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,16 +7253,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "Jangan edit header yang sudah ada di template" @@ -7410,7 +7356,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 +7403,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 +7416,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 +7449,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 +7463,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,19 +7525,19 @@ 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 "" @@ -7788,7 +7734,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:1955 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7742,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "" @@ -7935,7 +7881,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 +7892,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "Unduh" @@ -8174,17 +8120,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:1776 #: 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:350 #: 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 +8138,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8148,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8177,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "mengedit DocType" @@ -8334,7 +8280,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 +8289,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 "" @@ -8390,6 +8336,7 @@ 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' @@ -8403,6 +8350,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 @@ -8443,7 +8391,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" @@ -8574,9 +8522,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 +8590,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:278 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)" @@ -8712,7 +8660,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 +8686,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 +8779,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 +8786,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 +8798,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 +8820,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 +8833,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 +8859,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 +8879,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 +8895,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 +8911,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 +8959,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 +9029,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 +9049,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" @@ -9156,9 +9097,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "Kesalahan dalam Notifikasi" @@ -9178,7 +9119,7 @@ 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:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Kesalahan saat mengevaluasi Pemberitahuan {0}. Silakan perbaiki template Anda." @@ -9331,7 +9272,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 +9280,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "Waktu Eksekusi: {0} dtk" @@ -9365,7 +9306,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Melebarkan semua" @@ -9398,7 +9339,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 +9369,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Ekspor" @@ -9469,7 +9412,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Laporan Ekspor: {0}" @@ -9478,11 +9421,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 "" @@ -9595,7 +9538,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 +9555,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 "" @@ -9625,7 +9568,7 @@ msgstr "Gagal terhubung ke server" 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 "" @@ -9637,8 +9580,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 +9597,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 +9617,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 +9671,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 +9728,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:1870 #: 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 +9751,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 "" @@ -9870,11 +9807,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,16 +9829,16 @@ 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:454 #: 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 "" @@ -9925,11 +9862,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Fieldname {0} tidak dapat memiliki karakter khusus seperti {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9889,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 @@ -10001,7 +9938,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2}" @@ -10105,7 +10042,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10164,7 +10101,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 +10115,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 +10139,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,7 +10156,7 @@ 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}" @@ -10230,18 +10173,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}" @@ -10329,11 +10272,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" @@ -10495,7 +10438,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 +10496,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:2120 +#: 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 +10523,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 +10537,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Untuk {0} pada tingkat {1} dalam {2} berturut-turut {3}" @@ -10655,7 +10592,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 +10652,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 +10684,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 +10781,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:1831 msgid "From Document Type" msgstr "Dari Jenis Dokumen" @@ -10858,18 +10808,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 "" @@ -10968,6 +10916,12 @@ 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 msgid "Generate Tracking URL" @@ -10992,7 +10946,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "Dapatkan Pemberitahuan untuk Hari ini" @@ -11298,11 +11252,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" @@ -11436,7 +11385,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 @@ -11449,7 +11397,6 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11611,6 +11558,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 @@ -11745,11 +11698,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 +11777,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "" @@ -11843,7 +11791,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 +11840,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 +11929,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,7 +12034,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12219,6 +12164,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 +12199,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 +12260,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:1120 msgid "Illegal SQL Query" msgstr "Query SQL Ilegal" @@ -12373,11 +12326,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,11 +12352,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12433,7 +12386,7 @@ msgstr "" msgid "Import" msgstr "Impor" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "Impor" @@ -12728,7 +12681,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" @@ -12752,7 +12705,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 +12780,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:1876 msgid "Insert After" msgstr "Masukkan Setelah" @@ -12843,7 +12796,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 +12814,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12836,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 "" @@ -12908,7 +12865,7 @@ msgstr "" 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 +12969,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:849 +#: 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" @@ -13038,7 +12995,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,7 +13015,11 @@ 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 "" @@ -13099,7 +13060,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 +13069,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" @@ -13125,11 +13086,11 @@ msgstr "Output Format valid" 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:1239 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" @@ -13148,7 +13109,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 "" @@ -13171,7 +13132,7 @@ 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 "" @@ -13183,6 +13144,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13199,7 +13164,7 @@ msgstr "" 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" @@ -13235,19 +13200,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 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 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" @@ -13275,12 +13236,20 @@ msgstr "" 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 +13257,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" @@ -13300,6 +13273,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13316,7 +13293,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 +13302,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:627 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 +13324,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" @@ -13486,7 +13500,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" @@ -13778,12 +13792,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 @@ -14056,7 +14072,7 @@ msgstr "Pemandangan" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Bahasa" @@ -14160,6 +14176,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 +14197,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" @@ -14340,7 +14356,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14436,20 +14452,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 +14492,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 +14506,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,6 +14637,10 @@ 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' @@ -14685,7 +14693,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:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Pengaturan Daftar" @@ -14726,7 +14734,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 +14743,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Muat lebih banyak" @@ -14754,8 +14761,8 @@ 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 msgid "Loading" @@ -14769,7 +14776,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 +14786,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Memuat..." @@ -14840,7 +14847,7 @@ msgstr "Masuk untuk mengakses halaman ini." msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Keluar" @@ -14980,7 +14987,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "Keluar dari Semua Sesi" @@ -15160,7 +15167,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:509 msgid "Mandatory Information missing:" msgstr "Informasi wajib hilang:" @@ -15180,7 +15187,7 @@ msgstr "bidang wajib yang dibutuhkan dalam tabel {0}, Row {1}" msgid "Mandatory fields required in {0}" msgstr "Bidang wajib yang dibutuhkan dalam {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15261,10 +15268,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 +15350,7 @@ msgstr "" msgid "Max auto email report per user" 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 "Max lebar untuk jenis mata uang adalah 100px berturut-turut {0}" @@ -15358,16 +15363,11 @@ msgstr "" 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" @@ -15437,7 +15437,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" @@ -15503,7 +15503,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 +15535,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" @@ -15692,7 +15684,7 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -15959,7 +15951,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 "" @@ -16033,7 +16025,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." @@ -16074,7 +16066,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:498 #: 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,7 +16104,7 @@ 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/views/file/file_view.js:97 @@ -16128,7 +16120,7 @@ msgstr "" 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 +16132,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 +16171,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 +16208,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navigasikan daftar ke atas" @@ -16236,7 +16228,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16286,10 +16278,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 +16286,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 "" @@ -16365,12 +16353,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:190 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 +16367,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 +16385,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 +16443,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:411 msgid "New {0}" msgstr "" @@ -16477,7 +16465,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 +16473,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 +16486,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,12 +16593,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16662,6 +16651,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 +16690,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16706,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:1744 msgid "No Permissions Specified" msgstr "Tidak ada izin yang ditentukan" @@ -16733,11 +16726,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:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "Tidak Ada Printer." @@ -16753,7 +16746,7 @@ 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 "" @@ -16777,7 +16770,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "Tidak ada pemberitahuan untuk hari ini" @@ -16805,19 +16798,15 @@ 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" @@ -16837,6 +16826,10 @@ 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 "" @@ -16909,7 +16902,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:947 msgid "No permission to read {0}" msgstr "Tidak ada izin untuk membaca {0}" @@ -16937,7 +16930,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 "" @@ -16961,7 +16954,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17013,7 +17006,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" @@ -17062,18 +17055,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17083,9 +17075,9 @@ msgstr "Tidak Diterbitkan" #: 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/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 +17109,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 +17125,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:637 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,7 +17153,7 @@ 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'." @@ -17170,18 +17162,18 @@ msgstr "Tidak dalam Mode Pengembang! Diatur dalam site_config.json atau membuat #: 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:760 #: 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 +17208,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17232,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 +17280,15 @@ msgstr "Pemberitahuan Dokumen Berlangganan" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17339,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,7 +17397,7 @@ 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 "" @@ -17520,11 +17511,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 +17634,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 "" @@ -17728,7 +17719,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:" @@ -17772,7 +17763,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Hanya DocTypes standar yang boleh disesuaikan dari Formulir Kustomisasi." @@ -17846,7 +17837,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 +17855,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 +17863,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Buka item daftar" @@ -17887,13 +17878,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 +17893,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 +17912,7 @@ msgstr "" msgid "Operation" msgstr "Operasi" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "Operator harus menjadi salah satu dari {0}" @@ -17943,7 +17938,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" @@ -17975,7 +17970,7 @@ msgstr "" 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 +17979,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 +17987,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." @@ -18036,8 +18031,8 @@ msgstr "" 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 "" @@ -18116,9 +18111,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:1796 msgid "PDF" msgstr "" @@ -18159,11 +18154,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18330,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}" @@ -18379,11 +18374,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 +18387,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 +18461,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18472,7 @@ msgstr "" msgid "Password" msgstr "Kata sandi" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18485,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18502,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 +18514,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18527,7 +18526,7 @@ msgstr "" 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 +18534,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "Sandi tidak cocok!" @@ -18605,10 +18604,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" @@ -18744,16 +18745,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18841,8 +18842,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Pilih Kolom" @@ -18902,11 +18903,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 +18915,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:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "Minta administrator untuk memverifikasi Anda sign-up" @@ -18934,10 +18935,6 @@ 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: {}" @@ -18946,7 +18943,7 @@ msgstr "Silakan periksa nilai filter yang disetel untuk Dasbor: {}" 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:1072 msgid "Please check your email for verification" msgstr "Silahkan cek email Anda untuk verifikasi" @@ -18978,7 +18975,7 @@ msgstr "Silahkan klik pada link berikut untuk mengatur password baru anda" msgid "Please confirm your action to {0} this document." msgstr "Harap konfirmasikan tindakan Anda ke {0} dokumen ini." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19008,8 +19005,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19048,7 +19045,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 +19082,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 "" @@ -19101,7 +19099,7 @@ msgstr "Harap pastikan Dokumen Komunikasi Referensi tidak terhubung secara sirku 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:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19115,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:1711 msgid "Please save the report first" msgstr "Harap menyimpan laporan pertama" @@ -19153,7 +19151,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 +19163,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:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Silakan pilih minimal 1 kolom dari {0} untuk menyortir / group" @@ -19191,7 +19189,7 @@ 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:562 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" @@ -19203,7 +19201,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 "" @@ -19239,23 +19237,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 +19274,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 "" @@ -19366,14 +19364,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19379,7 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "Presisi harus antara 1 dan 6" @@ -19445,7 +19435,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 "" @@ -19480,13 +19470,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 +19498,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 @@ -19532,7 +19515,7 @@ msgstr "Kembali" 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 +19561,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Mencetak" @@ -19608,8 +19591,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19716,7 +19699,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19765,11 +19748,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "Pemetaan Printer" @@ -19779,11 +19762,11 @@ msgstr "Pemetaan Printer" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "Pengaturan Printer" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19845,7 +19828,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "Tetap melanjutkan" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "Pengolahan" @@ -19871,9 +19854,9 @@ 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 "" @@ -19959,24 +19942,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 +19963,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 +20052,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 "" @@ -20097,8 +20067,8 @@ 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:" +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 +20117,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 +20217,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20254,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 @@ -20326,7 +20290,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 +20307,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 +20364,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 +20379,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 "" @@ -20482,7 +20441,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 +20452,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 +20492,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 +20509,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" @@ -20804,15 +20776,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Segarkan" @@ -20837,18 +20809,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:534 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:374 #: 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 +20997,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!" @@ -21228,7 +21200,7 @@ msgstr "Manajer Laporan" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "Nama Laporan" @@ -21266,7 +21238,7 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "Laporan tidak dapat ditetapkan untuk jenis Tunggal" @@ -21292,20 +21264,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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}" @@ -21328,7 +21300,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" @@ -21458,11 +21430,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "Setel ulang Kata Sandi LDAP" @@ -21470,11 +21442,11 @@ msgstr "Setel ulang Kata Sandi LDAP" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 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:168 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 +21481,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21547,6 +21519,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 +21529,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 +21587,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" @@ -21671,9 +21639,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 +21680,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 +21694,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 @@ -21775,7 +21743,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:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Pengelola Perizinan Peran" @@ -21818,6 +21786,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 +21796,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 +21833,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 +21853,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 +21864,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 @@ -21926,12 +21892,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21939,7 +21905,7 @@ msgstr "" 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 "" @@ -21967,7 +21933,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,25 +21941,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22089,7 +22055,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 +22133,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 +22161,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22183,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:1735 msgid "Save As" msgstr "Disimpan Sebagai" @@ -22234,7 +22196,7 @@ 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:1951 msgid "Save Report" msgstr "Menyimpan laporan" @@ -22263,7 +22225,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 +22304,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" @@ -22510,7 +22472,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" @@ -22619,7 +22581,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 +22628,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,12 +22636,12 @@ 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:497 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" @@ -22690,7 +22652,7 @@ msgstr "Pilih Lampiran" 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" @@ -22754,12 +22716,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:489 #: 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" @@ -22805,8 +22770,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:598 msgid "Select Network Printer" msgstr "" @@ -22874,11 +22839,11 @@ msgstr "" msgid "Select a group node first." msgstr "Pilih simpul kelompok terlebih dahulu." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "Pilih bidang Subjek yang valid untuk membuat dokumen dari Email" @@ -22908,13 +22873,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Pilih beberapa item daftar" @@ -22948,7 +22913,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 +23097,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "Sender Field harus memiliki opsi Email in" @@ -23226,7 +23191,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}" @@ -23255,7 +23220,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 "" @@ -23360,7 +23325,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:2104 msgid "Set Level" msgstr "" @@ -23414,7 +23379,7 @@ msgstr "Set Kuantitas" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23555,14 +23520,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 +23538,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "Atur Email Otomatis" @@ -23648,11 +23608,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 +23627,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 +23679,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23807,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:1845 msgid "Show Tags" msgstr "Tampilkan Tag" @@ -23874,7 +23824,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 +23864,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 +23912,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 +23942,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 +23977,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" @@ -24091,7 +24037,7 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "Single DocTypes tidak dapat dikustomisasi." @@ -24324,11 +24270,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,13 +24305,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24373,6 +24318,10 @@ msgstr "bidang semacam {0} harus fieldname valid" 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 +24348,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" @@ -24460,7 +24415,7 @@ msgstr "Standar" 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" @@ -24516,8 +24471,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 +24480,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 @@ -24598,7 +24553,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 +24609,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 +24634,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 +24642,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 +24680,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:454 msgid "Sticky" msgstr "" @@ -24753,6 +24710,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24847,7 +24808,7 @@ msgstr "Perihal" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 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" @@ -24872,7 +24833,7 @@ msgstr "" msgid "Submit" msgstr "Kirim" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Kirim" @@ -24882,7 +24843,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Kirim" @@ -24906,7 +24867,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 +24879,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 +24891,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Kirim {0} dokumen?" @@ -24939,11 +24900,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 +24927,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 +24941,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:1171 #: 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 +24983,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 +25034,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 +25156,7 @@ msgstr "Sinkronisasi" msgid "Syncing {0} of {1}" msgstr "Menyinkronkan {0} dari {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25324,6 +25279,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 +25362,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 +25436,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 +25445,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,7 +25467,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "Tabel diperbarui" @@ -25556,11 +25513,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 +25586,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "Dinonaktifkan Sementara" @@ -25694,7 +25658,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 +25682,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:1193 msgid "The CSV format is case sensitive" msgstr "Format CSV bersifat case sensitive" @@ -25729,7 +25693,7 @@ 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" @@ -25737,7 +25701,7 @@ msgstr "Kondisi '{0}' tidak valid" 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 +25742,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 +25750,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25886,11 +25850,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -25927,7 +25891,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}" @@ -25976,7 +25940,7 @@ msgstr "" 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,6 +25952,10 @@ 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 "" @@ -26020,11 +25988,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" @@ -26112,7 +26080,7 @@ 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 "" @@ -26174,7 +26142,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 +26161,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:2180 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 +26185,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 +26203,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:423 msgid "This may get printed on multiple pages" msgstr "Ini dapat dicetak pada beberapa halaman" @@ -26288,8 +26250,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 +26282,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:1253 msgid "Throttled" msgstr "Terhempas" @@ -26472,11 +26434,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" @@ -26525,9 +26487,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 +26511,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 +26533,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" @@ -26726,7 +26682,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 +26698,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26748,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 +26764,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:1041 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 +26826,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +26872,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" @@ -27026,6 +26982,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 +27001,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "" @@ -27051,7 +27012,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 +27096,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 "" @@ -27482,8 +27443,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 +27459,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27572,7 +27532,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:427 msgid "Update" msgstr "Perbaruan" @@ -27648,7 +27608,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 +27616,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 🎉" @@ -27829,7 +27789,7 @@ msgstr "" 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 +27810,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 +27821,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 +27836,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 +27850,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 +27867,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 +27901,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 +27965,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 +27984,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 +28007,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "Permissions Pengguna" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Permissions Pengguna" @@ -28066,7 +28025,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 +28093,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 +28127,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 +28148,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:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28212,7 +28177,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 +28261,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" @@ -28368,7 +28333,7 @@ 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:612 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" @@ -28414,7 +28379,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 +28392,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 +28454,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28519,7 +28476,7 @@ msgstr "Lihat Daftar" msgid "View Log" msgstr "Melihat log" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Lihat Dokumen yang Diizinkan" @@ -28566,7 +28523,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 "" @@ -28643,7 +28600,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 "" @@ -28832,7 +28789,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 +28802,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 +28845,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 +29062,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" @@ -29206,7 +29154,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 +29180,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 +29192,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,7 +29231,7 @@ 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" @@ -29344,11 +29307,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 "" @@ -29371,7 +29334,7 @@ msgstr "" 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,7 +29353,7 @@ 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" @@ -29448,14 +29411,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29532,11 +29496,11 @@ msgstr "Anda tidak diizinkan mengekspor {} doctype" msgid "You are not allowed to print this report" msgstr "Anda tidak diizinkan untuk mencetak laporan ini" -#: frappe/public/js/frappe/views/communication.js: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:605 msgid "You are not allowed to update this Web Form Document" msgstr "Anda tidak diizinkan memperbarui Dokumen Web Form ini" @@ -29560,7 +29524,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 +29550,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 "" @@ -29629,7 +29597,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 "" @@ -29659,11 +29627,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "Anda tidak dapat mengatur 'Translatable' untuk field {0}" @@ -29681,7 +29649,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Anda tidak bisa unset 'Read Only' untuk bidang {0}" @@ -29732,7 +29700,7 @@ msgstr "Anda tidak memiliki izin yang cukup untuk menyelesaikan tindakan" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,7 +29712,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29756,19 +29724,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29744,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 +29764,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:501 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29781,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:804 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:645 msgid "You must login to submit this form" msgstr "Anda harus login untuk mengirimkan formulir ini" @@ -29853,13 +29817,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." @@ -29928,10 +29892,22 @@ msgstr "Anda berhenti mengikuti dokumen ini" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -29985,10 +29961,18 @@ 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/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" @@ -30093,7 +30077,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 +30222,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 +30284,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 +30299,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 "" @@ -30378,11 +30357,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 +30380,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" @@ -30594,19 +30568,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 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:300 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:302 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:299 msgid "since yesterday" msgstr "Dari Kemarin" @@ -30659,6 +30633,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 +30664,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 +30678,7 @@ msgstr "melalui Impor Data" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "melalui Notifikasi" @@ -30733,10 +30711,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30747,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 +30777,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:486 +#: 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 +30813,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 "" @@ -30856,7 +30843,6 @@ msgstr "{0} Laporan" 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 +30867,7 @@ msgstr "" msgid "{0} added" msgstr "{0} ditambahkan" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} sudah ada. Pilih nama lain" @@ -30960,11 +30946,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 "" @@ -31031,7 +31013,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,7 +31022,7 @@ 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" @@ -31048,15 +31030,15 @@ msgstr "{0} adalah kolom wajib" 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 +31047,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 "" @@ -31117,8 +31099,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} bukan Alamat Email valid" @@ -31126,15 +31108,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:174 msgid "{0} is not a valid Name" msgstr "{0} bukanlah Nama yang valid" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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." @@ -31154,19 +31136,23 @@ msgstr "{0} bukan format laporan yang valid. Format laporan harus salah satu dar 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 "" @@ -31174,31 +31160,31 @@ msgstr "" msgid "{0} is now default print format for {1} doctype" msgstr "{0} sekarang menjadi format cetak standar untuk doctype {1}" -#: frappe/public/js/frappe/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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} diperlukan" -#: 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:1835 msgid "{0} items selected" msgstr "{0} item dipilih" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,7 +31217,7 @@ msgstr "{0} menit yang lalu" msgid "{0} months ago" msgstr "{0} bulan yang lalu" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} harus setelah {1}" @@ -31267,7 +31253,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 +31266,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} dari {1} ({2} baris dengan anak-anak)" @@ -31330,11 +31316,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "" +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "Baris {0} #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} berhasil disimpan" @@ -31354,11 +31340,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 +31357,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" @@ -31390,7 +31376,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:254 msgid "{0} updated" msgstr "{0} diperbarui" @@ -31434,7 +31420,7 @@ msgstr "{0} {1} sudah ada" 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" @@ -31466,75 +31452,75 @@ msgstr "" 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:1801 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:1819 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:1817 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:1796 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:1803 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:1799 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:1823 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:1756 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:1770 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 +31528,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:1785 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 +31536,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 "" @@ -31567,7 +31553,7 @@ msgstr "{0}: {1} diatur untuk menyatakan {2}" 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 +31577,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 +31585,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:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "" diff --git a/frappe/locale/it.po b/frappe/locale/it.po index 6d0fd6c7dd..7f064a4d93 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:29\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,181 @@ 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:363 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 "" +msgstr "'Destinatari' non specificati" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:259 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:892 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 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - #: frappe/tests/test_utils.py:716 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 msgid "1 hour ago" -msgstr "" +msgstr "1 ora fa" #: frappe/public/js/frappe/utils/pretty_date.js:48 #: frappe/tests/test_utils.py:712 msgid "1 minute ago" -msgstr "" +msgstr "1 minuto fa" #: frappe/public/js/frappe/utils/pretty_date.js:66 #: frappe/tests/test_utils.py:720 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 "" +msgstr "Verrà esportato 1 record" #: frappe/tests/test_utils.py:711 msgid "1 second ago" -msgstr "" +msgstr "1 secondo fa" #: frappe/public/js/frappe/utils/pretty_date.js:62 #: frappe/tests/test_utils.py:718 msgid "1 week ago" -msgstr "" +msgstr "1 settimana fa" #: frappe/public/js/frappe/utils/pretty_date.js:70 #: frappe/tests/test_utils.py:722 msgid "1 year ago" -msgstr "" +msgstr "1 anno fa" #: frappe/tests/test_utils.py:715 msgid "2 hours ago" -msgstr "" +msgstr "2 ore fa" #: frappe/tests/test_utils.py:721 msgid "2 months ago" -msgstr "" +msgstr "2 mesi fa" #: frappe/tests/test_utils.py:719 msgid "2 weeks ago" -msgstr "" +msgstr "2 settimane fa" #: frappe/tests/test_utils.py:723 msgid "2 years ago" -msgstr "" +msgstr "2 anni fa" #: frappe/tests/test_utils.py:713 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 msgid "5 days ago" -msgstr "" +msgstr "5 giorni fa" #: frappe/desk/doctype/bulk_update/bulk_update.py:36 msgid "; not allowed in condition" @@ -237,17 +230,24 @@ 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 @@ -314,7 +314,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 +398,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 +495,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 +567,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 +620,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,10 +643,6 @@ 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 "" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -576,7 +660,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 +687,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 +759,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:452 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 +788,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +812,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:459 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 +823,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 +849,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 +884,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' @@ -800,20 +906,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 +927,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 +950,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 +962,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "" @@ -927,7 +1033,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 +1067,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:501 #: 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 +1080,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:454 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 @@ -1021,10 +1127,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1151,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 +1166,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 +1174,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 +1189,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 +1222,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 +1257,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" @@ -1246,12 +1352,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 +1368,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 +1377,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' @@ -1301,14 +1407,14 @@ msgstr "" #: frappe/contacts/doctype/address/address.json #: 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/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 +1441,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 +1462,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,11 +1489,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1406,12 +1512,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 @@ -1512,7 +1618,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 +1670,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 +1702,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 +1730,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 +1751,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 +1799,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 +1822,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 +1929,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 +2031,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 +2039,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 "" @@ -2056,13 +2157,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 +2209,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 +2220,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 +2285,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 +2299,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 +2312,14 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 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 +2336,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 +2360,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 +2373,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 +2393,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,10 +2425,14 @@ 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/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:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2367,7 +2482,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." @@ -2390,14 +2505,14 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 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 +2530,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 +2568,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 +2642,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2545,7 +2671,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 +2702,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." @@ -2636,7 +2762,7 @@ 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 "" @@ -2667,6 +2793,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 +2811,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 +2899,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 +2928,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 +2940,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 +2993,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 +3020,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 +3041,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 +3106,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 +3186,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 +3200,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 +3215,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 +3239,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 +3279,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 +3296,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 +3326,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 +3418,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 +3444,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 +3475,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 +3494,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 +3541,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 +3562,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 +3572,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 +3601,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,13 +3623,13 @@ 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:1189 msgid "Bulk Edit {0}" msgstr "" @@ -3588,7 +3652,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 +3664,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 +3680,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 +3739,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 +3750,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 +3774,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 +3792,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 +3815,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 +3837,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,7 +3858,7 @@ 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 @@ -3827,28 +3876,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 "" @@ -3874,20 +3923,21 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 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 +3947,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3956,7 +4008,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 "" @@ -3976,11 +4028,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,7 +4083,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 +4091,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 "" @@ -4057,7 +4109,7 @@ 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 @@ -4068,7 +4120,7 @@ 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 "" @@ -4080,11 +4132,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4104,7 +4156,7 @@ msgstr "" 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 +4164,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 +4181,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:1129 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4147,12 +4199,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 +4217,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' @@ -4218,7 +4270,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 +4299,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 +4353,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 +4361,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 +4370,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 +4403,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 +4411,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 +4442,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." @@ -4413,7 +4466,7 @@ 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 "" @@ -4433,7 +4486,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 +4496,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' @@ -4466,7 +4519,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 +4531,14 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 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 +4546,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 +4557,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,10 +4569,14 @@ 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/website/doctype/web_form/templates/web_form.html:154 +msgid "Click here" +msgstr "Clicca qui" + #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4568,9 +4625,9 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 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 +4662,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 +4689,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 +4700,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 +4727,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 +4735,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 +4754,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 +4801,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4808,7 +4865,7 @@ msgstr "" #: 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 +4914,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4899,7 +4956,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 +4987,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 +4994,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 +5003,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 +5036,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 +5046,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,7 +5072,7 @@ 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 @@ -5033,7 +5080,7 @@ msgstr "" 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 +5096,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 @@ -5128,6 +5175,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 +5205,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:406 msgid "Configure Columns" msgstr "" @@ -5182,15 +5234,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:412 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 +5253,13 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 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 +5280,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 "" @@ -5355,7 +5407,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5363,7 +5414,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5371,24 +5421,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 +5484,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" @@ -5462,14 +5500,18 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" +msgstr "Copia negli Appunti" + +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5519,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:633 msgid "Correct version :" msgstr "" @@ -5498,12 +5540,12 @@ 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 +5558,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" @@ -5570,7 +5612,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' @@ -5588,25 +5630,25 @@ msgstr "" #: 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 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 msgid "Create Chart" -msgstr "" +msgstr "Crea Grafico" #: frappe/public/js/form_builder/components/controls/TableControl.vue:62 msgid "Create Child Doctype" @@ -5620,28 +5662,28 @@ 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:512 msgctxt "Create a new document from list view" msgid "Create New" -msgstr "" +msgstr "Crea Nuovo" #: frappe/core/doctype/doctype/doctype_list.js:100 msgid "Create New DocType" @@ -5649,35 +5691,35 @@ 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:276 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" -msgstr "" +msgstr "Crea un nuovo {0}" #: frappe/www/login.html:162 msgid "Create a {0} Account" @@ -5689,11 +5731,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:507 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." @@ -5715,9 +5757,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 +5769,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 +5785,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 +5800,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 +5856,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 +5926,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 +5937,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 +5962,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 +5980,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 +6032,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 +6056,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 +6067,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." @@ -6066,17 +6108,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:1943 msgctxt "Button in list view menu" msgid "Customize" -msgstr "" +msgstr "Personalizza" #: frappe/custom/doctype/customize_form/customize_form.js:89 msgid "Customize Child Table" @@ -6094,7 +6136,7 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" -msgstr "" +msgstr "Personalizza Modulo" #: frappe/custom/doctype/customize_form/customize_form.js:100 msgid "Customize Form - {0}" @@ -6119,26 +6161,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" @@ -6194,12 +6236,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 +6259,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 +6270,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 +6292,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 +6306,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 @@ -6314,7 +6356,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 +6367,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "" @@ -6334,7 +6376,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 +6396,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6367,7 +6409,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 +6430,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 +6493,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 +6536,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,17 +6702,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 @@ -6715,21 +6757,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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" -msgstr "" +msgstr "Eliminare" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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" @@ -6771,7 +6818,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 +6851,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6849,6 +6896,10 @@ msgstr "" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Eliminato!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "" @@ -6864,8 +6915,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 +6926,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:301 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 +6959,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 +6994,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 +7014,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 +7021,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 +7037,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 +7106,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 +7114,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 +7167,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 +7184,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 +7193,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 +7243,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 +7257,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 +7267,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 +7308,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 +7317,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 +7326,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,16 +7344,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "" @@ -7410,7 +7447,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 +7494,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 +7507,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 +7540,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 +7554,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,19 +7616,19 @@ 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 "" @@ -7610,7 +7647,7 @@ msgstr "" #: 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 +7709,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 @@ -7749,7 +7786,7 @@ msgstr "" #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" -msgstr "" +msgstr "Tipo Documento" #: frappe/desk/doctype/number_card/number_card.py:59 msgid "Document Type and Function are required to create a number card" @@ -7788,7 +7825,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:1955 msgid "Document Unlocked" msgstr "" @@ -7796,17 +7833,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 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 +7983,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:467 #: 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:242 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 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 +8057,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 +8065,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." @@ -8044,18 +8081,18 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 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 +8102,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" @@ -8081,7 +8118,7 @@ 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 +8193,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 +8211,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:1776 #: 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:350 #: 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:2254 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:349 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 +8262,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:1970 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 msgid "Edit Format" -msgstr "" +msgstr "Modifica formato" #: frappe/public/js/frappe/form/quick_entry.js:326 msgid "Edit Full Form" @@ -8297,7 +8334,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 +8357,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 +8371,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 "" @@ -8358,7 +8395,7 @@ 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 +8406,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,6 +8427,7 @@ 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' @@ -8403,6 +8441,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 @@ -8414,7 +8453,7 @@ msgstr "" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" -msgstr "" +msgstr "E-mail" #. Label of a Link in the Tools Workspace #. Label of the email_account (Link) field in DocType 'Communication' @@ -8443,7 +8482,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 "" @@ -8533,7 +8572,7 @@ msgstr "" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" -msgstr "" +msgstr "Id Email" #. Label of the email_inbox (Section Break) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -8574,9 +8613,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 +8640,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 +8681,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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 "" @@ -8712,7 +8751,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 +8769,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 +8777,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 +8793,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 +8870,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 +8877,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 +8889,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 +8899,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 +8911,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 +8924,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 +8950,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 +8970,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 +8986,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 +9002,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 +9050,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 +9081,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 +9109,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 +9120,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 +9138,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,7 +9153,7 @@ 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 @@ -9156,9 +9188,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "" @@ -9178,7 +9210,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9245,7 +9277,7 @@ msgstr "" #: frappe/public/js/frappe/ui/notifications/notifications.js:56 msgid "Events" -msgstr "" +msgstr "Eventi" #: frappe/desk/doctype/event/event.py:274 msgid "Events in Today's Calendar" @@ -9255,13 +9287,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 +9363,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 +9371,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "" @@ -9358,14 +9390,14 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" @@ -9398,7 +9430,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 +9460,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:1811 +#: 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:2276 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 +9487,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 +9503,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9512,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 "" @@ -9492,7 +9526,7 @@ 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 +9577,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 +9589,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 +9606,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 +9622,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 +9646,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 "" @@ -9625,7 +9659,7 @@ msgstr "" 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 "" @@ -9637,8 +9671,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 +9688,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 +9708,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 +9740,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 +9760,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 +9819,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:1870 #: 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 +9842,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9870,11 +9898,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,16 +9920,16 @@ 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:454 #: 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 "" @@ -9925,11 +9953,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9980,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 @@ -10001,7 +10029,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10012,7 +10040,7 @@ 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 msgid "File \"{0}\" was skipped because of invalid file type" @@ -10097,7 +10125,7 @@ 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 @@ -10105,7 +10133,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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 +10141,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,7 +10163,7 @@ 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 @@ -10164,7 +10192,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 +10206,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 +10230,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,7 +10247,7 @@ 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 "" @@ -10230,18 +10264,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 "" @@ -10268,7 +10302,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.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 @@ -10294,7 +10328,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 +10361,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 "" @@ -10396,12 +10430,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 +10445,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 +10469,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,7 +10485,7 @@ 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 @@ -10472,12 +10506,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 +10521,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 +10529,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 +10580,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:2120 +#: 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 +10614,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 +10628,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,10 +10683,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 +10743,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 +10775,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 +10809,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 +10818,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 +10872,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:1831 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 +10893,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 +10916,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' @@ -10949,7 +10988,7 @@ msgstr "" #: frappe/desk/page/setup_wizard/install_fixtures.py:32 msgid "Genderqueer" -msgstr "" +msgstr "Non Binario" #: frappe/www/contact.html:29 msgid "General" @@ -10968,6 +11007,12 @@ 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 msgid "Generate Tracking URL" @@ -10992,7 +11037,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "" @@ -11033,7 +11078,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 +11100,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 +11153,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" @@ -11152,18 +11197,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,7 +11219,7 @@ msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Calendar" -msgstr "" +msgstr "Calendario Google" #: frappe/integrations/doctype/google_calendar/google_calendar.py:810 msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" @@ -11233,7 +11278,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 +11295,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 +11315,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 +11325,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 +11333,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 +11343,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 +11358,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 +11397,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 @@ -11404,26 +11444,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 +11476,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 @@ -11449,12 +11488,11 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -11482,7 +11520,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 +11538,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,7 +11584,7 @@ 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 @@ -11565,7 +11603,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 +11649,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 +11683,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,7 +11713,7 @@ 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 @@ -11724,7 +11768,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 +11789,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 +11799,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 +11833,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 +11868,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "" @@ -11843,7 +11882,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 +11900,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 +11925,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 +12020,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/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 +12108,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,7 +12125,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12108,7 +12144,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 +12244,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 +12255,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 +12290,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 +12315,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 +12351,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:1120 msgid "Illegal SQL Query" msgstr "" @@ -12365,7 +12409,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 +12417,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,11 +12443,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12431,18 +12475,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:1907 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 +12641,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,11 +12694,11 @@ 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 @@ -12693,7 +12737,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,7 +12754,7 @@ 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" @@ -12728,7 +12772,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12752,7 +12796,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 +12840,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 +12854,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 +12867,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:1876 msgid "Insert After" msgstr "" @@ -12841,15 +12885,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 +12903,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,9 +12927,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 @@ -12908,7 +12956,7 @@ msgstr "" 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 +12975,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 +12989,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 +13000,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 +13019,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 +13057,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:849 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13038,7 +13086,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,7 +13106,11 @@ 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 "" @@ -13085,7 +13137,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 +13151,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 +13160,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 "" @@ -13125,15 +13177,15 @@ msgstr "" 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:1239 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 msgid "Invalid Phone Number" @@ -13148,7 +13200,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 "" @@ -13161,7 +13213,7 @@ msgstr "" #: 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,7 +13223,7 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" @@ -13183,6 +13235,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13199,7 +13255,7 @@ msgstr "" 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 "" @@ -13235,19 +13291,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13275,12 +13327,20 @@ msgstr "" 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 +13348,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 "" @@ -13300,6 +13364,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13316,7 +13384,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 +13393,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:627 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 +13415,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 "" @@ -13397,7 +13502,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 @@ -13431,7 +13536,7 @@ 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 @@ -13486,7 +13591,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 "" @@ -13602,12 +13707,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 +13721,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 +13739,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 +13753,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 +13770,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 +13779,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 +13827,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' @@ -13760,11 +13865,11 @@ msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_view.js:265 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 +13879,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 +13902,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 +13937,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 +14049,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,7 +14150,7 @@ 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 msgid "Landscape" @@ -14056,10 +14163,10 @@ msgstr "" #: 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/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 +14207,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 @@ -14147,7 +14254,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.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 +14267,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 +14288,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 +14301,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 +14349,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,7 +14392,7 @@ 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!" @@ -14297,7 +14404,7 @@ 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,7 +14447,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14402,7 +14509,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 +14531,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 +14543,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 +14569,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 +14583,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 +14597,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 +14624,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 +14684,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 +14697,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 +14710,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,6 +14728,10 @@ 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' @@ -14657,7 +14756,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 +14782,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:1987 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 +14825,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 +14834,11 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" -msgstr "" +msgstr "Carica altro" #: frappe/public/js/frappe/form/footer/form_timeline.js:215 msgctxt "Form timeline" @@ -14754,12 +14852,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 msgid "Loading" -msgstr "" +msgstr "Caricamento" #: frappe/public/js/frappe/widgets/widget_dialog.js:107 msgid "Loading Filters..." @@ -14769,7 +14867,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 +14877,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:179 #: 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 +14936,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 +14954,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 +14984,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}" @@ -14978,9 +15076,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:202 msgid "Logout All Sessions" msgstr "" @@ -14999,7 +15097,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 +15124,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 +15139,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 +15153,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 @@ -15121,11 +15219,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 +15258,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:509 msgid "Mandatory Information missing:" msgstr "" @@ -15180,10 +15278,10 @@ msgstr "" 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 +15308,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 +15317,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 +15359,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 +15375,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 +15387,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 +15441,7 @@ msgstr "" msgid "Max auto email report per user" 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 "" @@ -15358,22 +15454,17 @@ msgstr "" 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" @@ -15394,7 +15485,7 @@ 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/integrations/doctype/webhook/webhook.js:96 @@ -15410,7 +15501,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 +15521,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 "" @@ -15470,12 +15561,12 @@ msgstr "" #: 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 +15578,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 +15594,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 +15624,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,7 +15691,7 @@ msgstr "" #: frappe/__init__.py:468 msgid "Method Not Allowed" -msgstr "" +msgstr "Metodo Non Consentito" #: frappe/desk/doctype/number_card/number_card.py:73 msgid "Method is required to create a number card" @@ -15624,7 +15707,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json msgid "Middle Name" -msgstr "" +msgstr "Secondo Nome" #. Name of a DocType #. Label of a Link in the Tools Workspace @@ -15659,7 +15742,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 +15769,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 msgid "Missing Fields" -msgstr "" +msgstr "Campi Mancanti" #: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" @@ -15710,18 +15793,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' @@ -15779,7 +15862,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 +15875,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 +15883,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 +15902,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 +15910,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 +15934,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 @@ -15942,7 +16025,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.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 +16040,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,7 +16051,7 @@ 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 msgid "Move To" @@ -16023,7 +16106,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 +16114,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 "" @@ -16071,18 +16154,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:498 #: 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,7 +16195,7 @@ 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/views/file/file_view.js:97 @@ -16128,7 +16211,7 @@ msgstr "" 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 "" @@ -16189,7 +16272,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 +16284,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 +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:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16319,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16270,7 +16353,7 @@ msgstr "" #: 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 +16369,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 +16377,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 "" @@ -16351,7 +16430,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 +16444,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:190 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 +16458,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 +16476,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 +16510,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 +16520,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 +16534,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:411 msgid "New {0}" -msgstr "" +msgstr "Nuovo {0}" #: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" @@ -16477,7 +16556,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 +16564,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 +16684,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/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 +16742,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 +16764,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 +16781,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:716 +#: frappe/printing/page/print/print.js:797 #: 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:1744 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16817,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "" @@ -16753,13 +16837,13 @@ 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 msgid "No Select Field Found" -msgstr "" +msgstr "Campo Selezione Non Trovato" #: frappe/core/doctype/recorder/recorder.py:179 msgid "No Suggestions" @@ -16771,13 +16855,13 @@ 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:232 msgid "No alerts for today" msgstr "" @@ -16805,19 +16889,15 @@ 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 "" @@ -16837,13 +16917,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 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 +16935,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" @@ -16867,7 +16951,7 @@ msgstr "" #: frappe/public/js/frappe/web_form/web_form_list.js:161 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 +16993,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:947 msgid "No permission to read {0}" msgstr "" @@ -16935,9 +17019,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 "" @@ -16959,11 +17043,11 @@ msgstr "" #: frappe/public/js/frappe/web_form/web_form_list.js:233 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:497 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" @@ -16973,7 +17057,7 @@ msgstr "" #: frappe/public/js/frappe/form/grid_row.js:256 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 +17097,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 "" @@ -17062,18 +17146,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17083,11 +17166,11 @@ msgstr "" #: 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/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 +17200,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 +17216,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17244,7 @@ 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 "" @@ -17170,18 +17253,18 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17299,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17230,7 +17313,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 +17323,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 +17360,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 +17371,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17430,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 +17444,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,7 +17488,7 @@ 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 "" @@ -17446,7 +17528,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 +17545,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 +17566,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 +17589,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 +17602,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 +17656,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 +17725,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 "" @@ -17728,7 +17810,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 "" @@ -17772,7 +17854,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" @@ -17804,12 +17886,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 +17928,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 +17946,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 +17954,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17969,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 +17984,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 +18001,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:2130 msgid "Operator must be one of {0}" msgstr "" @@ -17925,7 +18011,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 +18029,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 "" @@ -17975,7 +18061,7 @@ msgstr "" 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 +18070,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 +18078,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 "" @@ -18036,8 +18122,8 @@ msgstr "" 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 +18154,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 +18176,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,7 +18189,7 @@ msgstr "" #: frappe/public/js/frappe/form/templates/form_dashboard.html:5 msgid "Overview" -msgstr "" +msgstr "Panoramica" #: frappe/core/report/transaction_log_report/transaction_log_report.py:100 msgid "Owner" @@ -18116,11 +18202,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:1796 msgid "PDF" -msgstr "" +msgstr "PDF" #: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 msgid "PDF Generation in Progress" @@ -18129,7 +18215,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 +18245,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 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 +18281,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 +18303,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 +18330,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 +18352,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 +18371,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 +18412,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,19 +18434,19 @@ 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 msgid "Parent Document Type is required to create a number card" @@ -18379,27 +18465,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 +18535,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 +18552,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18563,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18576,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18593,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 +18605,27 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 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 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:210 msgid "Passwords do not match!" msgstr "" @@ -18605,13 +18695,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 +18714,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' @@ -18711,7 +18803,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 +18836,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18782,7 +18874,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 +18890,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,7 +18900,7 @@ msgstr "" #. Name of a DocType #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Personal Data Download Request" -msgstr "" +msgstr "Richiesta di Download dei Dati Personali" #. Label of the phone (Data) field in DocType 'Address' #. Label of the phone (Data) field in DocType 'Contact' @@ -18829,7 +18921,7 @@ msgstr "" #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Phone" -msgstr "" +msgstr "Telefono" #. Label of the phone_no (Data) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -18841,8 +18933,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18861,7 +18953,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 +18972,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 +18994,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 +19006,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18934,10 +19026,6 @@ 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 "" @@ -18946,7 +19034,7 @@ msgstr "" 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:1072 msgid "Please check your email for verification" msgstr "" @@ -18960,7 +19048,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,7 +19066,7 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19008,8 +19096,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19048,7 +19136,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 +19154,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 +19167,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 "" @@ -19101,7 +19190,7 @@ msgstr "" msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19206,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:1711 msgid "Please save the report first" msgstr "" @@ -19153,7 +19242,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 +19254,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,19 +19280,19 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 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 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 "" @@ -19239,23 +19328,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 +19365,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 +19400,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,7 +19417,7 @@ 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 msgid "Portrait" @@ -19366,14 +19455,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19470,7 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19445,7 +19526,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 "" @@ -19473,20 +19554,13 @@ msgstr "" #: 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 +19589,24 @@ 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 +19622,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 +19652,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 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 +19682,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19648,7 +19722,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 @@ -19674,7 +19748,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' @@ -19716,11 +19790,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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: 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 +19839,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "" @@ -19779,18 +19853,18 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 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 +19882,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 +19893,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:" @@ -19845,7 +19919,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "" @@ -19855,7 +19929,7 @@ 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 @@ -19868,12 +19942,12 @@ msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_view.js:408 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 "" @@ -19918,7 +19992,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 +20019,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 +20033,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 +20052,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 +20093,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 +20119,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 +20143,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 "" @@ -20097,8 +20158,8 @@ msgid "QR Code for Login Verification" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "" +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 +20208,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 +20279,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 +20308,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20345,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 @@ -20326,7 +20381,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 +20398,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 +20418,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 +20455,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 "" @@ -20476,13 +20526,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 +20543,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 +20583,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 +20600,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 +20651,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 @@ -20771,7 +20834,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 +20867,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20837,18 +20900,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:534 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:374 #: 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 +20941,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 +20962,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 +20993,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 +21077,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 +21088,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 +21170,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 @@ -21161,7 +21224,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:615 #: 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 +21232,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 +21278,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,9 +21291,9 @@ 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:1956 msgid "Report Name" -msgstr "" +msgstr "Nome del Rapporto" #: frappe/desk/doctype/number_card/number_card.py:69 msgid "Report Name, Report Field and Fucntion are required to create a number card" @@ -21260,13 +21323,13 @@ 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:1810 msgid "Report cannot be set for Single types" msgstr "" @@ -21292,20 +21355,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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 "" @@ -21328,7 +21391,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 "" @@ -21456,13 +21519,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "" @@ -21470,15 +21533,15 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21572,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21547,6 +21610,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 +21620,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 +21664,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 "" @@ -21671,9 +21730,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 +21743,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 +21764,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 +21785,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 +21797,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,14 +21812,14 @@ 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' @@ -21773,12 +21832,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:1929 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 +21848,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 +21877,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 +21887,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 +21924,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 +21944,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 +21955,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,7 +21972,7 @@ 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 @@ -21926,12 +21983,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21939,7 +21996,7 @@ msgstr "" msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21967,7 +22024,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,25 +22032,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22005,7 +22062,7 @@ 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 +22127,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 +22144,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 +22161,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 +22201,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 +22224,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 +22252,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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,24 +22274,20 @@ 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:1735 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:1951 msgid "Save Report" msgstr "" @@ -22257,26 +22310,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 +22339,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 +22356,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 +22388,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 "" @@ -22372,7 +22425,7 @@ 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." @@ -22433,7 +22486,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 +22508,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 +22557,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 +22591,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..." @@ -22619,10 +22672,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,31 +22719,31 @@ 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:615 #: 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:497 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 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 "" @@ -22737,7 +22790,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 +22807,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:489 #: 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,7 +22826,7 @@ 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 msgid "Select Google Calendar to which event should be synced." @@ -22805,8 +22861,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:598 msgid "Select Network Printer" msgstr "" @@ -22874,11 +22930,11 @@ msgstr "" msgid "Select a group node first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22888,7 +22944,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 +22954,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 +22964,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,18 +23004,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 +23027,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 +23088,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 +23104,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 +23151,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 +23174,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 +23188,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "" @@ -23151,7 +23207,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 +23241,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 +23251,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 +23266,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 +23282,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 "" @@ -23253,9 +23309,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 +23343,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,11 +23352,11 @@ 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 msgid "Session Expired" @@ -23341,7 +23397,7 @@ 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 @@ -23360,7 +23416,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:2104 msgid "Set Level" msgstr "" @@ -23412,12 +23468,12 @@ 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:136 #: 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 @@ -23427,11 +23483,11 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 msgid "Set all private" -msgstr "" +msgstr "Imposta come privato" #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 msgid "Set all public" -msgstr "" +msgstr "Imposta tutto come pubblico" #: frappe/printing/doctype/print_format/print_format.js:49 msgid "Set as Default" @@ -23538,12 +23594,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 +23611,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 +23629,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 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 +23662,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 +23670,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 +23692,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 +23708,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 +23716,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 +23730,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 +23770,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23762,7 +23803,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 +23815,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 +23838,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 +23884,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 +23898,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:1845 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 +23915,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 +23931,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 +23945,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 +23955,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 +23969,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 +24003,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 +24027,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 +24060,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 +24068,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 "" @@ -24091,7 +24128,7 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "" @@ -24107,7 +24144,7 @@ msgstr "" #: frappe/public/js/frappe/views/file/file_view.js:337 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 +24198,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 +24219,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 +24249,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 +24296,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 +24361,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,13 +24396,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24373,6 +24409,10 @@ msgstr "" 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 +24422,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 +24467,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/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 +24500,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 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,7 +24516,7 @@ 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 msgid "Standard Print Format cannot be updated" @@ -24516,8 +24562,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 +24571,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 +24598,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 +24611,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 @@ -24598,7 +24644,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 +24667,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 +24700,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 +24725,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 +24733,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 +24756,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 +24771,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:454 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 +24793,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 +24801,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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 +24824,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 +24835,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 +24850,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 +24861,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 @@ -24836,7 +24888,7 @@ msgstr "" #: 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 +24899,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24870,32 +24922,32 @@ msgstr "" #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 msgid "Submit" -msgstr "" +msgstr "Conferma" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 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:63 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 +24958,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 +24970,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 +24982,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +24991,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 +25018,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 +25032,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:1171 #: 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 +25042,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 +25074,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 +25125,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 +25168,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 +25185,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 +25197,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 +25247,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25224,12 +25270,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 +25305,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 +25370,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 +25453,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 +25469,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 +25485,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 +25527,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 +25536,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,7 +25558,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "" @@ -25521,7 +25569,7 @@ 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 +25591,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 +25650,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 +25677,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "" @@ -25656,17 +25711,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 +25749,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 +25773,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:1193 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,7 +25784,7 @@ 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 "" @@ -25737,7 +25792,7 @@ msgstr "" 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 +25806,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 +25833,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 +25841,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25873,7 +25928,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,11 +25941,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -25927,7 +25982,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 +25993,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 +26003,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,7 +26016,7 @@ 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!" @@ -25976,7 +26031,7 @@ msgstr "" 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,9 +26043,13 @@ 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 "" +msgstr "Al momento non c'è nulla di nuovo da mostrare." #: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" @@ -26010,7 +26069,7 @@ msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_view.js:182 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 +26079,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 +26091,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 +26112,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' @@ -26106,13 +26165,13 @@ 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 "" @@ -26126,7 +26185,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 +26206,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' @@ -26174,7 +26233,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 +26252,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26276,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 +26294,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:423 msgid "This may get printed on multiple pages" msgstr "" @@ -26288,7 +26341,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 +26362,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 +26373,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:1253 msgid "Throttled" msgstr "" @@ -26385,7 +26438,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 @@ -26405,7 +26458,7 @@ msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" -msgstr "" +msgstr "Fuso Orario" #. Label of the time_zones (Text) field in DocType 'Country' #: frappe/geo/doctype/country/country.json @@ -26472,11 +26525,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 "" @@ -26525,9 +26578,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 +26602,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 +26622,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 +26637,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 +26659,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 +26690,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' @@ -26700,7 +26747,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 +26765,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 +26773,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 +26781,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 +26789,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:1960 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 +26839,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 +26855,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26816,7 +26863,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 +26883,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 +26896,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 +26917,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -26881,22 +26928,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 +26963,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 "" @@ -27015,7 +27062,7 @@ 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 +27073,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 +27092,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "" @@ -27051,7 +27103,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 +27114,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 +27128,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 +27140,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 +27187,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 +27222,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 @@ -27212,7 +27264,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 +27298,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,7 +27340,7 @@ msgstr "" #: frappe/website/doctype/top_bar_item/top_bar_item.json #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL" -msgstr "" +msgstr "URL" #. Description of the 'Documentation Link' (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -27364,7 +27416,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 +27428,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}" @@ -27417,7 +27469,7 @@ 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" @@ -27440,7 +27492,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' @@ -27482,8 +27534,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 +27550,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 @@ -27572,7 +27623,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:427 msgid "Update" msgstr "" @@ -27648,7 +27699,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 +27707,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 "" @@ -27714,29 +27765,29 @@ msgstr "" #: 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 msgid "Upload file" -msgstr "" +msgstr "Carica file" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 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 +27828,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' @@ -27829,7 +27880,7 @@ msgstr "" 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 +27901,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 +27912,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 +27927,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 +27941,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 +27958,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 +27992,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 +28004,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 +28033,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 +28056,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 +28073,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 +28093,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" -msgstr "" +msgstr "Autorizzazioni Utente" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 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 +28116,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 +28126,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 +28137,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 +28155,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 +28184,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 +28218,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 +28239,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28210,9 +28266,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 +28352,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 @@ -28335,7 +28391,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 @@ -28368,7 +28424,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28414,20 +28470,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 +28524,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 +28534,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 +28545,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:156 msgid "View Doctype Permissions" -msgstr "" +msgstr "Visualizza Permessi Documento" #: frappe/core/doctype/file/file.js:4 msgid "View File" @@ -28519,10 +28567,10 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: 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 +28600,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 +28614,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 +28623,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 @@ -28643,7 +28691,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 +28739,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 +28747,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,7 +28770,7 @@ 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 @@ -28741,14 +28789,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 +28825,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 +28854,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 +28880,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 +28893,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 +28905,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 +28929,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 +28945,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 +28956,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 +28968,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 +28982,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 +29092,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 +29153,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 "" @@ -29151,7 +29190,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 +29245,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 +29271,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 +29283,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,11 +29322,11 @@ 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 msgid "Workspace {0} does not exist" @@ -29298,7 +29352,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 +29370,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 +29398,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 +29419,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 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,16 +29437,16 @@ 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 @@ -29403,12 +29457,12 @@ 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 +29502,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/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" @@ -29532,11 +29587,11 @@ msgstr "" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29615,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 +29641,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 "" @@ -29619,7 +29678,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 +29688,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 "" @@ -29659,11 +29718,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,13 +29740,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:386 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}" @@ -29732,7 +29791,7 @@ msgstr "" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,7 +29803,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29756,19 +29815,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29835,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 +29855,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:501 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 +29872,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:804 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:645 msgid "You must login to submit this form" msgstr "" @@ -29853,13 +29908,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." @@ -29928,10 +29983,22 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -29985,21 +30052,29 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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' @@ -30025,7 +30100,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' @@ -30040,7 +30115,7 @@ 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 @@ -30077,12 +30152,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 +30168,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 +30206,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 +30254,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 +30313,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 +30326,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 +30343,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 +30373,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" @@ -30372,17 +30442,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 +30471,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 +30487,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 +30500,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 +30510,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 +30520,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,7 +30593,7 @@ 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 @@ -30568,7 +30633,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 +30644,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 +30659,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "" @@ -30659,6 +30724,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 +30755,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 +30769,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "" @@ -30731,17 +30800,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:635 +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 +30836,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 +30868,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:486 +#: 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 +30904,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 +30934,6 @@ msgstr "" 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 +30958,7 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30960,11 +31037,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,7 +31048,7 @@ 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 msgctxt "Form timeline" @@ -31009,7 +31082,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,16 +31104,16 @@ 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 "" @@ -31048,15 +31121,15 @@ msgstr "" 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 +31138,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 "" @@ -31117,8 +31190,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31199,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:174 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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 "" @@ -31154,19 +31227,23 @@ msgstr "" 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 "" @@ -31174,38 +31251,38 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" -#: 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:1835 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 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,7 +31308,7 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "" @@ -31267,7 +31344,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 +31357,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31330,11 +31407,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "" +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "{0} riga #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31431,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 +31448,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 "" @@ -31390,7 +31467,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:254 msgid "{0} updated" msgstr "" @@ -31434,7 +31511,7 @@ msgstr "" 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 "" @@ -31466,75 +31543,75 @@ msgstr "" 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31619,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31627,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 "" @@ -31567,7 +31644,7 @@ msgstr "" 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 +31668,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 +31676,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "" @@ -31644,5 +31721,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..87323e3b4e 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-08-31 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,19 @@ 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:363 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:259 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 +96,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 +116,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:892 msgid "1 = True & 0 = False" msgstr "" @@ -143,10 +139,6 @@ msgstr "" msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - #: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -244,6 +236,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 "" @@ -509,7 +509,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 +581,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,10 +590,6 @@ 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 "" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -611,7 +607,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 +707,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:452 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 +736,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +760,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:459 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 +807,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 @@ -892,7 +910,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "" @@ -1001,7 +1019,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:501 #: 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 +1030,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "" @@ -1024,7 +1042,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 "" @@ -1057,10 +1075,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1137,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 +1170,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "" @@ -1284,7 +1302,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 "" @@ -1392,7 +1410,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 "" @@ -1419,11 +1437,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1444,8 +1462,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 "" @@ -1600,7 +1618,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 +1678,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 +1699,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 +1747,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 +1981,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 +1989,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 "" @@ -2160,10 +2173,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 +2249,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 +2262,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2291,7 +2310,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 +2343,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2352,7 +2375,11 @@ 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 "" @@ -2428,7 +2455,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2491,6 +2518,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 +2592,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2674,7 +2712,7 @@ 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 "" @@ -2705,6 +2743,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 +2764,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 +2878,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 +2890,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 +2943,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 +2991,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 +3005,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 +3276,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 +3394,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 +3425,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 +3522,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,7 +3579,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "" @@ -3627,7 +3602,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 +3614,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 +3744,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 +3794,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 @@ -3887,7 +3847,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 "" @@ -3913,12 +3873,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3936,16 +3897,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3995,7 +3958,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 "" @@ -4015,11 +3978,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 "" @@ -4070,7 +4033,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 +4041,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 "" @@ -4107,7 +4070,7 @@ 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 "" @@ -4119,11 +4082,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4143,7 +4106,7 @@ msgstr "" 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 +4114,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 +4131,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:1129 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4288,7 +4251,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 +4321,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 +4354,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 +4362,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 "" @@ -4454,7 +4417,7 @@ 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 "" @@ -4507,7 +4470,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 +4482,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4545,7 +4508,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,7 +4520,11 @@ 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 "" @@ -4609,7 +4576,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4787,7 +4754,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4898,11 +4865,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4971,16 +4938,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 +4945,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 +4954,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 "" @@ -5074,7 +5031,7 @@ msgstr "" 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 "" @@ -5169,6 +5126,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 +5156,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:406 msgid "Configure Columns" msgstr "" @@ -5226,7 +5188,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5245,7 +5207,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "" @@ -5272,7 +5234,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 "" @@ -5399,7 +5361,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5407,7 +5368,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5415,24 +5375,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 "" @@ -5508,12 +5456,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5521,7 +5473,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:633 msgid "Correct version :" msgstr "" @@ -5542,10 +5494,10 @@ 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 "" @@ -5682,7 +5634,7 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" @@ -5695,7 +5647,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "" @@ -5707,7 +5659,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,10 +5667,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "" @@ -5735,7 +5687,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:507 msgid "Create your first {0}" msgstr "" @@ -5761,7 +5713,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 +5725,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 "" @@ -6110,14 +6062,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6261,7 +6213,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 "" @@ -6369,7 +6321,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "" @@ -6400,7 +6352,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6538,11 +6490,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6704,11 +6656,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 "" @@ -6759,10 +6711,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6770,11 +6722,16 @@ msgstr "" msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6815,7 +6772,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 +6805,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6893,6 +6850,10 @@ msgstr "" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "" @@ -6908,7 +6869,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 +6886,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -6952,7 +6913,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 +6948,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 +6968,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 +6977,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 +7060,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 +7121,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 +7138,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 +7147,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 +7197,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 +7211,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 +7221,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 +7239,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 +7262,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,16 +7298,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "" @@ -7455,7 +7402,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 +7449,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 +7462,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 +7495,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 +7509,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,19 +7571,19 @@ 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 "" @@ -7833,7 +7780,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:1955 msgid "Document Unlocked" msgstr "" @@ -7841,15 +7788,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "" @@ -7991,13 +7938,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "" @@ -8219,17 +8166,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:1776 #: 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:350 #: 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 +8184,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8247,7 +8194,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8276,7 +8223,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8379,7 +8326,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 +8335,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 "" @@ -8435,6 +8382,7 @@ 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' @@ -8448,6 +8396,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 @@ -8488,7 +8437,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 "" @@ -8619,9 +8568,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 +8636,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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 "" @@ -8757,7 +8706,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 +8732,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 +8825,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 +8832,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 +8844,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 +8867,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 +8880,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 +8906,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 +8926,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 +8942,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 +8958,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 +9006,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 +9076,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 +9096,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 "" @@ -9202,9 +9144,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "" @@ -9224,7 +9166,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9377,7 +9319,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 +9327,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "" @@ -9411,7 +9353,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" @@ -9444,7 +9386,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 +9416,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9515,7 +9459,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9524,11 +9468,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 "" @@ -9641,7 +9585,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 +9602,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 "" @@ -9671,7 +9615,7 @@ msgstr "" 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 "" @@ -9683,8 +9627,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 +9644,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 +9664,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 +9718,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 +9775,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:1870 #: 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 +9798,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9916,11 +9854,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9938,16 +9876,16 @@ 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:454 #: 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 "" @@ -9971,11 +9909,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9936,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 @@ -10047,7 +9985,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10151,7 +10089,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10210,7 +10148,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 +10162,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 +10186,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,7 +10203,7 @@ 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 "" @@ -10276,18 +10220,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 "" @@ -10375,11 +10319,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 "" @@ -10541,7 +10485,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 +10544,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:2120 +#: 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 +10571,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 +10585,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10702,7 +10640,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 +10700,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 +10732,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 +10829,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:1831 msgid "From Document Type" msgstr "" @@ -10905,18 +10856,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 "" @@ -11015,6 +10964,12 @@ 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 msgid "Generate Tracking URL" @@ -11039,7 +10994,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "" @@ -11345,11 +11300,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" @@ -11483,7 +11433,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 @@ -11496,7 +11445,6 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11658,6 +11606,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 @@ -11792,11 +11746,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 +11825,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "" @@ -11890,7 +11839,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 +11888,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 +11977,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12136,7 +12082,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12266,6 +12212,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 +12247,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 +12308,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:1120 msgid "Illegal SQL Query" msgstr "" @@ -12420,11 +12374,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,11 +12400,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12480,7 +12434,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12775,7 +12729,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12799,7 +12753,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 +12828,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:1876 msgid "Insert After" msgstr "" @@ -12890,7 +12844,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 +12862,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12926,7 +12884,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 "" @@ -12955,7 +12913,7 @@ msgstr "" 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 +13017,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:849 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13085,7 +13043,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,7 +13063,11 @@ 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 "" @@ -13146,7 +13108,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 +13117,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 "" @@ -13172,11 +13134,11 @@ msgstr "" 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:1239 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" @@ -13195,7 +13157,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 "" @@ -13218,7 +13180,7 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" @@ -13230,6 +13192,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13246,7 +13212,7 @@ msgstr "" 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 "" @@ -13282,19 +13248,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13322,12 +13284,20 @@ msgstr "" 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 +13305,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 "" @@ -13347,6 +13321,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13363,7 +13341,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 +13350,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:627 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 +13372,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 "" @@ -13533,7 +13548,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 "" @@ -13825,12 +13840,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 @@ -14103,7 +14120,7 @@ msgstr "" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14207,6 +14224,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 +14245,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" @@ -14387,7 +14404,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14483,20 +14500,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 +14540,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 +14554,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,6 +14685,10 @@ 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' @@ -14732,7 +14741,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14773,7 +14782,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 +14791,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14801,8 +14809,8 @@ 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 msgid "Loading" @@ -14816,7 +14824,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 +14834,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14887,7 +14895,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -15027,7 +15035,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "" @@ -15207,7 +15215,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:509 msgid "Mandatory Information missing:" msgstr "" @@ -15227,7 +15235,7 @@ msgstr "" 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 +15316,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 +15398,7 @@ msgstr "" msgid "Max auto email report per user" 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 "" @@ -15405,16 +15411,11 @@ msgstr "" 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 "" @@ -15484,7 +15485,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 "" @@ -15550,7 +15551,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 +15583,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 "" @@ -15739,7 +15732,7 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -16006,7 +15999,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 "" @@ -16080,7 +16073,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16121,7 +16114,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:498 #: 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,7 +16152,7 @@ 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/views/file/file_view.js:97 @@ -16175,7 +16168,7 @@ msgstr "" 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 +16180,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 +16220,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16264,12 +16257,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16284,7 +16277,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16334,10 +16327,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 +16335,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 "" @@ -16413,12 +16402,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:190 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 +16416,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 +16434,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 +16493,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:411 msgid "New {0}" msgstr "" @@ -16526,7 +16515,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 +16523,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 +16536,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,12 +16643,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16711,6 +16701,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 +16740,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16756,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "" @@ -16782,11 +16776,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "" @@ -16802,7 +16796,7 @@ 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 "" @@ -16826,7 +16820,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "" @@ -16854,19 +16848,15 @@ 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 "" @@ -16886,6 +16876,10 @@ 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 "" @@ -16958,7 +16952,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:947 msgid "No permission to read {0}" msgstr "" @@ -16986,7 +16980,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -17010,7 +17004,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17062,7 +17056,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 "" @@ -17111,18 +17105,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17132,9 +17125,9 @@ msgstr "" #: 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/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 +17159,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 +17175,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17203,7 @@ 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 "" @@ -17219,18 +17212,18 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17258,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17289,10 +17282,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 +17330,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17397,7 +17389,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,7 +17447,7 @@ 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 "" @@ -17569,11 +17561,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 +17684,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 "" @@ -17777,7 +17769,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 "" @@ -17821,7 +17813,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" @@ -17895,7 +17887,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 +17905,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 +17913,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17936,13 +17928,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 +17943,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 +17962,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "" @@ -17992,7 +17988,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 "" @@ -18024,7 +18020,7 @@ msgstr "" 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 +18029,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 +18037,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 "" @@ -18085,8 +18081,8 @@ msgstr "" 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 "" @@ -18165,9 +18161,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:1796 msgid "PDF" msgstr "" @@ -18208,11 +18204,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18384,7 +18380,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 "" @@ -18428,11 +18424,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 +18437,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 +18511,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18522,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18539,7 +18535,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18556,6 +18552,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 +18564,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18576,7 +18576,7 @@ msgstr "" 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 +18584,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "" @@ -18654,10 +18654,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 "" @@ -18793,16 +18795,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18890,8 +18892,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18951,11 +18953,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 +18965,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18983,10 +18985,6 @@ 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 "" @@ -18995,7 +18993,7 @@ msgstr "" 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:1072 msgid "Please check your email for verification" msgstr "" @@ -19027,7 +19025,7 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19057,8 +19055,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19097,7 +19095,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 +19132,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 "" @@ -19150,7 +19149,7 @@ msgstr "" msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19166,7 +19165,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:1711 msgid "Please save the report first" msgstr "" @@ -19202,7 +19201,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 +19213,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19240,7 +19239,7 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" @@ -19252,7 +19251,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 "" @@ -19288,23 +19287,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 +19324,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 "" @@ -19415,14 +19414,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19438,7 +19429,7 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19494,7 +19485,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 "" @@ -19529,13 +19520,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 +19548,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 @@ -19581,7 +19565,7 @@ msgstr "" 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 +19611,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19657,8 +19641,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19765,7 +19749,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19814,11 +19798,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "" @@ -19828,11 +19812,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19894,7 +19878,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "" @@ -19920,9 +19904,9 @@ 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 "" @@ -20008,24 +19992,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 +20013,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 +20102,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 "" @@ -20146,7 +20117,7 @@ msgid "QR Code for Login Verification" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20196,7 +20167,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 +20267,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20333,12 +20304,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 @@ -20375,7 +20340,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 +20357,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 +20414,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 +20429,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 "" @@ -20531,7 +20491,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 +20502,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 +20542,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 +20559,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" @@ -20853,15 +20826,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20886,18 +20859,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:534 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:374 #: 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 +21047,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 "" @@ -21277,7 +21250,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "" @@ -21315,7 +21288,7 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "" @@ -21341,20 +21314,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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 "" @@ -21377,7 +21350,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 "" @@ -21507,11 +21480,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "" @@ -21519,11 +21492,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21531,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21596,6 +21569,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 +21579,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 +21637,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 "" @@ -21720,9 +21689,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 +21730,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 +21744,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 @@ -21824,7 +21793,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21867,6 +21836,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 +21846,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 +21883,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 +21903,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 +21914,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 @@ -21975,12 +21942,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21988,7 +21955,7 @@ msgstr "" msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -22016,7 +21983,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,25 +21991,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22138,7 +22105,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 +22183,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 +22211,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22233,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:1735 msgid "Save As" msgstr "" @@ -22283,7 +22246,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "" @@ -22312,7 +22275,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 +22354,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 "" @@ -22559,7 +22522,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 "" @@ -22668,7 +22631,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 +22678,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22723,12 +22686,12 @@ 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:497 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" @@ -22739,7 +22702,7 @@ msgstr "" 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 "" @@ -22803,12 +22766,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:489 #: 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 "" @@ -22854,8 +22820,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:598 msgid "Select Network Printer" msgstr "" @@ -22923,11 +22889,11 @@ msgstr "" msgid "Select a group node first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22957,13 +22923,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22997,7 +22963,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 +23147,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "" @@ -23275,7 +23241,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 "" @@ -23304,7 +23270,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 "" @@ -23409,7 +23375,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:2104 msgid "Set Level" msgstr "" @@ -23463,7 +23429,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23607,14 +23573,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 +23591,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "" @@ -23700,11 +23661,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 +23680,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 +23732,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23909,7 +23860,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:1845 msgid "Show Tags" msgstr "" @@ -23926,7 +23877,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 +23917,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 +23965,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 +23995,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 +24030,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 "" @@ -24143,7 +24090,7 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "" @@ -24376,11 +24323,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,13 +24358,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24425,6 +24371,10 @@ msgstr "" 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 +24401,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 "" @@ -24512,7 +24468,7 @@ msgstr "" 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 "" @@ -24568,8 +24524,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 +24533,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 @@ -24650,7 +24606,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 +24662,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 +24687,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 +24695,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 +24733,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:454 msgid "Sticky" msgstr "" @@ -24805,6 +24763,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24899,7 +24861,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24924,7 +24886,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24934,7 +24896,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24958,7 +24920,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 +24932,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 +24944,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24991,11 +24953,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 +24980,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 +24994,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:1171 #: 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 +25036,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 +25087,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 +25209,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25376,6 +25332,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 +25415,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 +25489,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 +25498,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,7 +25520,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "" @@ -25608,11 +25566,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 +25639,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "" @@ -25750,7 +25715,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 +25739,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:1193 msgid "The CSV format is case sensitive" msgstr "" @@ -25786,7 +25751,7 @@ msgid "" "" msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" @@ -25794,7 +25759,7 @@ msgstr "" 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 +25801,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 +25809,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25945,11 +25910,11 @@ msgid "" "" 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 "" @@ -25986,7 +25951,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 "" @@ -26035,7 +26000,7 @@ msgstr "" 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,6 +26012,10 @@ 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 "" @@ -26079,11 +26048,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 "" @@ -26171,7 +26140,7 @@ 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 "" @@ -26235,7 +26204,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 +26223,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26278,12 +26247,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 +26265,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:423 msgid "This may get printed on multiple pages" msgstr "" @@ -26349,7 +26312,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 +26344,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:1253 msgid "Throttled" msgstr "" @@ -26533,11 +26496,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 "" @@ -26586,9 +26549,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 +26573,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 +26595,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 "" @@ -26793,7 +26750,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 +26766,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26859,7 +26816,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 +26832,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26937,10 +26894,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -26983,18 +26940,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 "" @@ -27094,6 +27051,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 +27070,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "" @@ -27119,7 +27081,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 +27165,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 "" @@ -27552,8 +27514,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 +27530,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27642,7 +27603,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:427 msgid "Update" msgstr "" @@ -27718,7 +27679,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 +27687,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 "" @@ -27899,7 +27860,7 @@ msgstr "" 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 +27881,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 +27892,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 +27907,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 +27921,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 +27938,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 +27972,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 +28036,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 +28055,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 +28078,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28136,7 +28096,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 +28164,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 +28198,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 +28219,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28282,7 +28248,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 +28332,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 "" @@ -28438,7 +28404,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28484,7 +28450,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 +28463,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 +28525,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28589,7 +28547,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28636,7 +28594,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 "" @@ -28713,7 +28671,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 "" @@ -28902,7 +28860,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 +28873,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 +28916,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 +29133,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 "" @@ -29276,7 +29225,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 +29251,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 +29263,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,7 +29302,7 @@ 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" @@ -29414,11 +29378,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 "" @@ -29441,7 +29405,7 @@ msgstr "" 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,7 +29424,7 @@ 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 "" @@ -29518,14 +29482,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29602,11 +29567,11 @@ msgstr "" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29630,7 +29595,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 +29621,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 "" @@ -29699,7 +29668,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 "" @@ -29729,11 +29698,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29751,7 +29720,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29802,7 +29771,7 @@ msgstr "" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29814,7 +29783,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29826,19 +29795,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29846,11 +29815,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 +29835,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:501 msgid "You haven't created a {0} yet" msgstr "" @@ -29887,11 +29852,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:804 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:645 msgid "You must login to submit this form" msgstr "" @@ -29923,12 +29888,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 @@ -29998,10 +29963,22 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -30055,10 +30032,18 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "" @@ -30163,7 +30148,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 +30293,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 +30355,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 +30370,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 "" @@ -30448,11 +30428,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 +30451,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 "" @@ -30664,19 +30639,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "" @@ -30729,6 +30704,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 +30735,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 +30749,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "" @@ -30803,10 +30782,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30818,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 +30848,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:486 +#: 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 +30884,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 "" @@ -30926,7 +30914,6 @@ msgstr "" 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 +30938,7 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -31030,11 +31017,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 "" @@ -31101,7 +31084,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,7 +31093,7 @@ 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 "" @@ -31118,15 +31101,15 @@ msgstr "" 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 +31118,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 "" @@ -31187,8 +31170,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "" @@ -31196,15 +31179,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:174 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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 "" @@ -31224,19 +31207,23 @@ msgstr "" 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 "" @@ -31244,31 +31231,31 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" -#: 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:1835 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31301,7 +31288,7 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "" @@ -31337,7 +31324,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 +31337,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:1211 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31400,11 +31387,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "" @@ -31424,11 +31411,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 +31428,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 "" @@ -31460,7 +31447,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:254 msgid "{0} updated" msgstr "" @@ -31504,7 +31491,7 @@ msgstr "" 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 "" @@ -31536,75 +31523,75 @@ msgstr "" 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31599,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31620,7 +31607,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 "" @@ -31637,7 +31624,7 @@ msgstr "" 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 +31648,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 +31656,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "" diff --git a/frappe/locale/nb.po b/frappe/locale/nb.po new file mode 100644 index 0000000000..2b7290c19d --- /dev/null +++ b/frappe/locale/nb.po @@ -0,0 +1,31863 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: developers@frappe.io\n" +"POT-Creation-Date: 2025-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:29\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:363 +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:259 +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:892 +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:954 +msgid "1 Report" +msgstr "1 Rapport" + +#: frappe/tests/test_utils.py:716 +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:714 +msgid "1 hour ago" +msgstr "1 time siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:48 +#: frappe/tests/test_utils.py:712 +msgid "1 minute ago" +msgstr "1 minutt siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:66 +#: frappe/tests/test_utils.py:720 +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/tests/test_utils.py:711 +msgid "1 second ago" +msgstr "1 sekund siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:62 +#: frappe/tests/test_utils.py:718 +msgid "1 week ago" +msgstr "1 uke siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:70 +#: frappe/tests/test_utils.py:722 +msgid "1 year ago" +msgstr "1 år siden" + +#: frappe/tests/test_utils.py:715 +msgid "2 hours ago" +msgstr "2 timer siden" + +#: frappe/tests/test_utils.py:721 +msgid "2 months ago" +msgstr "2 måneder siden" + +#: frappe/tests/test_utils.py:719 +msgid "2 weeks ago" +msgstr "2 uker siden" + +#: frappe/tests/test_utils.py:723 +msgid "2 years ago" +msgstr "2 år siden" + +#: frappe/tests/test_utils.py:713 +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:717 +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!
    " + +#. 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 (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 doktype. 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 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 DocType'en inneholder innstillinger relatert til alle tre." + +#: 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:257 +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:452 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:449 +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:459 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:491 +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:1884 +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:841 +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:501 +#: 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:454 +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:36 +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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 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 tagger" + +#: frappe/public/js/frappe/list/list_view.js:2145 +msgctxt "Button in list view actions menu" +msgid "Add Tags" +msgstr "Legg til tagger" + +#: 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:16 +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 ToDo" + +#: 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 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/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/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/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 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 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/transaction_log/transaction_log.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Administrator" +msgstr "Administrator" + +#: frappe/core/doctype/user/user.py:1224 +msgid "Administrator Logged In" +msgstr "Administratoren er logget inn" + +#: frappe/core/doctype/user/user.py:1218 +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:62 +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:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "Alias kan ikke være et SQL-nøkkelord: {0}" + +#: frappe/database/query.py:1533 +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 "Allokalisert 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 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 DocType, DocType. 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" + +#. 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 '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 "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." + +#: 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." + +#. 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 (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" + +#. 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 "" + +#. 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:2130 +msgctxt "Button in list view actions menu" +msgid "Apply Assignment Rule" +msgstr "Bruk tilordningsregel" + +#: 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 brukertillatelser" + +#. 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" + +#. 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" + +#: 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:2109 +msgid "Are you sure you want to clear the assignments?" +msgstr "Er du sikker på at du vil slette 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 "" + +#: 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:968 +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:108 +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" + +#. 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:2091 +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 "Tilordne til den som har færrest oppdrag" + +#: 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 "Oppdrag" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assignment Completed" +msgstr "Oppdrag 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 tilordnede dager" + +#. 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 "Tilordningsregel" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +msgid "Assignment Rule Day" +msgstr "Dag for tilordningsregel" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +msgid "Assignment Rule User" +msgstr "Bruker for tilordningsregel" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +msgid "Assignment Rule is not allowed on document type {0}" +msgstr "Tildelingsregelen er ikke tillatt på dokumenttypen {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 tilordning" + +#: frappe/desk/doctype/notification_log/notification_log.py:153 +msgid "Assignment Update on {0}" +msgstr "Oppdatering av tilordnet 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 "Tilordning 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 "Tilordninger" + +#. 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:696 +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 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 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:142 +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:324 +#: 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:104 +msgid "Attempting Connection to QZ Tray..." +msgstr "Forsøker å koble til QZ-skuff..." + +#: frappe/public/js/frappe/form/print_utils.js:120 +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 tilordning 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 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 "Bygg" + +#. 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:1189 +msgid "Bulk Edit {0}" +msgstr "Masseredigering {0}" + +#: frappe/desk/reportview.py:602 +msgid "Bulk Operation Failed" +msgstr "Massehandling mislyktes" + +#: frappe/desk/reportview.py:606 +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 \"Navngiving av serier\"" + +#: 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 "" + +#: 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 "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:1729 +#: 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 "" + +#: 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 "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 "" + +#: 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 "Kan bare liste ned dokumenttypene som har blitt linket til dokumenttypen Bruker." + +#: 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:130 +#: 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:2200 +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:2205 +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 "" + +#: frappe/core/page/permission_manager/permission_manager.py:156 +msgid "Cannot Remove" +msgstr "" + +#: frappe/model/base_document.py:1161 +msgid "Cannot Update After Submit" +msgstr "Kan ikke oppdatere etter registrering" + +#: frappe/core/doctype/file/file.py:621 +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 "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:1013 +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:1027 +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:153 +msgid "Cannot delete Home and Attachments folders" +msgstr "Kan ikke slette Hjem- og Vedlegg-mappene" + +#: frappe/model/delete_doc.py:379 +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:1033 +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:277 +#: frappe/desk/doctype/number_card/number_card.js:364 +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 som ikke kan registreres" + +#: frappe/core/doctype/file/file.py:252 +msgid "Cannot find file {} on disk" +msgstr "" + +#: frappe/core/doctype/file/file.py:561 +msgid "Cannot get file contents of a Folder" +msgstr "" + +#: frappe/printing/page/print/print.js:857 +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:1133 +msgid "Cannot import table with more than 5000 rows." +msgstr "" + +#: frappe/model/document.py:1101 +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 "" + +#: 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:175 +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 "Kan ikke dele {0} med registreringstillatelse ettersom dokumenttypen {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 "" + +#: frappe/model/db_query.py:1129 +msgid "Cannot use sub-query here." +msgstr "" + +#: frappe/model/db_query.py:1157 +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 "Store bokstaver hjelper ikke noe særlig." + +#: 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 "Kortskille" + +#: 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 "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 "" + +#. 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 "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/core/report/transaction_log_report/transaction_log_report.py:82 +msgid "Chain Integrity" +msgstr "Kjedeintegritet" + +#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json +msgid "Chaining Hash" +msgstr "Kjede-hash" + +#: 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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "" + +#: 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 "" + +#. 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 "" + +#. 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:52 +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "" + +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:651 +msgid "Choose Existing Card or create New Card" +msgstr "Velg eksisterende kort eller opprett nytt kort" + +#: 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 "Velg autentiseringsmetode som skal brukes av alle brukere" + +#. Label of the city (Data) field in DocType 'Contact Us Settings' +#: 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 "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:2106 +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:518 +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 "" + +#: 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 "" + +#: 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:215 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:99 +#: frappe/website/doctype/web_form/web_form.js:236 +msgid "Click table to edit" +msgstr "Klikk på tabellen for å redigere" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: frappe/desk/doctype/number_card/number_card.js:402 +msgid "Click to Set Dynamic Filters" +msgstr "Klikk for å angi dynamiske filtre" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "Klikk for å angi filtre" + +#: frappe/public/js/frappe/list/list_view.js:739 +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 "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 "" + +#. 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 "Kundeinformasjon" + +#. 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 "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 "Kundehemmelig innlegg" + +#. 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 "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 "" + +#. 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:2104 +#: 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:1232 +#: frappe/public/js/frappe/widgets/widget_dialog.js:546 +#: frappe/public/js/frappe/widgets/widget_dialog.js:694 +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Color" +msgstr "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:454 +msgid "Column Width" +msgstr "Kolonnebredde" + +#: frappe/public/js/frappe/form/grid_row.js:661 +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 "" + +#. 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 "Kolonner / Felt" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +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 "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 "" + +#. 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 "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 "" + +#: 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 "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 "" + +#. 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 "Kommunikasjon" + +#. 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 "Type kommunikasjon" + +#: 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 "Selskapets introduksjon" + +#. 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:54 +#: 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 "Advarsel om kompilering" + +#: 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 "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:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Condition" +msgstr "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:406 +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 "" + +#: frappe/core/doctype/user/user.js:412 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:196 +msgid "Confirm New Password" +msgstr "Bekreft nytt passord" + +#: 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 "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 "" + +#. 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 "" + +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 +msgid "Connected to QZ Tray!" +msgstr "Koblet til QZ Tray!" + +#: 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 "Koblinger" + +#. 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 "" + +#. 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 "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:1745 +#: 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 "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93 +msgid "Copy Link" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:29 +msgid "Copy embed code" +msgstr "" + +#: frappe/public/js/frappe/request.js:620 +msgid "Copy error to clipboard" +msgstr "Kopier feil til utklippstavlen" + +#: frappe/public/js/frappe/form/toolbar.js:507 +msgid "Copy to Clipboard" +msgstr "" + +#: frappe/core/doctype/user/user.js:480 +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 "" + +#: frappe/custom/doctype/customize_form/customize_form.py:123 +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 "Kjernemoduler {0} kan ikke søkes opp i Globalt søk." + +#: frappe/printing/page/print/print.js:633 +msgid "Correct version :" +msgstr "Riktig versjon:" + +#: frappe/email/smtp.py:78 +msgid "Could not connect to outgoing email server" +msgstr "" + +#: frappe/model/document.py:1097 +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:564 +msgid "Could not parse field: {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:234 +msgid "Could not start up:" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js: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 "" + +#. 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 "" + +#. 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/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 +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 "" + +#. 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 "" + +#. Label of the create (Check) field in DocType 'Custom DocPerm' +#. Label of the create (Check) field in DocType 'DocPerm' +#. Label of the create (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/communication/communication.js:117 +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/public/js/frappe/form/reminders.js:49 +#: frappe/public/js/frappe/views/file/file_view.js:112 +#: frappe/public/js/frappe/views/interaction.js:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/workspace/workspace.js:469 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +msgid "Create" +msgstr "Opprett" + +#: frappe/core/doctype/doctype/doctype_list.js:102 +msgid "Create & Continue" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 +msgid "Create Chart" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:62 +msgid "Create Child Doctype" +msgstr "Opprett underordnet dokumenttype" + +#. 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:512 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "Opprett ny" + +#: frappe/core/doctype/doctype/doctype_list.js:100 +msgid "Create New DocType" +msgstr "Opprett ny dokumenttype" + +#: 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:276 +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:504 +#: frappe/public/js/frappe/web_form/web_form_list.js:225 +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:507 +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:337 +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 "" + +#: 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 "Opprettet den" + +#: 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 "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 "" + +#: 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 "" + +#: 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 "Valutapresisjon" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "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 (velg tillatelse)" + +#: frappe/core/doctype/user_type/user_type.py:105 +msgid "Custom Document Types Limit Exceeded" +msgstr "Egendefinert dokumenttype 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 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-DocTypes." + +#. 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 "" + +#. 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 "" + +#. 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 "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:82 +#: 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 "Egendefiner" + +#: frappe/public/js/frappe/list/list_view.js:1943 +msgctxt "Button in list view menu" +msgid "Customize" +msgstr "Egendefiner" + +#: 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 "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:343 +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 "Tilpass egenskaper, navngivning, felt og mer for standard DocTypes" + +#: 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 "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 "SLETT" + +#. 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 "" + +#: frappe/desk/doctype/event/event.py:100 +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 "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 (Long Text) field in DocType 'Transaction Log' +#. Label of the data (Code) field in DocType 'Version' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the webhook_data (Table) field in DocType 'Webhook' +#. Label of the data (Code) field in DocType 'Webhook Request Log' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. 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/transaction_log/transaction_log.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Data" +msgstr "Data" + +#: 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:615 +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:249 +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:313 +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:305 +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 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:1742 +#: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/templates/discussions/reply_card.html:35 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Delete" +msgstr "Slett" + +#: frappe/public/js/frappe/list/list_view.js:2168 +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" + +#: 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:106 +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:935 +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:2173 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} item permanently?" +msgstr "Slette {0} element permanent?" + +#: frappe/public/js/frappe/list/list_view.js:2179 +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" + +#. 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:606 +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:583 +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:301 +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 "Slå av" + +#. 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:1194 +msgid "Do not edit headers which are preset in the template" +msgstr "Ikke rediger overskrifter som er forhåndsinnstilte i malen" + +#: 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 "Dokumentstatusen 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 "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 "DocType-handling" + +#. 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 "DocType-hendelse" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +msgid "DocType Layout" +msgstr "DocType-oppsett" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +msgid "DocType Layout Field" +msgstr "Felt for DocType-oppsett" + +#. 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 "DocType-lenke" + +#. 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 "DocType-tilstand" + +#. 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 "DocType-visning" + +#: frappe/core/doctype/doctype/doctype.py:657 +msgid "DocType can not be merged" +msgstr "DocType kan ikke slås sammen" + +#: frappe/core/doctype/doctype/doctype.py:651 +msgid "DocType can only be renamed by Administrator" +msgstr "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 "DocType er en tabell/et skjema i applikasjonen." + +#: frappe/integrations/doctype/webhook/webhook.py:83 +msgid "DocType must be Submittable for the selected Doc Event" +msgstr "DocType må kunne registreres for den valgte Doc Event." + +#: frappe/client.py:403 +msgid "DocType must be a string" +msgstr "DokType må være en streng" + +#: frappe/public/js/form_builder/store.js:154 +msgid "DocType must have atleast one field" +msgstr "DocType må ha minst ett felt" + +#: frappe/core/doctype/log_settings/log_settings.py:57 +msgid "DocType not supported by Log Settings." +msgstr "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 "DocType som denne arbeidsflyten gjelder for." + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 +msgid "DocType required" +msgstr "DocType påkrevd" + +#: frappe/modules/utils.py:175 +msgid "DocType {0} does not exist." +msgstr "DocType {0} finnes ikke." + +#: frappe/modules/utils.py:238 +msgid "DocType {} not found" +msgstr "DocType {} ble ikke funnet" + +#: frappe/core/doctype/doctype/doctype.py:1029 +msgid "DocType's name should not start or end with whitespace" +msgstr "DocType-navnet 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 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 "DocType-navnet er begrenset til {0} tegn ({1})" + +#: frappe/public/js/frappe/list/bulk_operations.js:3 +msgid "Doctype required" +msgstr "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} DokType" + +#: frappe/core/doctype/doctype/doctype.py:1232 +msgid "Document Links Row #{0}: Invalid doctype or fieldname." +msgstr "Rad #{0} for dokumentkoblinger: Ugyldig 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 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 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 "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 "Dokument tagg" + +#. 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:66 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Document Type" +msgstr "Dokumenttype" + +#: frappe/desk/doctype/number_card/number_card.py:59 +msgid "Document Type and Function are required to create a number card" +msgstr "Dokumenttype og funksjon er påkrevd for å opprette et tallkort" + +#: frappe/permissions.py:149 +msgid "Document Type is not importable" +msgstr "Dokumenttypen kan ikke importeres" + +#: frappe/permissions.py:145 +msgid "Document Type is not submittable" +msgstr "Dokumenttypen 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 som skal spores" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 +msgid "Document Type {0} has been repeated." +msgstr "Dokumenttypen {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" + +#. 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 (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 og rettigheter" + +#: frappe/core/doctype/submission_queue/submission_queue.py:163 +#: frappe/model/document.py:1955 +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:1300 +msgid "Document has been cancelled" +msgstr "Dokumentet er blitt avbrutt" + +#: frappe/public/js/frappe/list/list_view.js:1299 +msgid "Document has been submitted" +msgstr "Dokumentet er registrert" + +#: frappe/public/js/frappe/list/list_view.js:1298 +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 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-koder 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 kod HTML-koder 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:467 +#: 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:242 +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:831 +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 "Debet" + +#: 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:172 +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:663 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:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1776 +#: 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:350 +#: 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:2254 +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:349 +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" + +#: frappe/public/js/frappe/list/list_view.js:1970 +msgctxt "Button in list view menu" +msgid "Edit DocType" +msgstr "Rediger dokumenttype" + +#: 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:28 +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" + +#: 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:57 +#: 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' +#: 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/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/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:278 +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 "E-postmeldinger vil bli sendt med neste mulige handlinger i arbeidsflyten" + +#: frappe/website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "Den innbygde koden er kopiert" + +#: frappe/database/query.py:1537 +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:1455 +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 doktypen {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:141 +msgid "Error connecting to QZ Tray Application...

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

    Click here to Download and install QZ Tray.
    Click here to learn more about Raw Printing." +msgstr "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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 +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:777 +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:803 +msgid "Error: Data missing in table {0}" +msgstr "Feil: Data mangler i tabellen {0}" + +#: frappe/model/base_document.py:813 +msgid "Error: Value missing for {0}: {1}" +msgstr "Feil: Mangler verdi for {0}: {1}" + +#: frappe/model/base_document.py:807 +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 "Hendelse" + +#. Label of the event_category (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Event Category" +msgstr "Hendelseskategori" + +#. Label of the event_frequency (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Event Frequency" +msgstr "Hendelsesfrekvens" + +#. 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 eventet" + +#. 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 eventer" + +#: 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 "Event 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 event" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:56 +msgid "Events" +msgstr "Eventer" + +#: frappe/desk/doctype/event/event.py:274 +msgid "Events in Today's Calendar" +msgstr "Eventer 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:2123 +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:2104 +#: frappe/public/js/frappe/views/treeview.js:133 +msgid "Expand All" +msgstr "Utvid alle" + +#: frappe/database/query.py:352 +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:1811 +#: 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:2276 +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:240 +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/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 "Mislykkes" + +#. 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 "Mislyktes" + +#. 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 "Kunne ikke 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 "Klarte ikke å koble til serveren" + +#: frappe/auth.py:698 +msgid "Failed to decode token, please provide a valid base64-encoded token." +msgstr "Kunne ikke dekode tokenet. Vennligst oppgi et gyldig base64-kodet token." + +#: frappe/utils/password.py:210 +msgid "Failed to decrypt key {0}" +msgstr "" + +#: frappe/desk/reportview.py:600 +msgid "Failed to delete {0} documents: {1}" +msgstr "Kunne ikke slette {0} dokumenter: {1}" + +#: 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 "Kunne ikke evaluere betingelser: {}" + +#: 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 "Klarte ikke å hente metoden {0} med {1}" + +#: 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 "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 "" + +#: 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 "Tilbakemelding" + +#: 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 "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:1870 +#: 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 "" + +#: 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 "" + +#. 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 "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:201 +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 "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 "" + +#: 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:545 +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:454 +#: 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 "" + +#: 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 +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:394 +msgid "Fieldname {0} cannot have special characters like {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1908 +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 "Felt" + +#. 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:410 +msgid "Fields `file_name` or `file_url` must be set for File" +msgstr "" + +#: frappe/model/db_query.py:146 +msgid "Fields must be a list or tuple when as_list is enabled" +msgstr "" + +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + +#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' +#: 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 "" + +#: frappe/custom/doctype/customize_form/customize_form.py:589 +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 "Fil" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +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 "" + +#. 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 "" + +#. 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 "Filtype" + +#. 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 "Sikkerhetskopiering av filer er klar" + +#: frappe/core/doctype/file/file.py:624 +msgid "File name cannot have {0}" +msgstr "" + +#: 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/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:375 +msgid "File type of {0} is not allowed" +msgstr "" + +#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +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:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:93 +#: frappe/public/js/frappe/list/base_list.js: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:358 +msgid "Filter condition missing after operator: {0}" +msgstr "Filterbetingelse mangler etter operatoren: {0}" + +#: frappe/database/query.py:425 +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:188 +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 "" + +#. 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' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.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/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 "" + +#: 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 "" + +#. 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 "" + +#: 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:472 +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 "Folio" + +#: 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 "Følgende rapportfiltre mangler verdier:" + +#: 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 "Font" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "HTML for bunntekst" + +#: frappe/printing/doctype/letter_head/letter_head.py:75 +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 "" + +#. 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 "Bunntekstskript" + +#. 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 "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 "" + +#. 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 "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 Lenker, skriv inn DocType som område.\n" +"For Velg, skriv inn en liste med alternativer, hvert på en ny 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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2120 +#: 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 "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 "" + +#: 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:1752 +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 "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 "" + +#. 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 "Tving nettopptaksmodus for opplastinger" + +#: 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 "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 "" + +#. 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 "Skjemaguide" + +#. 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 "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 "" + +#. 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" + +#: 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 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 "" + +#. 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/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 "" + +#: 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 "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:1831 +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 "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 "" + +#: 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 "" + +#. 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 "" + +#: frappe/__init__.py:466 +msgid "Function {0} is not whitelisted." +msgstr "" + +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:419 +msgid "Further nodes can be only created under 'Group' type nodes" +msgstr "" + +#: 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 "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 "" + +#. 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:873 +msgid "Generate New Report" +msgstr "Generer ny rapport" + +#: 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:1790 +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 "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 "" + +#: frappe/email/doctype/notification/notification.js:222 +msgid "Get Alerts for Today" +msgstr "" + +#: 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 "" + +#: 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 "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 "" + +#: 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 "GitHub" + +#: 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 "Globalt søk DocType" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24 +msgid "Global Search Document Types Reset." +msgstr "Tilbakestill dokumenttyper 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 "" + +#. 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 "Gå tilbake" + +#: 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 "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 "" + +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.js:54 +#: frappe/custom/doctype/client_script/client_script.js:10 +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 "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 "" + +#. 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: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 – 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 "" + +#. 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 "Google Contacts – Kunne ikke synkronisere kontakter fra Google Contacts {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 Contacts - Kunne ikke oppdatere kontakten i Google Contacts {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 "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 +msgid "Google Drive" +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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "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:750 +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" +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 "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:98 +#: 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "Har neste betingelse" + +#. 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 "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:63 +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 "" + +#. 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 "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 "Overskrifter" + +#: 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 "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 "" + +#. 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 "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 "" + +#. 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 "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:1787 +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 "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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 +#: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 +msgid "Hide" +msgstr "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 "" + +#. 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 "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 "" + +#: 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 "" + +#. 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:1845 +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 "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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#: 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 "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 "" + +#. 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:491 +#: 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 "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 "" + +#. 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 "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 "" + +#. 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 "Hvis Bruk streng brukerrettighet er merket av og brukerrettighet er definert for en DocType for en bruker, vil alle dokumenter der verdien av lenken er tom, ikke bli vist for 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1764 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 +#: frappe/public/js/frappe/roles_editor.js:66 +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 "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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "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 DocType- eller rapporttillatelser 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 "" + +#: 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 "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 "" + +#: 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 «Navneserie» obligatorisk, 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 "" + +#: 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 "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 "" + +#. 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 "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 "" + +#. 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:452 frappe/model/db_query.py:455 +#: frappe/model/db_query.py:1120 +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 "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 "" + +#. 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 "" + +#: 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 "Bildebredde" + +#: 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:384 +msgid "Impersonate" +msgstr "Imitere" + +#: frappe/core/doctype/user/user.js:411 +msgid "Impersonate as {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +msgid "Impersonated by {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:21 +msgid "Impersonating {0}" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:56 +msgid "Implement `clear_old_logs` method to enable auto error clearing." +msgstr "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 "" + +#: frappe/public/js/frappe/list/list_view.js:1907 +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 "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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "" + +#: 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 "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 "" + +#: 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 "Innboks" + +#. 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 "Inkluder søk i topplinjen" + +#: 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/views/reports/query_report.js:1619 +msgid "Include filters" +msgstr "Inkluder filtre" + +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 +msgid "Include indentation" +msgstr "" + +#: 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 "" + +#. 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:255 +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:1551 +msgid "Incorrect value in row {0}:" +msgstr "" + +#: frappe/model/document.py:1553 +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 "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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "" + +#: 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:1876 +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 "" + +#: 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 "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 "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 +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 "" + +#. 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 "Instruksjoner" + +#: 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:806 frappe/database/query.py:1052 +msgid "Insufficient Permission for {0}" +msgstr "" + +#: frappe/desk/reportview.py:360 +msgid "Insufficient Permissions for deleting Report" +msgstr "" + +#: frappe/desk/reportview.py:331 +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 "Int" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "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 "" + +#. 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:849 +#: 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 "Ugyldig «depends_on»-uttrykk satt i filteret {0}" + +#: frappe/public/js/frappe/form/save.js:159 +msgid "Invalid \"mandatory_depends_on\" expression" +msgstr "Ugyldig \"mandatory_depends_on\"-uttrykk" + +#: 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 "Ugyldig betingelse: {}" + +#: 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:209 +msgid "Invalid File URL" +msgstr "" + +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "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 "" + +#: 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 "Ugyldig påloggingstoken" + +#: 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:116 +msgid "Invalid Override" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:202 +msgid "Invalid Parameters." +msgstr "" + +#: frappe/core/doctype/user/user.py:1239 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 +msgid "Invalid Phone Number" +msgstr "" + +#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 +msgid "Invalid Request" +msgstr "" + +#: 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 "" + +#: frappe/public/js/workflow_builder/store.js:192 +msgid "Invalid Transition" +msgstr "Ugyldig overgang" + +#: frappe/core/doctype/file/file.py:220 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/public/js/frappe/widgets/widget_dialog.js:602 +#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 +msgid "Invalid URL" +msgstr "Ugyldig URL" + +#: 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 "Ugyldig webhook-hemmelighet" + +#: frappe/desk/reportview.py:186 +msgid "Invalid aggregate function" +msgstr "" + +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:404 +msgid "Invalid column" +msgstr "" + +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "Ugyldig betingelsestype i nestede filtre: {0}" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 +msgid "Invalid docstatus" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:229 +msgid "Invalid expression set in filter {0}" +msgstr "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:1301 +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:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2199 +msgid "Invalid field name {0}" +msgstr "" + +#: frappe/database/query.py:668 +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:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "Ugyldig filterbetingelse: {0}. Forventet en liste eller tuppel." + +#: frappe/database/query.py:450 +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:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + +#: frappe/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 "" + +#: 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:337 +msgid "Invalid request arguments" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "Ugyldig enkelt filterformat: {0}" + +#: frappe/database/query.py:341 +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:1489 +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 "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 "" + +#: 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 "Ugyldige verdier for felt:" + +#: frappe/printing/page/print/print.js:627 +msgid "Invalid wkhtmltopdf version" +msgstr "Ugyldig wkhtmltopdf-versjon" + +#: 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 "Invers" + +#: 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 "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 "" + +#: 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 "" + +#: 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 "Er" + +#. 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:49 +#: 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 "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 "" + +#. 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 "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 "" + +#: frappe/public/js/frappe/list/list_filter.js:43 +msgid "Is Global" +msgstr "Er global" + +#. 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 "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 "" + +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +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 "Er offentlig" + +#. 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:64 +#: 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 "" + +#. 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:39 +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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "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 "" + +#. 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 "Jobben er i tilstand {0} og kan ikke avbrytes" + +#: 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 "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 "" + +#. 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:388 +msgid "Kanban Board Name" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +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 "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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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:17 +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' +#: 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: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 "" + +#. 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 "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 "" + +#. 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 "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' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.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 "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 "" + +#. 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 "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 "" + +#: 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 "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 "" + +#: 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 "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 "" + +#. 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 "" + +#: 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 +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 "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 "" + +#: 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 "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:43 +#: frappe/public/js/frappe/form/templates/print_layout.html:16 +#: frappe/public/js/frappe/list/bulk_operations.js:52 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 +msgid "Letter Head" +msgstr "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:48 +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:66 +#: 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 "" + +#: 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 "" + +#. 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 "" + +#: 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 "Liker" + +#: 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 "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 "" + +#. 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 "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 "" + +#. 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 "Lenketype" + +#: 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 "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 "" + +#: 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 'Workspace' +#: frappe/contacts/doctype/address/address.js:39 +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.js:92 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Links" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_view.js:1987 +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 "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 "" + +#. 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 "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:305 +#: 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 "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:1088 +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:179 +#: 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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "Logg ut" + +#: 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 "Logg inn" + +#. 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 "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 "" + +#. 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 "Logg inn og se i nettleser" + +#: frappe/website/doctype/web_form/web_form.js:367 +msgid "Login is required to see web form list view. Enable {0} to see list settings" +msgstr "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 "" + +#: frappe/auth.py:339 frappe/auth.py:342 +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 "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 "" + +#: 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 "" + +#: 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 "" + +#: 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:144 +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 "Logg ut" + +#: frappe/core/doctype/user/user.js:202 +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 "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 "" + +#. 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 "" + +#. 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' +#: frappe/core/doctype/doctype/doctype.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 "" + +#. 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 "Opprett {0}" + +#: 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 "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 "" + +#. 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:509 +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 "" + +#: 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:120 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "Obligatoriske felt kreves i tabellen {0}, rad {1}" + +#: frappe/public/js/frappe/form/save.js:125 +msgid "Mandatory fields required in {0}" +msgstr "Obligatoriske 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 "Obligatoriske felt:" + +#: 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 "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 "" + +#: 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 "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 "" + +#: 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 "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 "" + +#: 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 "" + +#: 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 "Maksimum" + +#: frappe/core/doctype/file/file.py:320 +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 "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:1737 +#: 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:196 +#: 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 "" + +#. 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 "Omtale" + +#. 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:201 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/ui/messages.js:182 +#: frappe/public/js/frappe/views/communication.js:126 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/www/message.html:3 +msgid "Message" +msgstr "" + +#: 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 "Meldingstype" + +#: 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 "Metode" + +#: frappe/__init__.py:468 +msgid "Method Not Allowed" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:73 +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 "" + +#. 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 "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 "" + +#: 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 "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 "" + +#: 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:131 +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 "" + +#: 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 "Manglende verdier er påkrevd" + +#: 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 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' +#. Label of the module (Link) field in DocType 'Report' +#. Label of the module (Link) field in DocType 'User Type Module' +#. Label of the module (Link) field in DocType 'Dashboard' +#. Label of the module (Link) field in DocType 'Dashboard Chart' +#. Label of the module (Link) field in DocType 'Dashboard Chart Source' +#. Label of the module (Link) field in DocType 'Form Tour' +#. Label of the module (Link) field in DocType 'Module Onboarding' +#. Label of the module (Link) field in DocType 'Number Card' +#. Label of the module (Link) field in DocType 'Workspace' +#. Label of the module (Link) field in DocType 'Notification' +#. Label of the module (Link) field in DocType 'Print Format' +#. Label of the module (Link) field in DocType 'Print Format Field Template' +#. Label of the module (Link) field in DocType 'Web Form' +#. Label of the module (Link) field in DocType 'Web Template' +#. Label of the module (Link) field in DocType 'Website Theme' +#: frappe/core/doctype/block_module/block_module.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type_module/user_type_module.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Module" +msgstr "Modul" + +#. Label of 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 "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 "" + +#. 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 "Nullstilling av prosess for onboarding av modul" + +#: 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 "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 "" + +#. 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 "" + +#. Label of the more_info (Section Break) field in DocType 'Contact' +#. Label of the additional_info (Section Break) field in DocType 'Activity Log' +#. Label of the additional_info (Section Break) field in DocType +#. 'Communication' +#. Label of the short_bio (Tab Break) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user/user.json +msgid "More Information" +msgstr "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 "" + +#. 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 "Mest brukt" + +#: 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:193 +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 "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 "" + +#: 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 "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:168 +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 "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 "" + +#: 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 "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 "" + +#: frappe/desk/query_report.py:209 +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:498 +#: 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 "Min enhet" + +#: 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 "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:107 +#: 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:22 +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 "" + +#: 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 "Navn på det nye utskriftsformatet" + +#: 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 "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 "" + +#: 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 "Navigasjonsfelt" + +#. 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:1378 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1385 +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/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:333 +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 '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:471 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/website/doctype/web_form/templates/web_list.html:15 +#: frappe/www/list.html:19 +msgid "New" +msgstr "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:344 +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:190 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:411 +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:1663 +#: 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 "" + +#: 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 "Ingen Data" + +#: 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 "Ingen filtre angitt" + +#: 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 "Ingen etikett" + +#: frappe/printing/page/print/print.js:716 +#: frappe/printing/page/print/print.js:797 +#: 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 "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "No New notifications" +msgstr "Ingen nye varsler" + +#: frappe/core/doctype/doctype/doctype.py:1744 +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 "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:720 +msgid "No Preview Available" +msgstr "Ingen forhåndsvisning tilgjengelig" + +#: frappe/printing/page/print/print.js:875 +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 "" + +#: 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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +msgid "No Select Field Found" +msgstr "Ingen valgfelt funnet" + +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "" + +#: frappe/desk/reportview.py:672 +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:232 +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 "Ingen endringer i dokumentet" + +#: 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 "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 "" + +#: 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:344 +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 "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 tagget med {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 "" + +#: 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 "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." +msgstr "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 "" + +#: 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 "" + +#: 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:161 +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 "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 "" + +#. 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:947 +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:116 +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 "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 "" + +#: 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:233 +msgid "No {0} found" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:497 +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 "" + +#: frappe/public/js/form_builder/utils.js:117 +#: frappe/public/js/frappe/form/grid_row.js:256 +msgctxt "Title of the 'row number' column" +msgid "No." +msgstr "" + +#. 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 "" + +#: 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 "Ingen" + +#: 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 "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:387 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 "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 "" + +#. 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:380 frappe/desk/calendar.py:26 +#: frappe/public/js/frappe/web_form/webform_script.js:15 +#: frappe/website/doctype/web_form/web_form.py:747 +#: 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:560 +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:169 +#: 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 "" + +#: 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 "" + +#: 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:637 +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 "" + +#: 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 "" + +#: 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:215 +#: frappe/public/js/frappe/request.js:159 +#: frappe/public/js/frappe/request.js:170 +#: frappe/public/js/frappe/request.js:175 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 +#: 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 "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 "" + +#. 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:399 +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 "Intet nytt" + +#: 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:542 +msgid "Notification: customer {0} has no Mobile number set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:528 +msgid "Notification: document {0} has no {1} number set (field: {2})" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:537 +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 "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 "" + +#: 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 +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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "" + +#: 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 "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 "" + +#. 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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "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:42 +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 "" + +#: 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 "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 "" + +#. 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:1235 +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 "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 "" + +#: frappe/desk/reportview.py:357 +msgid "Only reports of type Report Builder can be deleted" +msgstr "" + +#: frappe/desk/reportview.py:328 +msgid "Only reports of type Report Builder can be edited" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:129 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "" + +#: frappe/model/delete_doc.py:241 +msgid "Only the Administrator can delete a standard DocType." +msgstr "" + +#: frappe/desk/form/assign_to.py:198 +msgid "Only the assignee can complete this to-do." +msgstr "" + +#: 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 "Å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:1431 +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:2130 +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 "Optimaliser" + +#: 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 "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 (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/templates/form_grid/fields.html:43 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Options" +msgstr "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 "" + +#. 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 "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 "" + +#: 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:871 +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 "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 "" + +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'About Us Settings' +#. Label of the company_history (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History" +msgstr "" + +#. 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:15 +msgid "Orientation" +msgstr "Orientering" + +#: 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 "Annen" + +#. 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 "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 "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "Oversikt" + +#: 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 "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:1796 +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:629 +msgid "PDF generation may not work as expected." +msgstr "PDF-generering fungerer kanskje ikke som forventet." + +#: frappe/printing/page/print/print.js:547 +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 "" + +#. 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 "" + +#. 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 "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 "" + +#. 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 "Sidemarger" + +#. 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 "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 "" + +#. 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 "" + +#: 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 "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 "" + +#. 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 "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 "" + +#: 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 "Overordnet dokumenttype" + +#: frappe/desk/doctype/number_card/number_card.py:65 +msgid "Parent Document Type is required to create a number card" +msgstr "Overordnet dokumenttype 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 "" + +#: 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 "Parent Label" + +#: 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 "Dokumenttypen 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 "" + +#: 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 "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 "" + +#. 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 "" + +#. 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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 +#: 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:1092 +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:896 +msgid "Password cannot be filtered" +msgstr "Passordet kan ikke filtreres" + +#: 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 "Passord kreves, eller velg Venter på passord" + +#: 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:1091 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "" + +#: frappe/www/update-password.html:191 +msgid "Password set" +msgstr "" + +#: frappe/auth.py:258 +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:210 +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 "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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "" + +#: 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 "" + +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +msgid "Permission Error" +msgstr "Feil i tillatelse" + +#. 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 "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 "" + +#. 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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 +#: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 +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 "Tillatelser angis for roller og dokumenttyper (kalt DokTypes) 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 "" + +#: 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 "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 "" + +#. 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 "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' +#. 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/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Phone" +msgstr "Telefon" + +#. 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 +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: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 "" + +#. 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 "" + +#. 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 "" + +#: 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:1074 +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 "Vennligst legg ved en fil først." + +#: frappe/printing/doctype/letter_head/letter_head.py:76 +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:64 +msgid "Please attach an image file to set HTML for Letter Head." +msgstr "Vennligst legg ved en bildefil for å sette HTML for brevhode." + +#: 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 "Vennligst sjekk filterverdiene som er angitt for oversiktspanel-diagram: {}" + +#: frappe/model/base_document.py:951 +msgid "Please check the value of \"Fetch From\" set for field {0}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1072 +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 "Vennligst 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 "" + +#: 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 "" + +#: frappe/templates/emails/password_reset.html:2 +msgid "Please click on the following link to set your new password" +msgstr "Vennligst 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 "" + +#: frappe/printing/page/print/print.js:631 +msgid "Please contact your system manager to install correct version." +msgstr "Vennligst kontakt systembehandleren for å installere riktig versjon." + +#: frappe/desk/doctype/number_card/number_card.js:44 +msgid "Please create Card first" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 +msgid "Please create chart first" +msgstr "Vennligst lag 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 "" + +#: frappe/printing/doctype/print_format/print_format.js:18 +msgid "Please duplicate this to make changes" +msgstr "Vennligst dupliser dette for å gjøre endringer" + +#: frappe/core/doctype/system_settings/system_settings.py:163 +msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." +msgstr "" + +#: 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:651 +#: frappe/printing/page/print/print.js:681 +#: frappe/public/js/frappe/list/bulk_operations.js:161 +#: frappe/public/js/frappe/utils/utils.js:1434 +msgid "Please enable pop-ups" +msgstr "Vennligst 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 "" + +#: 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 "Vennligst skriv inn URL-adressen for tilgangstoken" + +#: 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 "Vennligst skriv inn URL-adressen for OpenID-konfigurasjon" + +#: 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 "Vennligst skriv inn 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 "" + +#: 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 "Vennligst skriv inn det nye passordet ditt." + +#: 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:988 +msgid "Please refresh to get the latest document." +msgstr "Vennligst oppdater for å få det nyeste dokumentet." + +#: frappe/printing/page/print/print.js:548 +msgid "Please remove the printer mapping in Printer Settings and try again." +msgstr "Vennligst fjern skrivertilordningen i skriverinnstillingene og prøv på nytt." + +#: frappe/public/js/frappe/form/form.js:358 +msgid "Please save before attaching." +msgstr "Vennligst lagre før vedlegging." + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:52 +msgid "Please save the document before assignment" +msgstr "Vennligst lagre dokumentet før tildelingen" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:72 +msgid "Please save the document before removing assignment" +msgstr "Vennligst lagre dokumentet før du fjerner tildelingen" + +#: frappe/public/js/frappe/views/reports/report_view.js:1711 +msgid "Please save the report first" +msgstr "Vennligst lagre rapporten først" + +#: frappe/website/doctype/web_template/web_template.js:22 +msgid "Please save to edit the template." +msgstr "Vennligst lagre for å redigere malen." + +#: frappe/printing/doctype/print_format/print_format.js:30 +msgid "Please select DocType first" +msgstr "Vennligst velg DocType først" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +msgid "Please select Entity Type first" +msgstr "Vennligst velg enhetstype først" + +#: frappe/core/doctype/system_settings/system_settings.py:113 +msgid "Please select Minimum Password Score" +msgstr "Vennligst velg minimum passordpoengsum" + +#: frappe/public/js/frappe/views/reports/query_report.js:1184 +msgid "Please select X and Y fields" +msgstr "Vennligst velg X- og Y-feltene" + +#: frappe/utils/__init__.py:129 +msgid "Please select a country code for field {1}." +msgstr "Vennligst velg en landskode for felt {1}." + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +msgid "Please select a file first." +msgstr "Vennligst velg en fil først." + +#: frappe/utils/file_manager.py:50 +msgid "Please select a file or url" +msgstr "Vennligst velg en fil eller URL" + +#: frappe/model/rename_doc.py:684 +msgid "Please select a valid csv file with data" +msgstr "Vennligst velg en gyldig csv-fil med data" + +#: frappe/utils/data.py:309 +msgid "Please select a valid date filter" +msgstr "Vennligst velg et gyldig datofilter" + +#: frappe/core/doctype/user_permission/user_permission_list.js:203 +msgid "Please select applicable Doctypes" +msgstr "Vennligst velg aktuelle dokumenttyper" + +#: frappe/model/db_query.py:1152 +msgid "Please select atleast 1 column from {0} to sort/group" +msgstr "Vennligst 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 en fil først" + +#: frappe/core/doctype/data_export/data_export.js:42 +msgid "Please select the Document Type." +msgstr "Vennligst velg dokumenttypen" + +#. 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 "Vennligst velg LDAP-katalogen som brukes" + +#: frappe/website/doctype/website_settings/website_settings.js:100 +msgid "Please select {0}" +msgstr "Vennligst velg {0}" + +#: frappe/contacts/doctype/contact/contact.py:298 +msgid "Please set Email Address" +msgstr "" + +#: frappe/printing/page/print/print.js:562 +msgid "Please set a printer mapping for this print format in the Printer Settings" +msgstr "Vennligst angi en skrivertilordning for dette utskriftsformatet i skriverinnstillingene" + +#: frappe/public/js/frappe/views/reports/query_report.js:1407 +msgid "Please set filters" +msgstr "Vennligst angi filtre" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 +msgid "Please set filters value in Report Filter table." +msgstr "Vennligst angi filterverdi i rapportfiltertabellen." + +#: 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 "Vennligst 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 "" + +#: frappe/core/doctype/system_settings/system_settings.py:126 +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 "Vennligst bruk et gyldig LDAP-søkefilter" + +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "Vennligst 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 "" + +#. 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 "" + +#. 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 "Port" + +#. 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:18 +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 "" + +#: 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 "Post" + +#. Label of the pincode (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +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:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + +#. Label of the precision (Select) field in DocType 'DocField' +#. Label of the precision (Select) field in DocType 'Custom Field' +#. Label of the precision (Select) field in DocType 'Customize Form Field' +#. 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: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:307 +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 "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:190 +#: frappe/integrations/doctype/webhook/webhook.js:90 +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/controls/markdown_editor.js:17 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/ui/capture.js:236 +msgid "Preview" +msgstr "Forhåndsvisning" + +#. 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 "Forhåndsvisningstype" + +#: 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 "Tidligere" + +#: frappe/public/js/frappe/ui/slides.js:351 +msgctxt "Go to previous slide" +msgid "Previous" +msgstr "Tidligere" + +#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json +msgid "Previous Hash" +msgstr "Tidligere hash" + +#: 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 "" + +#. 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:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +msgid "Print" +msgstr "Skriv ut" + +#: frappe/public/js/frappe/list/list_view.js:2160 +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:834 +#: 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:1577 +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:210 +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:84 +#: 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:843 +msgid "Printer" +msgstr "Skriver" + +#: frappe/printing/page/print/print.js:820 +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:812 +msgid "Printer Settings" +msgstr "Skriverinnstillinger" + +#: frappe/printing/page/print/print.js:561 +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 "" + +#: 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 "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 +msgid "Proceed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:931 +msgid "Proceed Anyway" +msgstr "" + +#: frappe/public/js/frappe/form/controls/table.js:119 +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 "" + +#: frappe/public/js/frappe/socketio_client.js:82 +msgid "Progress" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +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:501 +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 "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 "" + +#: 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 "" + +#. 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 "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 "" + +#. 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 "Python" + +#: 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:219 +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 "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 "" + +#. 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 "Spørringsrapport" + +#: 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 "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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "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 "" + +#: 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 "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 "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:309 +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 "Logg over rådata" + +#. 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 "Tilfeldig" + +#: 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 "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:95 +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 "" + +#. 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 "" + +#: 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 "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 "" + +#. 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:885 +msgid "Rebuild" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:509 +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 "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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "Oppføringer for følgende doktyper vil bli filtrert" + +#: 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 "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 viderekobling 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 "" + +#. 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 "Omdirigere 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 "" + +#. 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 "Referansedokumenttypen 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_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 "Referanse DocType" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 +msgid "Reference DocType and Reference Name are required" +msgstr "Referansedokumenttype 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 "" + +#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' +#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' +#: frappe/core/doctype/communication/communication.js:143 +#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/views/render_preview.js:34 +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Doctype" +msgstr "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 "" + +#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' +#. Label of the reference_doctype (Link) field in DocType 'Activity Log' +#. Label of the reference_doctype (Link) field in DocType 'Comment' +#. Label of the reference_doctype (Link) field in DocType 'Communication' +#. Label of the parent (Data) field in DocType 'Custom DocPerm' +#. Label of the ref_doctype (Data) field in DocType 'Custom Role' +#. Label of the reference_doctype (Link) field in DocType 'Document Share Key' +#. Label of the reference_doctype (Link) field in DocType 'Server Script' +#. Label of the ref_doctype (Link) field in DocType 'Success Action' +#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' +#. Label of the reference_doctype (Link) field in DocType 'View Log' +#. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event Participants' +#. Label of the reference_doctype (Link) field in DocType 'Kanban Board' +#. Label of the reference_doctype (Link) field in DocType 'List Filter' +#. Label of the reference_doctype (Link) field in DocType 'Email Queue' +#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe' +#. Label of the reference_doctype (Link) field in DocType 'Integration Request' +#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item' +#. Label of the reference_doctype (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Document Type" +msgstr "Referanse -dokumenttype" + +#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the reference_name (Dynamic Link) field in DocType 'Comment' +#. Label of the reference_name (Dynamic Link) field in DocType 'Communication' +#. Label of the docname (Data) field in DocType 'Data Import Log' +#. Label of the reference_name (Data) field in DocType 'Error Log' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event +#. Participants' +#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo' +#. Label of the reference_name (Dynamic Link) field in DocType 'Email +#. Unsubscribe' +#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow +#. Action' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.js:152 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Name" +msgstr "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 "" + +#. 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 "" + +#. 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:1771 +#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/widgets/chart_widget.js:291 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 +#: 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" + +#. 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:534 +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:374 +#: 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 "" + +#. 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 "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 "" + +#: 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 "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 "" + +#: 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 "Fjern" + +#: 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 "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 "" + +#: 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 "Fjern kolonne" + +#: 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 "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 "" + +#. 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 "" + +#: 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 "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 "" + +#. 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 "" + +#. 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 "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 "" + +#: 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:101 +#: frappe/public/js/frappe/form/print_utils.js:25 +#: frappe/public/js/frappe/request.js:615 +#: frappe/public/js/frappe/utils/utils.js:923 +msgid "Report" +msgstr "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 "" + +#. 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 "" + +#. 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 "" + +#. 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:1956 +msgid "Report Name" +msgstr "Rapportnavn" + +#: frappe/desk/doctype/number_card/number_card.py:69 +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 "" + +#. 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 "DocTypen rapport-referanse" + +#. 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 "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Report bug" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1810 +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 +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:186 +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:1012 +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:615 +msgid "Report updated successfully" +msgstr "" + +#: 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:1994 +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:364 +msgid "Report {0} deleted" +msgstr "" + +#: frappe/desk/query_report.py:54 +msgid "Report {0} is disabled" +msgstr "" + +#: frappe/desk/reportview.py:341 +msgid "Report {0} saved" +msgstr "Rapport {0} lagret" + +#: 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 "Rapporter" + +#: frappe/patches/v14_0/update_workspace2.py:50 +msgid "Reports & Masters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:928 +msgid "Reports already in Queue" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. 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 "Request Body" + +#. Label of the data (Code) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.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 "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 "" + +#. 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 "Request Timeout" + +#. Label of the request_url (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request URL" +msgstr "Forespørsels-URL" + +#. 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 "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 "" + +#: 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 "" + +#: 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 "Nullstill endringer" + +#: 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 "Tilbakestill tilpasninger av oversiktspanelet" + +#: frappe/public/js/frappe/list/list_settings.js:228 +msgid "Reset Fields" +msgstr "" + +#: frappe/core/doctype/user/user.js:184 frappe/core/doctype/user/user.js:187 +msgid "Reset LDAP Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "" + +#: frappe/core/doctype/user/user.js:235 +msgid "Reset OTP Secret" +msgstr "" + +#: frappe/core/doctype/user/user.js:168 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:433 +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 "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 "" + +#: 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:161 +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 "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 "" + +#. 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 "" + +#: 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:103 +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:1929 +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 "Rolleprofiler" + +#. 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 "Roller" + +#. 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 "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 "" + +#. 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:852 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 +msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" +msgstr "" + +#: frappe/model/base_document.py:982 +msgid "Row #{0}:" +msgstr "" + +#: 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_index (Data) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json +msgid "Row Index" +msgstr "" + +#. Label of the row_indexes (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Row Indexes" +msgstr "" + +#. Label of 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:353 +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:342 +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 "" + +#. 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' +#: frappe/core/doctype/doctype/doctype.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 "" + +#: 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 "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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "SSL/TLS-modus" + +#: 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 "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 "" + +#: 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 "" + +#. 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:871 +#: 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:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 +#: 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:1735 +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:1951 +msgid "Save Report" +msgstr "Lagre rapport" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +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 "" + +#: 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 "" + +#: 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 "" + +#: 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 "Planlagt" + +#. 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 "Planlagt hendelse" + +#: frappe/core/doctype/data_import/data_import.py:106 +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:106 +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 "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 "" + +#. 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 "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 "" + +#. 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 "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" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:29 +msgid "Search or type a command ({0})" +msgstr "Søk eller skriv inn 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 "" + +#. 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 "" + +#: 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 "" + +#. Label of the sb3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Security Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:309 +msgid "See all Activity" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:854 +msgid "See all past reports." +msgstr "" + +#: 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 "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 "" + +#. 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:615 +#: 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:497 +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:25 +#: frappe/custom/doctype/client_script/client_script.js:28 +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:58 +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" + +#: frappe/core/page/permission_manager/permission_manager.js:179 +msgid "Select Document Type or Role to start." +msgstr "Velg dokumenttype 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 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:489 +#: 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 "" + +#: 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:103 +msgid "Select Google Calendar to which event should be synced." +msgstr "Velg Google Kalender som aktiviteten 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:598 +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 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 node first." +msgstr "Velg en gruppenode først." + +#: frappe/core/doctype/doctype/doctype.py:1943 +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:1927 +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:1445 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "Velg listeelement" + +#: frappe/public/js/frappe/list/list_view.js:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 +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 "" + +#: 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 "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 "" + +#. 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 "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 "" + +#. 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 "Send utskrift som PDF" + +#: 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 "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 "" + +#. 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:1946 +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 "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 "" + +#. 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 "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 "" + +#. 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 "Serverhandling" + +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/www/error.html:36 frappe/www/error.py:15 +msgid "Server Error" +msgstr "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 "" + +#: 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 "Tjeneste" + +#. 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 "Standardinnstillinger for økter lagret" + +#: frappe/app.py:373 +msgid "Session Expired" +msgstr "" + +#. Label of the session_expiry (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Session Expiry (idle timeout)" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:120 +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/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 "" + +#: 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 "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:367 +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:280 +#: 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:2104 +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 "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 "" + +#: 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 "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:136 +#: 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:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +msgid "Set all private" +msgstr "Sett alle til private" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +msgid "Set all public" +msgstr "Sett alle til offentlige" + +#: frappe/printing/doctype/print_format/print_format.js:49 +msgid "Set as Default" +msgstr "Angi som standard" + +#: 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 "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 '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 "Angi ikke-standard presisjon for et flyt- eller valutafelt" + +#. 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 "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 "" + +#: 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 "Sette opp globale søkedokumenter." + +#: 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 "Innstillinger" + +#. 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 "Oppsett" + +#: 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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 +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 "Del" + +#: 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 "Delt" + +#: 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 "Frakt" + +#: 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 "Butikk" + +#: 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 "Vis absolutte verdier" + +#: 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 "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 "" + +#: frappe/www/error.html:42 frappe/www/error.html:65 +msgid "Show Error" +msgstr "Vis feil" + +#: 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 "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 "" + +#: 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 "Vis linjeskift etter seksjoner" + +#: 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 "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 "" + +#. 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 "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 "" + +#: 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 "" + +#. 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:1845 +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 "Vis tittel i lenkefelt" + +#: 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 "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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "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 "" + +#. 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 "Vis {0} -liste" + +#: 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 "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 "" + +#: frappe/www/login.html:169 +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 "Enkelt Python-uttrykk, eksempel: Status i (\"Lukket\", \"Avbrutt\")" + +#. 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 "Enkelt Python-uttrykk, eksempel: Status i (\"Lukket\", \"Avbrutt\")" + +#. 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 "Enkelt Python-uttrykk, eksempel: status == 'Åpen' og type == 'Feil'" + +#. 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:126 +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 +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:337 +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 "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 "" + +#: 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 "Slack" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "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 "" + +#. 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 "Utdrag og flere variabler: {0}" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "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 "" + +#: 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 "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 "" + +#: 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 "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 "" + +#. 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 "" + +#. 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:1720 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +#: frappe/website/report/website_analytics/website_analytics.js:38 +msgid "Source" +msgstr "" + +#: 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 "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 "" + +#: 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 "" + +#: 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:419 +#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: 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 "" + +#. 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:79 +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 "Standard 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 "" + +#: frappe/printing/doctype/print_format/print_format.py:81 +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:354 +msgid "Standard Reports cannot be deleted" +msgstr "" + +#: frappe/desk/reportview.py:325 +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 "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 "" + +#. 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 "" + +#: 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 "Start en ny diskusjon …" + +#: 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 "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 "" + +#: 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/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 "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 "" + +#. 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 "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 "" + +#: 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 "" + +#. 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 "" + +#. Label of the sticky (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/public/js/frappe/form/grid_row.js:454 +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:490 +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 "" + +#. 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 "Fjern EXIF-tagger fra opplastede bilder" + +#: 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 "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 "" + +#. 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 "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 "" + +#. Label of the subject (Data) field in DocType 'Auto Repeat' +#. Label of the subject (Small Text) field in DocType 'Activity Log' +#. Label of the subject (Text) field in DocType 'Comment' +#. Label of the subject (Small Text) field in DocType 'Communication' +#. Label of the subject (Small Text) field in DocType 'Event' +#. Label of the subject (Text) field in DocType 'Notification Log' +#. Label of the subject (Data) field in DocType 'Email Template' +#. Label of the subject (Data) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/views/communication.js:119 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:63 +msgid "Subject" +msgstr "" + +#. 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:1936 +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' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:138 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/quick_entry.js:225 +#: frappe/public/js/frappe/ui/capture.js:307 +msgid "Submit" +msgstr "Registrer" + +#: frappe/public/js/frappe/list/list_view.js:2227 +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:63 +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:2232 +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:1171 +#: 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 "" + +#. 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 "" + +#. 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 "Vellykket tilbakestilling av onboarding-status for alle brukere." + +#: 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 "Sum" + +#: 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 "Søndag" + +#: 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 "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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:19 +msgid "Syncing {0} of {1}" +msgstr "" + +#: frappe/utils/data.py:2531 +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 "" + +#: 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 "" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "Systemadministratorer har tillatelse som standard" + +#: 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 "Tabulatorskift" + +#: 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 "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 "" + +#. 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 "Flervalg av tabeller" + +#: frappe/custom/doctype/customize_form/customize_form.js:229 +msgid "Table Trimmed" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1170 +msgid "Table updated" +msgstr "" + +#: frappe/model/document.py:1574 +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 "Tabloid" + +#. 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 "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 "" + +#. 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 "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 "" + +#. 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 "" + +#: frappe/core/doctype/user/user.py:1040 +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 "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 "" + +#. 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 "Tekstbehandler" + +#: 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 "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 "" + +#: 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 "Takk for din tilbakemelding!" + +#: frappe/templates/includes/contact.js:36 +msgid "Thank you for your message" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/grid.js:1193 +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 "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 "" + +#: frappe/core/doctype/file/file.py:208 +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 "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 "" + +#: 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 "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 "" + +#: 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 "" + +#: 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:685 +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 "Den valgte dokumenttypen er en underordnet tabell, så den overordnede dokumenttypen er obligatorisk." + +#: frappe/core/doctype/user_type/user_type.py:110 +msgid "The field {0} is mandatory" +msgstr "" + +#: frappe/core/doctype/file/file.py:145 +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 "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 "" + +#: 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 "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 "" + +#. 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 "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 "" + +#: 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/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:388 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 "Det valgte dokumentet {0} er ikke et {1}." + +#: frappe/utils/response.py:338 +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 "" + +#: 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:964 +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:317 +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 "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 "" + +#: 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 "Det er ikke noe nytt å vise deg akkurat nå." + +#: frappe/core/doctype/file/file.py:618 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 +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 "" + +#: 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:182 +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 "" + +#. 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 "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 "" + +#: 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:391 +msgid "This Kanban Board will be private" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:666 +msgid "This Month" +msgstr "Denne måneden" + +#: 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 "" + +#: 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 "" + +#. 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 "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 "" + +#: frappe/model/delete_doc.py:113 +msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "This document has been modified after the email was sent." +msgstr "" + +#: 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 "" + +#: 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 "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 "" + +#: frappe/core/doctype/file/file.py:500 +msgid "This file is attached to a protected document and cannot be deleted." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76 +msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access." +msgstr "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 "" + +#: 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:2180 +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 "" + +#: 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 "Dette er en virtuell dokumenttype, og dataene slettes med jevne mellomrom." + +#: 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:423 +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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1036 +msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." +msgstr "" + +#: 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:852 +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 "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 "" + +#: 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 "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 "" + +#: 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:1253 +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 "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 "" + +#. 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 the time_zone (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:407 +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Time Zone" +msgstr "Tidssone" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "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' +#. 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 "" + +#: 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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "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 "" + +#: 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 "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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:853 +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 "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 "" + +#: 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 "I dag" + +#: 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:1960 +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 "Token" + +#. 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 "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 "" + +#. 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 "I morgen" + +#: 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 "For mange bakgrunnsjobber i kø ({0}). Prøv på nytt etter en stund." + +#: frappe/core/doctype/user/user.py:1041 +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 "" + +#. 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 "" + +#. 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 "Ø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 "" + +#: frappe/desk/query_report.py:551 +#: 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: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 "" + +#. 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 "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 "" + +#: 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 "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 "" + +#. 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 "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 "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Tracking" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1784 +msgid "Tracking URL generated and copied to clipboard" +msgstr "" + +#. Label of 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 "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:19 +msgid "Transition Properties" +msgstr "Egenskaper for Overgang " + +#. 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:2235 +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 "Oversett lenkefelt" + +#: 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 "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 "" + +#. 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 "Utløses på gyldige metoder som «before_insert», «after_update» osv. (avhenger av hvilken dokumenttype som er valgt)" + +#: 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 "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 "" + +#: 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 "" + +#: 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 "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 "" + +#. 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:337 +#: frappe/public/js/frappe/views/workspace/workspace.js:399 +#: frappe/public/js/frappe/widgets/widget_dialog.js:404 +#: frappe/website/doctype/web_template/web_template.json +#: frappe/www/attribution.html:35 +msgid "Type" +msgstr "Type" + +#: 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 "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 "" + +#: 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 "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 "" + +#. 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 "" + +#: frappe/core/doctype/file/file.py:219 +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 "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 "" + +#. 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 "UUID" + +#: 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 "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 "" + +#: 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:464 +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:396 +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:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:109 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Unfollow" +msgstr "" + +#. 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 "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 "" + +#: 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:316 +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 "Ulest" + +#. 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 "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 "" + +#. 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:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "" + +#: 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:269 +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:427 +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 "" + +#. 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 "" + +#: 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 "" + +#. 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 "Oppdater instillinger" + +#: 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 "Oppdatert" + +#: 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 "Oppdatert til en ny versjon 🎉" + +#: frappe/public/js/frappe/list/bulk_operations.js:372 +msgid "Updated successfully" +msgstr "" + +#: frappe/utils/response.py:337 +msgid "Updating" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:11 +msgctxt "Freeze message while updating a document" +msgid "Updating" +msgstr "Oppdatering" + +#: 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 "" + +#: 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:131 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:13 +msgid "Upload" +msgstr "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:198 +msgid "Upload file" +msgstr "Last opp fil" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +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 "" + +#. 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 "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 "" + +#. 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:435 +msgid "Use of function {0} in field is restricted" +msgstr "" + +#: frappe/model/db_query.py:412 +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 "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 "" + +#. 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 "Bruker" + +#: 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 "Brukeren kan ikke søke" + +#: 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 "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 "" + +#. 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 "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 "" + +#. 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 "Brukernavn" + +#. 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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 +msgid "User Permissions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1918 +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 "Brukerrolle" + +#. 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 "Brukervalg av dokumenttype" + +#. 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 "Brukeren har ikke tillatelse til å opprette den nye {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 "" + +#. 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 "" + +#: 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:1382 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: frappe/utils/oauth.py:269 +msgid "User {0} is disabled" +msgstr "" + +#: frappe/sessions.py:242 +msgid "User {0} is disabled. Please contact your System Manager." +msgstr "" + +#: frappe/desk/form/assign_to.py:104 +msgid "User {0} is not permitted to access this document." +msgstr "" + +#. Label of 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 "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 "" + +#: 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 "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 "" + +#. 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 "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 "" + +#. 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 "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:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:95 +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/public/js/frappe/list/bulk_operations.js:336 +#: frappe/public/js/frappe/list/bulk_operations.js:398 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4 +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Value" +msgstr "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 "" + +#: frappe/model/base_document.py:1054 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:612 +msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" +msgstr "" + +#: frappe/model/base_document.py:445 +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 "Verdien fra dette feltet vil bli satt som forfallsdato i ToDo" + +#: 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 "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:1124 +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 "Verdana" + +#: 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 "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 "" + +#: 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 "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 "" + +#: frappe/public/js/frappe/form/toolbar.js:580 +msgid "View Audit Trail" +msgstr "" + +#: frappe/core/doctype/user/user.js:156 +msgid "View Doctype Permissions" +msgstr "" + +#: frappe/core/doctype/file/file.js:4 +msgid "View File" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:220 +msgid "View Full Log" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:258 +msgid "View List" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "" + +#: frappe/core/doctype/user/user.js:147 +#: 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 "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 "" + +#. 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 "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 "" + +#: 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 "" + +#. 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 "Besøk" + +#: 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 "Varehus" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: 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 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 "" + +#: 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 "" + +#: 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 "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 "" + +#: 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:1712 +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 "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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "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 DocTypen 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/print_utils.js:38 +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 "" + +#. 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 "" + +#. 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 "Arbeidsflythandlingen er ikke opprettet 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 "" + +#: 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 "" + +#. 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 "Oppgaver i arbeidsflyt" + +#. 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 "Arbeidsflyten ble vellykket 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:175 +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 "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 "" + +#: 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:954 +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 "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 "" + +#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1224 +msgid "Y Field" +msgstr "Y-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:1663 +#: 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 "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:463 +msgid "You Liked" +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:408 frappe/desk/reportview.py:411 +#: frappe/permissions.py:626 +msgid "You are not allowed to export {} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:448 +msgid "You are not allowed to print this report" +msgstr "Du har ikke tillatelse 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 "" + +#: frappe/website/doctype/web_form/web_form.py:605 +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 "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 "" + +#: 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 "" + +#: 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 "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 "" + +#: 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:137 +msgid "You can disable this {0} instead of deleting it." +msgstr "" + +#: frappe/core/doctype/file/file.py:736 +msgid "You can increase the limit from System Settings." +msgstr "" + +#: 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 "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 "" + +#: 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 "" + +#: frappe/desk/query_report.py:345 +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:390 +msgid "You can't set 'Options' for field {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:394 +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 "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" + +#: frappe/custom/doctype/customize_form/customize_form.py:386 +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:247 +msgctxt "Form timeline" +msgid "You created this document {0}" +msgstr "" + +#: frappe/client.py:417 +msgid "You do not have Read or Select Permissions for {}" +msgstr "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 "" + +#: frappe/app.py:381 +msgid "You do not have enough permissions to complete the action" +msgstr "" + +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:878 +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 "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 "" + +#: frappe/website/doctype/web_form/web_form.py:808 +msgid "You don't have permission to access the {0} DocType." +msgstr "" + +#: frappe/utils/response.py:290 frappe/utils/response.py:294 +msgid "You don't have permission to access this file" +msgstr "" + +#: frappe/desk/query_report.py: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 "Du har en ny melding fra:" + +#: frappe/handler.py:119 +msgid "You have been successfully logged out" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:245 +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 "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 "" + +#: 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 "Du har ikke lagt til noen oversiktspanel-diagrammer eller tallkort ennå." + +#: frappe/public/js/frappe/list/list_view.js:501 +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:804 +msgid "You must be logged in to use this form." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:645 +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 "" + +#: 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 "" + +#: 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:279 +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 "" + +#: 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 "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 "" + +#: 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/form_timeline.js:419 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:183 +msgid "You viewed this" +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 "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 "" + +#: 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 "" + +#: 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 "PDF-filen din er klar for nedlasting" + +#: 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 "Din konto er blitt slettet" + +#: frappe/auth.py:514 +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/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 "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 "" + +#: 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 "" + +#. 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 "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/app.py:374 +msgid "Your session has expired, please login again to continue." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "" + +#: 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:265 +msgid "[Action taken by {0}]" +msgstr "" + +#. Label of the _doctype (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_doctype" +msgstr "" + +#. 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 "job_id-parameter er nødvendig for å hindre duplikater." + +#: 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 "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 "" + +#: 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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "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 "" + +#. 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 "" + +#: 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/utils/pretty_date.js:46 +msgid "just now" +msgstr "" + +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +msgid "label" +msgstr "" + +#. 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 "" + +#: frappe/website/doctype/web_form/web_form.js:362 +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 "" + +#: 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 "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 "" + +#: 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 "" + +#. 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 "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 "" + +#. 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 "" + +#. 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/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 "" + +#. 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 "" + +#: 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 "" + +#. 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:301 +msgid "since last month" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 +msgid "since last week" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 +msgid "since last year" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +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 "" + +#. 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 "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 "" + +#: 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 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 "" + +#: 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 "" + +#: 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:403 +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 "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 "" + +#. 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 "wkhtmltopdf" + +#: frappe/printing/page/print/print.js:635 +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 "" + +#: 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 "" + +#: 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 "{0} oversiktspanel" + +#: frappe/public/js/frappe/form/grid_row.js:486 +#: 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 "{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 "" + +#: 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:1154 +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 "{0} Rapport" + +#: frappe/public/js/frappe/views/reports/query_report.js:955 +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 "{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 "" + +#: 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/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 "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 +msgid "{0} already unsubscribed for {1} {2}" +msgstr "" + +#: frappe/utils/data.py:1751 +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:95 +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 "" + +#: 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:150 +msgid "{0} can not be more than {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 +msgid "{0} cancelled this document" +msgstr "{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 "" + +#: 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:250 +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:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "Filterfelt kan ikke inneholde backticks (`)." + +#: 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:544 +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:485 +msgid "{0} is not a child table of {1}" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 +msgid "{0} is not a field of doctype {1}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67 +msgid "{0} is not a valid Cron expression." +msgstr "" + +#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +msgid "{0} is not a valid DocType for Dynamic Link" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:206 +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:174 +msgid "{0} is not a valid Name" +msgstr "" + +#: frappe/utils/__init__.py:153 +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:524 +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:173 +msgid "{0} is now default print format for {1} doctype" +msgstr "{0} er nå standard utskriftsformat for {1} doctype" + +#: 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:98 +#: frappe/printing/doctype/print_format/print_format.py:101 +#: 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 "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1473 +msgid "{0} is within {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1835 +msgid "{0} items selected" +msgstr "{0} elementer valgt" + +#: frappe/core/doctype/user/user.py:1391 +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:1804 +msgid "{0} must be after {1}" +msgstr "" + +#: frappe/model/document.py:1560 +msgid "{0} must be beginning with '{1}'" +msgstr "" + +#: frappe/model/document.py:1562 +msgid "{0} must be equal to '{1}'" +msgstr "" + +#: frappe/model/document.py:1558 +msgid "{0} must be none of {1}" +msgstr "" + +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +msgid "{0} must be one of {1}" +msgstr "" + +#: frappe/model/base_document.py:876 +msgid "{0} must be set first" +msgstr "" + +#: frappe/model/base_document.py:729 +msgid "{0} must be unique" +msgstr "" + +#: frappe/model/document.py:1564 +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:1211 +msgid "{0} of {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1213 +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:1741 +msgid "{0} or {1}" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: 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/roles_editor.js:62 +msgid "{0} role does not have permission on any doctype" +msgstr "" + +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "" + +#: frappe/desk/query_report.py:630 +msgid "{0} saved successfully" +msgstr "{0} lagret var vellykket" + +#: 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 "{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 "" + +#: 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 "" + +#: 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:234 +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:254 +msgid "{0} updated" +msgstr "" + +#: 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 "" + +#: 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 "{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:662 frappe/model/rename_doc.py:110 +msgid "{0} {1} already exists" +msgstr "" + +#: frappe/model/base_document.py:987 +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 "{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 "" + +#: frappe/model/delete_doc.py:248 +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:1115 +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 "{0}/{1} fullført | La denne fanen være åpen til den er fullført." + +#: frappe/model/base_document.py:1120 +msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1801 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "{0}: Kan ikke angi Korriger uten å avbryte" + +#: frappe/core/doctype/doctype/doctype.py:1819 +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:1817 +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:1796 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "{0}: Kan ikke angi Avbryt uten å registrere" + +#: frappe/core/doctype/doctype/doctype.py:1803 +msgid "{0}: Cannot set Import without Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1799 +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:1823 +msgid "{0}: Cannot set import as {1} is not importable" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436 +msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" +msgstr "{0}: 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 "" + +#: 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:1756 +msgid "{0}: No basic permissions set" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1770 +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 "{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 "" + +#: 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:1785 +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 "{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 "" + +#: 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:1282 +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 "{1} lagret" + +#: 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 "{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 "" + +#: frappe/public/js/frappe/form/form.js:521 +msgid "{} Complete" +msgstr "" + +#: frappe/utils/data.py:2525 +msgid "{} Invalid python code on line {}" +msgstr "" + +#: frappe/utils/data.py:2534 +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 "{} støtter ikke automatisk sletting av loggfiler." + +#: 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:562 +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..a5d32527eb 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:29\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = Waar & 0 = Onwaar" @@ -144,10 +140,6 @@ msgstr "1 Google Agenda-evenement gesynchroniseerd." 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 msgid "1 day ago" msgstr "1 dag geleden" @@ -245,6 +237,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" @@ -479,7 +478,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 +545,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,10 +554,6 @@ 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" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -576,7 +571,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 +670,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:452 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 +699,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +723,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:459 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 +770,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 @@ -856,7 +873,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "Actie is mislukt" @@ -965,7 +982,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:501 #: 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 +993,7 @@ msgstr "Activiteitenlogboek" msgid "Add" msgstr "Toevoegen" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1005,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" @@ -1021,10 +1038,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1100,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 +1133,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:2145 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 "" @@ -1248,7 +1265,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 "" @@ -1356,7 +1373,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" @@ -1383,11 +1400,11 @@ msgstr "Toediening" msgid "Administrator" msgstr "Beheerder" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1425,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 "" @@ -1564,7 +1581,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 +1641,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 +1662,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 +1710,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 +1942,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 +1950,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 "" @@ -2122,10 +2134,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 +2210,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 +2223,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Toewijzingsregel toepassen" @@ -2253,7 +2271,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 +2304,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,7 +2336,11 @@ 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 "" @@ -2390,7 +2416,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2479,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 +2553,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2636,7 +2673,7 @@ 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 "" @@ -2667,6 +2704,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 +2725,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 +2839,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 +2851,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 +2904,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 +2952,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 +2966,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 +3237,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 +3355,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 +3386,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 +3482,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,7 +3539,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "" @@ -3588,7 +3562,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 +3574,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 +3704,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 +3754,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 @@ -3848,7 +3807,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 "" @@ -3874,12 +3833,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3857,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3956,7 +3918,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 "" @@ -3976,11 +3938,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,7 +3993,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 +4001,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 "" @@ -4068,7 +4030,7 @@ 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 "" @@ -4080,11 +4042,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4104,7 +4066,7 @@ msgstr "" 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 +4074,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 +4091,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:1129 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4247,7 +4209,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 +4279,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 +4312,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 +4320,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,7 +4375,7 @@ 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 "" @@ -4466,7 +4428,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 +4440,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4466,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,7 +4478,11 @@ 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 "" @@ -4568,7 +4534,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4712,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4857,11 +4823,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4930,16 +4896,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 +4903,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 +4912,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 "" @@ -5033,7 +4989,7 @@ msgstr "" 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 "" @@ -5128,6 +5084,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 +5114,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:406 msgid "Configure Columns" msgstr "" @@ -5182,7 +5143,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5162,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5189,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 "" @@ -5355,7 +5316,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5363,7 +5323,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5371,24 +5330,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 "" @@ -5464,12 +5411,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5428,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:633 msgid "Correct version :" msgstr "" @@ -5498,10 +5449,10 @@ 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 "" @@ -5638,7 +5589,7 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" @@ -5651,7 +5602,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "" @@ -5663,7 +5614,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,10 +5622,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5642,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:507 msgid "Create your first {0}" msgstr "" @@ -5717,7 +5668,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 +5680,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 "" @@ -6066,14 +6017,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6217,7 +6168,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 "" @@ -6325,7 +6276,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "" @@ -6356,7 +6307,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6445,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6611,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 "" @@ -6715,10 +6666,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6726,11 +6677,16 @@ msgstr "" msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6771,7 +6727,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 +6760,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6849,6 +6805,10 @@ msgstr "" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "" @@ -6864,7 +6824,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 +6841,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6868,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 +6903,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 +6923,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 +6932,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 +7015,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 +7076,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 +7093,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 +7102,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 +7152,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 +7166,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 +7176,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 +7194,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 +7217,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,16 +7253,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "" @@ -7410,7 +7356,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 +7403,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 +7416,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 +7449,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 +7463,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,19 +7525,19 @@ 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 "" @@ -7788,7 +7734,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:1955 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7742,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7892,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "" @@ -8174,17 +8120,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:1776 #: 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:350 #: 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 +8138,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8148,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8177,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8334,7 +8280,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 +8289,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 "" @@ -8390,6 +8336,7 @@ 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' @@ -8403,6 +8350,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 @@ -8443,7 +8391,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 "" @@ -8574,9 +8522,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 +8590,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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 "" @@ -8712,7 +8660,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 +8686,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 +8779,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 +8786,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 +8798,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 +8820,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 +8833,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 +8859,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 +8879,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 +8895,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 +8911,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 +8959,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 +9029,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 +9049,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 "" @@ -9156,9 +9097,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "" @@ -9178,7 +9119,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9331,7 +9272,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 +9280,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,7 +9306,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" @@ -9398,7 +9339,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 +9369,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9412,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9421,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 "" @@ -9595,7 +9538,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 +9555,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 "" @@ -9625,7 +9568,7 @@ msgstr "" 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 "" @@ -9637,8 +9580,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 +9597,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 +9617,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 +9671,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 +9728,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:1870 #: 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 +9751,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9870,11 +9807,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,16 +9829,16 @@ 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:454 #: 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 "" @@ -9925,11 +9862,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9889,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 @@ -10001,7 +9938,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10105,7 +10042,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10164,7 +10101,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 +10115,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 +10139,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,7 +10156,7 @@ 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 "" @@ -10230,18 +10173,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 "" @@ -10329,11 +10272,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 "" @@ -10495,7 +10438,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 +10496,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:2120 +#: 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 +10523,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 +10537,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10592,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 +10652,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 +10684,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 +10781,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:1831 msgid "From Document Type" msgstr "" @@ -10858,18 +10808,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 "" @@ -10968,6 +10916,12 @@ 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 msgid "Generate Tracking URL" @@ -10992,7 +10946,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "" @@ -11298,11 +11252,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" @@ -11436,7 +11385,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 @@ -11449,7 +11397,6 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11611,6 +11558,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 @@ -11745,11 +11698,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 +11777,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "" @@ -11843,7 +11791,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 +11840,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 +11929,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,7 +12034,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12219,6 +12164,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 +12199,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 +12260,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:1120 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12326,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,11 +12352,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12433,7 +12386,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12728,7 +12681,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12752,7 +12705,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 +12780,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:1876 msgid "Insert After" msgstr "" @@ -12843,7 +12796,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 +12814,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12836,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 "" @@ -12908,7 +12865,7 @@ msgstr "" 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 +12969,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:849 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13038,7 +12995,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,7 +13015,11 @@ 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 "" @@ -13099,7 +13060,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 +13069,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 "" @@ -13125,11 +13086,11 @@ msgstr "" 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:1239 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" @@ -13148,7 +13109,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 "" @@ -13171,7 +13132,7 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" @@ -13183,6 +13144,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13199,7 +13164,7 @@ msgstr "" 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 "" @@ -13235,19 +13200,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13275,12 +13236,20 @@ msgstr "" 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 +13257,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 "" @@ -13300,6 +13273,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13316,7 +13293,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 +13302,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:627 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 +13324,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 "" @@ -13486,7 +13500,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 "" @@ -13778,12 +13792,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 @@ -14056,7 +14072,7 @@ msgstr "" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14160,6 +14176,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 +14197,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" @@ -14340,7 +14356,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14436,20 +14452,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 +14492,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 +14506,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,6 +14637,10 @@ 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' @@ -14685,7 +14693,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14734,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 +14743,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,8 +14761,8 @@ 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 msgid "Loading" @@ -14769,7 +14776,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 +14786,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14847,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14980,7 +14987,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "" @@ -15160,7 +15167,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:509 msgid "Mandatory Information missing:" msgstr "" @@ -15180,7 +15187,7 @@ msgstr "" 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 +15268,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 +15350,7 @@ msgstr "" msgid "Max auto email report per user" 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 "" @@ -15358,16 +15363,11 @@ msgstr "" 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 "" @@ -15437,7 +15437,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 "" @@ -15503,7 +15503,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 +15535,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 "" @@ -15692,7 +15684,7 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -15959,7 +15951,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 "" @@ -16033,7 +16025,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16074,7 +16066,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:498 #: 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,7 +16104,7 @@ 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/views/file/file_view.js:97 @@ -16128,7 +16120,7 @@ msgstr "" 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 +16132,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 +16171,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16208,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16228,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16286,10 +16278,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 +16286,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 "" @@ -16365,12 +16353,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:190 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 +16367,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 +16385,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 +16443,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:411 msgid "New {0}" msgstr "" @@ -16477,7 +16465,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 +16473,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 +16486,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,12 +16593,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16662,6 +16651,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 +16690,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16706,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16726,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "" @@ -16753,7 +16746,7 @@ 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 "" @@ -16777,7 +16770,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "" @@ -16805,19 +16798,15 @@ 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 "" @@ -16837,6 +16826,10 @@ 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 "" @@ -16909,7 +16902,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:947 msgid "No permission to read {0}" msgstr "" @@ -16937,7 +16930,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16961,7 +16954,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17013,7 +17006,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 "" @@ -17062,18 +17055,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17083,9 +17075,9 @@ msgstr "" #: 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/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 +17109,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 +17125,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17153,7 @@ 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 "" @@ -17170,18 +17162,18 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17208,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17232,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 +17280,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17339,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,7 +17397,7 @@ 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 "" @@ -17520,11 +17511,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 +17634,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 "" @@ -17728,7 +17719,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 "" @@ -17772,7 +17763,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" @@ -17846,7 +17837,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 +17855,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 +17863,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17878,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 +17893,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 +17912,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +17938,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 "" @@ -17975,7 +17970,7 @@ msgstr "" 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 +17979,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 +17987,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 "" @@ -18036,8 +18031,8 @@ msgstr "" 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 "" @@ -18116,9 +18111,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:1796 msgid "PDF" msgstr "" @@ -18159,11 +18154,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18330,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 "" @@ -18379,11 +18374,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 +18387,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 +18461,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18472,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18485,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18502,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 +18514,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18527,7 +18526,7 @@ msgstr "" 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 +18534,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18604,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 "" @@ -18744,16 +18745,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18841,8 +18842,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +18903,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 +18915,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18934,10 +18935,6 @@ 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 "" @@ -18946,7 +18943,7 @@ msgstr "" 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:1072 msgid "Please check your email for verification" msgstr "" @@ -18978,7 +18975,7 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19008,8 +19005,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19048,7 +19045,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 +19082,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 "" @@ -19101,7 +19099,7 @@ msgstr "" msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19115,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:1711 msgid "Please save the report first" msgstr "" @@ -19153,7 +19151,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 +19163,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,7 +19189,7 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" @@ -19203,7 +19201,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 "" @@ -19239,23 +19237,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 +19274,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 "" @@ -19366,14 +19364,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19379,7 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19445,7 +19435,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 "" @@ -19480,13 +19470,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 +19498,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 @@ -19532,7 +19515,7 @@ msgstr "" 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 +19561,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19591,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19716,7 +19699,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19765,11 +19748,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19762,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19845,7 +19828,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "" @@ -19871,9 +19854,9 @@ 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,24 +19942,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 +19963,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 +20052,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 "" @@ -20097,7 +20067,7 @@ msgid "QR Code for Login Verification" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20117,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 +20217,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20254,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 @@ -20326,7 +20290,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 +20307,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 +20364,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 +20379,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 "" @@ -20482,7 +20441,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 +20452,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 +20492,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 +20509,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" @@ -20804,15 +20776,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20837,18 +20809,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:534 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:374 #: 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 +20997,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 "" @@ -21228,7 +21200,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "" @@ -21266,7 +21238,7 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "" @@ -21292,20 +21264,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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 "" @@ -21328,7 +21300,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 "" @@ -21458,11 +21430,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21442,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21481,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21547,6 +21519,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 +21529,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 +21587,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 "" @@ -21671,9 +21639,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 +21680,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 +21694,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 @@ -21775,7 +21743,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21786,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 +21796,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 +21833,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 +21853,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 +21864,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 @@ -21926,12 +21892,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21939,7 +21905,7 @@ msgstr "" msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21967,7 +21933,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,25 +21941,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22089,7 +22055,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 +22133,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 +22161,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22183,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:1735 msgid "Save As" msgstr "" @@ -22234,7 +22196,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "" @@ -22263,7 +22225,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 +22304,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 "" @@ -22510,7 +22472,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 "" @@ -22619,7 +22581,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 +22628,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,12 +22636,12 @@ 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:497 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" @@ -22690,7 +22652,7 @@ msgstr "" 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 "" @@ -22754,12 +22716,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:489 #: 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 "" @@ -22805,8 +22770,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:598 msgid "Select Network Printer" msgstr "" @@ -22874,11 +22839,11 @@ msgstr "" msgid "Select a group node first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +22873,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +22913,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 +23097,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23191,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 "" @@ -23255,7 +23220,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 "" @@ -23360,7 +23325,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:2104 msgid "Set Level" msgstr "" @@ -23414,7 +23379,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23555,14 +23520,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 +23538,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23608,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 +23627,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 +23679,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23807,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:1845 msgid "Show Tags" msgstr "" @@ -23874,7 +23824,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 +23864,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 +23912,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 +23942,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 +23977,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 "" @@ -24091,7 +24037,7 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "" @@ -24324,11 +24270,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,13 +24305,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24373,6 +24318,10 @@ msgstr "" 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 +24348,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 "" @@ -24460,7 +24415,7 @@ msgstr "" 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 "" @@ -24516,8 +24471,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 +24480,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 @@ -24598,7 +24553,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 +24609,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 +24634,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 +24642,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 +24680,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:454 msgid "Sticky" msgstr "" @@ -24753,6 +24710,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24847,7 +24808,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24872,7 +24833,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,7 +24843,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,7 +24867,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 +24879,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 +24891,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +24900,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 +24927,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 +24941,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:1171 #: 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 +24983,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 +25034,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 +25156,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25324,6 +25279,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 +25362,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 +25436,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 +25445,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,7 +25467,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "" @@ -25556,11 +25513,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 +25586,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25658,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 +25682,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:1193 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,7 +25693,7 @@ 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 "" @@ -25737,7 +25701,7 @@ msgstr "" 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 +25742,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 +25750,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25886,11 +25850,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -25927,7 +25891,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 "" @@ -25976,7 +25940,7 @@ msgstr "" 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,6 +25952,10 @@ 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 "" @@ -26020,11 +25988,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 "" @@ -26112,7 +26080,7 @@ 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 "" @@ -26174,7 +26142,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 +26161,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26185,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 +26203,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:423 msgid "This may get printed on multiple pages" msgstr "" @@ -26288,7 +26250,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 +26282,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:1253 msgid "Throttled" msgstr "" @@ -26472,11 +26434,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 "" @@ -26525,9 +26487,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 +26511,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 +26533,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 "" @@ -26726,7 +26682,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 +26698,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26748,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 +26764,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26826,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +26872,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 "" @@ -27026,6 +26982,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 +27001,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "" @@ -27051,7 +27012,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 +27096,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 "" @@ -27482,8 +27443,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 +27459,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27572,7 +27532,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:427 msgid "Update" msgstr "" @@ -27648,7 +27608,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 +27616,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 "" @@ -27829,7 +27789,7 @@ msgstr "" 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 +27810,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 +27821,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 +27836,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 +27850,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 +27867,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 +27901,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 +27965,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 +27984,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 +28007,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28025,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 +28093,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 +28127,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 +28148,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28212,7 +28177,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 +28261,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 "" @@ -28368,7 +28333,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28414,7 +28379,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 +28392,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 +28454,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28519,7 +28476,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28523,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 "" @@ -28643,7 +28600,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 "" @@ -28832,7 +28789,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 +28802,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 +28845,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 +29062,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 "" @@ -29206,7 +29154,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 +29180,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 +29192,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,7 +29231,7 @@ 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" @@ -29344,11 +29307,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 "" @@ -29371,7 +29334,7 @@ msgstr "" 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,7 +29353,7 @@ 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 "" @@ -29448,14 +29411,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29532,11 +29496,11 @@ msgstr "" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29524,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 +29550,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 "" @@ -29629,7 +29597,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 "" @@ -29659,11 +29627,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29649,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29732,7 +29700,7 @@ msgstr "" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,7 +29712,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29756,19 +29724,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29744,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 +29764,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:501 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29781,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:804 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:645 msgid "You must login to submit this form" msgstr "" @@ -29853,12 +29817,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 @@ -29928,10 +29892,22 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -29985,10 +29961,18 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "" @@ -30093,7 +30077,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 +30222,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 +30284,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 +30299,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 "" @@ -30378,11 +30357,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 +30380,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 "" @@ -30594,19 +30568,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "" @@ -30659,6 +30633,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 +30664,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 +30678,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "" @@ -30733,10 +30711,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30747,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 +30777,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:486 +#: 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 +30813,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 +30843,6 @@ msgstr "" 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 +30867,7 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30960,11 +30946,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 "" @@ -31031,7 +31013,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,7 +31022,7 @@ 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 "" @@ -31048,15 +31030,15 @@ msgstr "" 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 +31047,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 "" @@ -31117,8 +31099,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31108,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:174 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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 "" @@ -31154,19 +31136,23 @@ msgstr "" 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 "" @@ -31174,31 +31160,31 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" -#: 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:1835 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,7 +31217,7 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "" @@ -31267,7 +31253,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 +31266,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:1211 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31330,11 +31316,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31340,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 +31357,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 "" @@ -31390,7 +31376,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:254 msgid "{0} updated" msgstr "" @@ -31434,7 +31420,7 @@ msgstr "" 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 "" @@ -31466,75 +31452,75 @@ msgstr "" 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31528,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31536,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 "" @@ -31567,7 +31553,7 @@ msgstr "" 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 +31577,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 +31585,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "" diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po index 1400f4927b..d17a44f77d 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ 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 @@ -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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "" @@ -144,10 +140,6 @@ msgstr "" msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - #: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -245,6 +237,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 "" @@ -492,7 +491,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 +558,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,10 +567,6 @@ 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 "" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -589,7 +584,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 +683,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:452 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 +712,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +736,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:459 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" @@ -780,6 +783,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 @@ -869,7 +886,7 @@ msgstr "Akcja / Trasa" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "" @@ -978,7 +995,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:501 #: 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 +1006,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "" @@ -1001,7 +1018,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 "" @@ -1034,10 +1051,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1113,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 +1146,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "" @@ -1261,7 +1278,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 "" @@ -1369,7 +1386,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 "" @@ -1396,11 +1413,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1421,8 +1438,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 "" @@ -1577,7 +1594,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 +1654,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 +1675,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 +1723,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 +1956,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 +1964,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 "" @@ -2136,10 +2148,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 +2224,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 +2237,7 @@ msgstr "Data zastosowania" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2267,7 +2285,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 +2318,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2328,7 +2350,11 @@ 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 "" @@ -2404,7 +2430,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2467,6 +2493,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 +2567,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2650,7 +2687,7 @@ 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 "" @@ -2681,6 +2718,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 +2739,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 +2853,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 +2865,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 +2918,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 +2966,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 +2980,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 +3251,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 +3369,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 +3400,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 +3496,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,7 +3553,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "" @@ -3602,7 +3576,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 +3588,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 +3718,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 +3768,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 @@ -3862,7 +3821,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 "" @@ -3888,12 +3847,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3911,16 +3871,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3970,7 +3932,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 "" @@ -3990,11 +3952,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 "" @@ -4045,7 +4007,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 +4015,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 "" @@ -4082,7 +4044,7 @@ 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 "" @@ -4094,11 +4056,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4118,7 +4080,7 @@ msgstr "" 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 +4088,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 +4105,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:1129 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4261,7 +4223,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 +4293,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 +4326,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 +4334,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 "" @@ -4427,7 +4389,7 @@ 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 "" @@ -4480,7 +4442,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,7 +4454,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4518,7 +4480,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,7 +4492,11 @@ 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 "" @@ -4582,7 +4548,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4760,7 +4726,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4871,11 +4837,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4944,16 +4910,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 +4917,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 +4926,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 "" @@ -5047,7 +5003,7 @@ msgstr "" 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 "" @@ -5142,6 +5098,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 +5128,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:406 msgid "Configure Columns" msgstr "" @@ -5196,7 +5157,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5215,7 +5176,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "" @@ -5242,7 +5203,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 "" @@ -5369,7 +5330,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5377,7 +5337,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5385,24 +5344,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" @@ -5478,12 +5425,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5491,7 +5442,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:633 msgid "Correct version :" msgstr "" @@ -5512,10 +5463,10 @@ 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 "" @@ -5652,7 +5603,7 @@ 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:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" @@ -5665,7 +5616,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "" @@ -5677,7 +5628,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,10 +5636,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "" @@ -5705,7 +5656,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:507 msgid "Create your first {0}" msgstr "" @@ -5731,7 +5682,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 +5694,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 "" @@ -6080,14 +6031,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6231,7 +6182,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 "" @@ -6339,7 +6290,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "" @@ -6370,7 +6321,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6508,11 +6459,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6674,11 +6625,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 "" @@ -6729,10 +6680,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6740,11 +6691,16 @@ msgstr "" msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6785,7 +6741,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 +6774,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6863,6 +6819,10 @@ msgstr "Nazwa usunięte" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Usunięte!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "" @@ -6878,7 +6838,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 +6855,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -6922,7 +6882,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 +6917,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 +6937,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 +6946,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 +7029,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 +7090,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 +7107,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 +7116,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 +7166,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 +7180,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 +7190,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 +7208,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 +7231,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,16 +7267,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "" @@ -7424,7 +7370,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 +7417,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 +7430,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 +7463,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 +7477,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,19 +7539,19 @@ 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 "" @@ -7802,7 +7748,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:1955 msgid "Document Unlocked" msgstr "" @@ -7810,15 +7756,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "" @@ -7960,13 +7906,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "" @@ -8188,17 +8134,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:1776 #: 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:350 #: 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 +8152,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8216,7 +8162,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8245,7 +8191,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8348,7 +8294,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 +8303,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 "" @@ -8404,6 +8350,7 @@ 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' @@ -8417,6 +8364,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,7 +8405,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 "" @@ -8588,10 +8536,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 +8604,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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 "" @@ -8726,7 +8674,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 +8700,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 +8793,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 +8800,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 +8812,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 +8834,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 +8847,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 +8873,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 +8893,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 +8909,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 +8925,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 +8973,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 +9043,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 +9063,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 "" @@ -9170,9 +9111,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "" @@ -9192,7 +9133,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9345,7 +9286,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 +9294,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "" @@ -9379,7 +9320,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" @@ -9412,7 +9353,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 +9383,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9483,7 +9426,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9492,11 +9435,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 "" @@ -9609,7 +9552,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 +9569,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 "" @@ -9639,7 +9582,7 @@ msgstr "" 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 "" @@ -9651,8 +9594,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 +9611,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 +9631,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 +9685,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 +9742,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:1870 #: 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 +9765,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 "" @@ -9884,11 +9821,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9906,16 +9843,16 @@ 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:454 #: 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 "" @@ -9939,11 +9876,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9903,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 @@ -10015,7 +9952,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10119,7 +10056,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10178,7 +10115,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 +10129,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 +10153,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,7 +10170,7 @@ 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 "" @@ -10244,18 +10187,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 "" @@ -10343,11 +10286,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 "" @@ -10509,7 +10452,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 +10510,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:2120 +#: 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 +10537,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 +10551,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10669,7 +10606,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 +10666,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 +10698,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 "" @@ -10845,7 +10795,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:1831 msgid "From Document Type" msgstr "" @@ -10872,18 +10822,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 "" @@ -10982,6 +10930,12 @@ 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 msgid "Generate Tracking URL" @@ -11006,7 +10960,7 @@ msgstr "Geolokalizacja" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "" @@ -11312,11 +11266,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" @@ -11450,7 +11399,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 @@ -11463,7 +11411,6 @@ msgstr "GG: mm: ss" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11625,6 +11572,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 @@ -11759,11 +11712,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 +11791,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:1845 msgid "Hide Tags" msgstr "" @@ -11857,7 +11805,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 +11854,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 +11943,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12103,7 +12048,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12233,6 +12178,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 +12213,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 +12274,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:1120 msgid "Illegal SQL Query" msgstr "" @@ -12387,11 +12340,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,11 +12366,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12447,7 +12400,7 @@ msgstr "Bezwarunkowy" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12742,7 +12695,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12766,7 +12719,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 +12794,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:1876 msgid "Insert After" msgstr "" @@ -12857,7 +12810,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 +12828,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "Zainstaluj {0} z Marketplace" @@ -12893,7 +12850,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 "" @@ -12922,7 +12879,7 @@ msgstr "" 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 +12983,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:849 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13052,7 +13009,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,7 +13029,11 @@ 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 "" @@ -13113,7 +13074,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 +13083,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 "" @@ -13139,11 +13100,11 @@ msgstr "" 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:1239 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" @@ -13162,7 +13123,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 "" @@ -13185,7 +13146,7 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" @@ -13197,6 +13158,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13213,7 +13178,7 @@ msgstr "" 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 "" @@ -13249,19 +13214,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13289,12 +13250,20 @@ msgstr "" 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 +13271,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 "" @@ -13314,6 +13287,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13330,7 +13307,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 +13316,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:627 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 +13338,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 "" @@ -13500,7 +13514,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 "" @@ -13792,12 +13806,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 @@ -14070,7 +14086,7 @@ msgstr "" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14174,6 +14190,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 +14211,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" @@ -14354,7 +14370,7 @@ 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/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14450,20 +14466,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 +14506,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 +14520,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,6 +14651,10 @@ 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' @@ -14699,7 +14707,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14740,7 +14748,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 +14757,8 @@ msgstr "" msgid "Load Balancing" msgstr "Równoważenie obciążenia" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14768,8 +14775,8 @@ 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 msgid "Loading" @@ -14783,7 +14790,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 +14800,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14854,7 +14861,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14994,7 +15001,7 @@ msgstr "" msgid "Logout" msgstr "Wyloguj" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "" @@ -15174,7 +15181,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:509 msgid "Mandatory Information missing:" msgstr "" @@ -15194,7 +15201,7 @@ msgstr "" 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 +15282,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 +15364,7 @@ msgstr "" msgid "Max auto email report per user" 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 "" @@ -15372,16 +15377,11 @@ msgstr "Maksymalny" 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 "" @@ -15451,7 +15451,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 "" @@ -15517,7 +15517,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 +15549,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 "" @@ -15706,7 +15698,7 @@ msgstr "Panna" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -15973,7 +15965,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 "" @@ -16047,7 +16039,7 @@ msgstr "Pani" msgid "Ms" msgstr "Pani" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16088,7 +16080,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:498 #: 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,7 +16118,7 @@ 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/views/file/file_view.js:97 @@ -16142,7 +16134,7 @@ msgstr "" 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 +16146,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 +16185,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16230,12 +16222,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:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16250,7 +16242,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16300,10 +16292,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 +16300,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 "" @@ -16379,12 +16367,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:190 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 +16381,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 +16399,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 +16457,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:411 msgid "New {0}" msgstr "" @@ -16491,7 +16479,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 +16487,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 +16500,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,12 +16607,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16676,6 +16665,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 +16704,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16720,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "" @@ -16747,11 +16740,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "" @@ -16767,7 +16760,7 @@ 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 "" @@ -16791,7 +16784,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "" @@ -16819,19 +16812,15 @@ 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 "" @@ -16851,6 +16840,10 @@ 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 "" @@ -16923,7 +16916,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:947 msgid "No permission to read {0}" msgstr "" @@ -16951,7 +16944,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16975,7 +16968,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17027,7 +17020,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 "" @@ -17076,18 +17069,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17097,9 +17089,9 @@ msgstr "" #: 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/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 +17123,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 +17139,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17167,7 @@ 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 "" @@ -17184,18 +17176,18 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17222,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17254,10 +17246,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 +17294,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17362,7 +17353,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,7 +17411,7 @@ 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 "" @@ -17534,11 +17525,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 +17648,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 "" @@ -17742,7 +17733,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 "" @@ -17786,7 +17777,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" @@ -17860,7 +17851,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 +17869,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 +17877,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17901,13 +17892,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 +17907,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 +17926,7 @@ msgstr "Otwarty" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "" @@ -17957,7 +17952,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 "" @@ -17989,7 +17984,7 @@ msgstr "Opcjonalnie: powiadomienie zostanie wysłane, jeśli wyrażenie jest pra 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 +17993,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 +18001,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 "" @@ -18050,8 +18045,8 @@ msgstr "Nagłówek Historii Organizacji" 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 "" @@ -18130,9 +18125,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:1796 msgid "PDF" msgstr "" @@ -18173,11 +18168,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18349,7 +18344,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 "" @@ -18393,11 +18388,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 +18401,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 +18475,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18486,7 @@ msgstr "Nieaktywny" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18504,7 +18499,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18521,6 +18516,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 +18528,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18541,7 +18540,7 @@ msgstr "" 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 +18548,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "" @@ -18619,10 +18618,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 "" @@ -18758,16 +18759,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18855,8 +18856,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18916,11 +18917,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 +18929,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18948,10 +18949,6 @@ 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 "" @@ -18960,7 +18957,7 @@ msgstr "" 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:1072 msgid "Please check your email for verification" msgstr "" @@ -18992,7 +18989,7 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19022,8 +19019,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19062,7 +19059,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 +19096,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 "" @@ -19115,7 +19113,7 @@ msgstr "" msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19131,7 +19129,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:1711 msgid "Please save the report first" msgstr "" @@ -19167,7 +19165,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 +19177,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19205,7 +19203,7 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" @@ -19217,7 +19215,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 "" @@ -19253,23 +19251,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 +19288,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 "" @@ -19380,14 +19378,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19403,7 +19393,7 @@ msgstr "" msgid "Precision" msgstr "Precyzja liczb" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19459,7 +19449,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 "" @@ -19494,13 +19484,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 +19512,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 @@ -19546,7 +19529,7 @@ msgstr "" 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 +19575,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19622,8 +19605,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19730,7 +19713,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19779,11 +19762,11 @@ msgstr "" msgid "Print with letterhead" msgstr "Broszura z firmowym" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "" @@ -19793,11 +19776,11 @@ msgstr "" msgid "Printer Name" msgstr "Nazwa drukarki" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19859,7 +19842,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "" @@ -19885,9 +19868,9 @@ 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 "" @@ -19973,24 +19956,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 +19977,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 +20066,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 "" @@ -20111,7 +20081,7 @@ msgid "QR Code for Login Verification" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20161,7 +20131,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 +20231,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20298,12 +20268,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 @@ -20340,7 +20304,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 +20321,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 +20378,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 +20393,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 "" @@ -20496,7 +20455,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 +20466,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 +20506,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 +20523,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" @@ -20818,15 +20790,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20851,18 +20823,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:534 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:374 #: 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 +21011,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 "" @@ -21242,7 +21214,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "" @@ -21280,7 +21252,7 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "" @@ -21306,20 +21278,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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 "" @@ -21342,7 +21314,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 "" @@ -21472,11 +21444,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "" @@ -21484,11 +21456,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21495,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21561,6 +21533,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 +21543,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 +21601,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 "" @@ -21685,9 +21653,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 +21694,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 +21708,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 @@ -21789,7 +21757,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21832,6 +21800,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 +21810,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 +21847,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 +21867,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 +21878,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 @@ -21940,12 +21906,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21953,7 +21919,7 @@ msgstr "" msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21981,7 +21947,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,25 +21955,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22103,7 +22069,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 +22147,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 +22175,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22197,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:1735 msgid "Save As" msgstr "" @@ -22248,7 +22210,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "" @@ -22277,7 +22239,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 +22318,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 "" @@ -22524,7 +22486,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 "" @@ -22633,7 +22595,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 +22642,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22688,12 +22650,12 @@ 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:497 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" @@ -22704,7 +22666,7 @@ msgstr "" 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 "" @@ -22768,12 +22730,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:489 #: 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 "" @@ -22819,8 +22784,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:598 msgid "Select Network Printer" msgstr "" @@ -22888,11 +22853,11 @@ msgstr "" msgid "Select a group node first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22922,13 +22887,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22962,7 +22927,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 +23111,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "" @@ -23240,7 +23205,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 "" @@ -23269,7 +23234,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 "" @@ -23374,7 +23339,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:2104 msgid "Set Level" msgstr "" @@ -23428,7 +23393,7 @@ msgstr "" msgid "Set Role For" msgstr "Ustaw rola" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23569,14 +23534,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 +23552,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "" @@ -23662,11 +23622,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 +23641,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 +23693,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23871,7 +23821,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:1845 msgid "Show Tags" msgstr "" @@ -23888,7 +23838,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 +23878,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 +23926,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 +23956,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 +23991,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 "" @@ -24105,7 +24051,7 @@ msgstr "Simple Python Expression, Przykład: status == 'Open' i wpisz == msgid "Simultaneous Sessions" msgstr "Liczba jednoczesnych sesji" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "" @@ -24338,11 +24284,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,13 +24319,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24387,6 +24332,10 @@ msgstr "" 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 +24362,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 "" @@ -24474,7 +24429,7 @@ msgstr "" 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 "" @@ -24530,8 +24485,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 +24494,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 @@ -24612,7 +24567,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 +24623,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 +24648,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 +24656,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 +24694,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:454 msgid "Sticky" msgstr "" @@ -24767,6 +24724,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24861,7 +24822,7 @@ msgstr "" msgid "Subject Field" msgstr "Pole tematu" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24886,7 +24847,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24896,7 +24857,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24920,7 +24881,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 +24893,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 +24905,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24953,11 +24914,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 +24941,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 +24955,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:1171 #: 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 +24997,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 +25048,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 +25170,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25338,6 +25293,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 +25376,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 +25450,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 +25459,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,7 +25481,7 @@ msgstr "Tabela MultiSelect" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "" @@ -25570,11 +25527,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 +25600,7 @@ msgstr "Ostrzeżenia szablonu" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "" @@ -25708,7 +25672,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 +25696,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:1193 msgid "The CSV format is case sensitive" msgstr "" @@ -25743,7 +25707,7 @@ 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 "" @@ -25751,7 +25715,7 @@ msgstr "" 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 +25756,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 +25764,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25900,11 +25864,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -25941,7 +25905,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 "" @@ -25990,7 +25954,7 @@ msgstr "" 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,6 +25966,10 @@ 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 "" @@ -26034,11 +26002,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 "" @@ -26126,7 +26094,7 @@ 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 "" @@ -26188,7 +26156,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 +26175,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26231,12 +26199,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 +26217,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:423 msgid "This may get printed on multiple pages" msgstr "" @@ -26302,7 +26264,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 +26296,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:1253 msgid "Throttled" msgstr "" @@ -26486,11 +26448,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 "" @@ -26539,9 +26501,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 +26525,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 +26547,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 "" @@ -26740,7 +26696,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 +26712,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26806,7 +26762,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 +26778,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26884,10 +26840,10 @@ msgstr "" msgid "Topic" msgstr "Temat" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -26930,18 +26886,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 "" @@ -27040,6 +26996,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 +27015,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:2235 msgid "Translate Data" msgstr "" @@ -27065,7 +27026,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 +27110,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 "" @@ -27496,8 +27457,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 +27473,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 "" @@ -27586,7 +27546,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:427 msgid "Update" msgstr "" @@ -27662,7 +27622,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 +27630,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 "" @@ -27843,7 +27803,7 @@ msgstr "" 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 +27824,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 +27835,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 +27850,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 +27864,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 +27881,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 +27915,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 +27979,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 +27998,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 +28021,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28080,7 +28039,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 +28107,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 +28141,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 +28162,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28226,7 +28191,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 +28275,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 "" @@ -28382,7 +28347,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28428,7 +28393,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 +28406,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 "" @@ -28503,15 +28468,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28533,7 +28490,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28580,7 +28537,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 "" @@ -28657,7 +28614,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 "" @@ -28846,7 +28803,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 +28816,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 +28859,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 +29076,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 "" @@ -29220,7 +29168,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 +29194,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 +29206,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,7 +29245,7 @@ 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" @@ -29358,11 +29321,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 "" @@ -29385,7 +29348,7 @@ msgstr "Zapisz" 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,7 +29367,7 @@ 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 "" @@ -29462,14 +29425,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29546,11 +29510,11 @@ msgstr "" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29574,7 +29538,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 +29564,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 "" @@ -29643,7 +29611,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 "" @@ -29673,11 +29641,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29695,7 +29663,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29746,7 +29714,7 @@ msgstr "" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29758,7 +29726,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29770,19 +29738,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29790,11 +29758,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 +29778,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:501 msgid "You haven't created a {0} yet" msgstr "" @@ -29831,11 +29795,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:804 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:645 msgid "You must login to submit this form" msgstr "" @@ -29867,12 +29831,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 @@ -29942,10 +29906,22 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -29999,10 +29975,18 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "" @@ -30107,7 +30091,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 +30236,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 +30298,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 +30313,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 "" @@ -30392,11 +30371,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 +30394,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 "" @@ -30608,19 +30582,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:301 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "" @@ -30673,6 +30647,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 +30678,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 +30692,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "" @@ -30747,10 +30725,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30761,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 +30791,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:486 +#: 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 +30827,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 "" @@ -30870,7 +30857,6 @@ msgstr "" 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 +30881,7 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30974,11 +30960,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 "" @@ -31045,7 +31027,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,7 +31036,7 @@ 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 "" @@ -31062,15 +31044,15 @@ msgstr "" 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 +31061,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 "" @@ -31131,8 +31113,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "" @@ -31140,15 +31122,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:174 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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 "" @@ -31168,19 +31150,23 @@ msgstr "" 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 "" @@ -31188,31 +31174,31 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" -#: 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:1835 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31245,7 +31231,7 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "" @@ -31281,7 +31267,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 +31280,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:1211 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31344,11 +31330,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "" @@ -31368,11 +31354,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 +31371,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 "" @@ -31404,7 +31390,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:254 msgid "{0} updated" msgstr "" @@ -31448,7 +31434,7 @@ msgstr "" 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 "" @@ -31480,75 +31466,75 @@ msgstr "" 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31542,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31564,7 +31550,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 "" @@ -31581,7 +31567,7 @@ msgstr "" 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 +31591,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 +31599,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "" diff --git a/frappe/locale/pt.po b/frappe/locale/pt.po index da2f7913fc..de38dad1d0 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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 @@ -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,19 +78,19 @@ 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:363 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:259 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 +98,11 @@ msgstr "" 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 "" @@ -122,7 +118,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:892 msgid "1 = True & 0 = False" msgstr "" @@ -144,10 +140,6 @@ msgstr "" msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - #: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -245,6 +237,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 "" @@ -479,7 +478,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 +545,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,10 +554,6 @@ 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 "" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -576,7 +571,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 +670,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:452 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 +699,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +723,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:459 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 +770,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 @@ -856,7 +873,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "" @@ -965,7 +982,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:501 #: 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 +993,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1005,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,10 +1038,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1100,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 +1133,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "" @@ -1248,7 +1265,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 "" @@ -1356,7 +1373,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,11 +1400,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1425,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 "" @@ -1564,7 +1581,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 +1641,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 +1662,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 +1710,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 +1942,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 +1950,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 "" @@ -2122,10 +2134,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 +2210,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 +2223,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2271,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 +2304,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,7 +2336,11 @@ 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 "" @@ -2390,7 +2416,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2479,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 +2553,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2636,7 +2673,7 @@ 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" @@ -2667,6 +2704,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 +2725,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 +2839,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 +2851,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 +2904,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 +2952,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 +2966,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 +3237,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 +3355,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 +3386,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 +3482,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,7 +3539,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "" @@ -3588,7 +3562,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 +3574,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 +3704,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 +3754,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 @@ -3848,7 +3807,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 "" @@ -3874,12 +3833,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Cancelar" @@ -3897,16 +3857,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3956,7 +3918,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 "" @@ -3976,11 +3938,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,7 +3993,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 +4001,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 "" @@ -4068,7 +4030,7 @@ 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 "" @@ -4080,11 +4042,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4104,7 +4066,7 @@ msgstr "" 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 +4074,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 +4091,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:1129 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4247,8 +4209,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 +4280,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 +4313,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 +4321,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,7 +4376,7 @@ 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 "" @@ -4466,7 +4429,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 +4441,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4467,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,7 +4479,11 @@ 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 "" @@ -4568,7 +4535,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4713,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4857,11 +4824,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4930,16 +4897,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 +4904,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 +4913,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 "" @@ -5033,7 +4990,7 @@ msgstr "" 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 "" @@ -5128,6 +5085,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 +5115,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:406 msgid "Configure Columns" msgstr "" @@ -5182,7 +5144,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Confirmar" @@ -5201,7 +5163,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5190,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 "" @@ -5355,7 +5317,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5363,7 +5324,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5371,24 +5331,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" @@ -5464,12 +5412,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5429,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:633 msgid "Correct version :" msgstr "" @@ -5498,10 +5450,10 @@ 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 "" @@ -5638,7 +5590,7 @@ msgstr "" msgid "Create New" msgstr "Criar Novo" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Criar Novo" @@ -5651,7 +5603,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "" @@ -5663,7 +5615,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,10 +5623,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5643,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:507 msgid "Create your first {0}" msgstr "" @@ -5717,7 +5669,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 +5681,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 "" @@ -6066,14 +6018,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6217,7 +6169,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 "" @@ -6325,7 +6277,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "" @@ -6356,7 +6308,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6446,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6612,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 "" @@ -6715,10 +6667,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6726,11 +6678,16 @@ msgstr "" msgid "Delete" msgstr "Eliminar" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6771,7 +6728,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 +6761,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6849,6 +6806,10 @@ msgstr "" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Eliminado!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "" @@ -6864,7 +6825,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 +6842,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6869,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 +6904,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 +6924,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 +6933,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 +7016,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 +7077,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 +7094,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 +7103,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 +7153,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 +7167,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 +7177,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 +7195,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 +7218,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,16 +7254,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "" @@ -7410,7 +7357,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 +7404,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 +7417,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 +7450,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 +7464,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,19 +7526,19 @@ 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 "" @@ -7788,7 +7735,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:1955 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7743,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7893,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "" @@ -8174,17 +8121,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:1776 #: 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:350 #: 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 +8139,7 @@ msgstr "" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Editar" @@ -8202,7 +8149,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "Editar" @@ -8231,7 +8178,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8334,7 +8281,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 +8290,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 "" @@ -8390,6 +8337,7 @@ 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' @@ -8403,6 +8351,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 @@ -8443,7 +8392,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 "" @@ -8574,10 +8523,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 +8591,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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 "" @@ -8712,7 +8661,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 +8687,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 +8780,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 +8787,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 +8799,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 +8821,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 +8834,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 +8860,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 +8880,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 +8896,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 +8912,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 +8960,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 +9030,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 +9050,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" @@ -9156,9 +9098,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "" @@ -9178,7 +9120,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9331,7 +9273,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 +9281,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,7 +9307,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" @@ -9398,7 +9340,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 +9370,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportar" @@ -9469,7 +9413,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9422,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 "" @@ -9595,7 +9539,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 +9556,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 "" @@ -9625,7 +9569,7 @@ msgstr "" 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 "" @@ -9637,8 +9581,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 +9598,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 +9618,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 +9672,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 +9729,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:1870 #: 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 +9752,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9870,11 +9808,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,16 +9830,16 @@ 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:454 #: 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 "" @@ -9925,11 +9863,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9890,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 @@ -10001,7 +9939,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10105,7 +10043,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10164,7 +10102,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 +10116,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 +10140,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,7 +10157,7 @@ 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 "" @@ -10230,18 +10174,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 "" @@ -10329,11 +10273,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 "" @@ -10495,7 +10439,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 +10497,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:2120 +#: 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 +10524,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 +10538,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10593,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 +10653,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 +10685,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 +10782,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:1831 msgid "From Document Type" msgstr "" @@ -10858,18 +10809,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 "" @@ -10968,6 +10917,12 @@ 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 msgid "Generate Tracking URL" @@ -10992,7 +10947,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "" @@ -11298,11 +11253,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" @@ -11436,7 +11386,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 @@ -11449,7 +11398,6 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11611,6 +11559,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 @@ -11745,11 +11699,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 +11778,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "" @@ -11843,7 +11792,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 +11841,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 +11930,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,7 +12035,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12219,6 +12165,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 +12200,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 +12261,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:1120 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12327,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,11 +12353,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12433,7 +12387,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12728,7 +12682,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12752,7 +12706,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 +12781,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:1876 msgid "Insert After" msgstr "" @@ -12843,7 +12797,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 +12815,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12837,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 "" @@ -12908,7 +12866,7 @@ msgstr "" 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 +12970,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:849 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13038,7 +12996,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,7 +13016,11 @@ 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 "" @@ -13099,7 +13061,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 +13070,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 "" @@ -13125,11 +13087,11 @@ msgstr "" 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:1239 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" @@ -13148,7 +13110,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 "" @@ -13171,7 +13133,7 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" @@ -13183,6 +13145,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13199,7 +13165,7 @@ msgstr "" 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 "" @@ -13235,19 +13201,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13275,12 +13237,20 @@ msgstr "" 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 +13258,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 "" @@ -13300,6 +13274,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13316,7 +13294,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 +13303,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:627 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 +13325,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 "É" @@ -13486,7 +13501,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 "" @@ -13778,12 +13793,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 @@ -14056,7 +14073,7 @@ msgstr "" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14160,6 +14177,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 +14198,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" @@ -14340,7 +14357,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14436,20 +14453,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 +14493,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 +14507,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,6 +14638,10 @@ 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' @@ -14685,7 +14694,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14735,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 +14744,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Carregue mais" @@ -14754,8 +14762,8 @@ 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 msgid "Loading" @@ -14769,7 +14777,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 +14787,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14848,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14980,7 +14988,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "" @@ -15160,7 +15168,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:509 msgid "Mandatory Information missing:" msgstr "" @@ -15180,7 +15188,7 @@ msgstr "" 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 +15269,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 +15351,7 @@ msgstr "" msgid "Max auto email report per user" 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 "" @@ -15358,16 +15364,11 @@ msgstr "" 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 "" @@ -15437,7 +15438,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 "" @@ -15503,7 +15504,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 +15536,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 "" @@ -15692,7 +15685,7 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -15959,7 +15952,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 "" @@ -16033,7 +16026,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16074,7 +16067,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:498 #: 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,7 +16105,7 @@ 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/views/file/file_view.js:97 @@ -16128,7 +16121,7 @@ msgstr "" 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 +16133,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 +16172,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16209,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16229,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16286,10 +16279,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 +16287,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 "" @@ -16365,12 +16354,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:190 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 +16368,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 +16386,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 +16444,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:411 msgid "New {0}" msgstr "" @@ -16477,7 +16466,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 +16474,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 +16487,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,12 +16594,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16662,6 +16652,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 +16691,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16707,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16727,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "" @@ -16753,7 +16747,7 @@ 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 "" @@ -16777,7 +16771,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "" @@ -16805,19 +16799,15 @@ 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 "" @@ -16837,6 +16827,10 @@ 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 "" @@ -16909,7 +16903,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:947 msgid "No permission to read {0}" msgstr "" @@ -16937,7 +16931,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16961,7 +16955,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17013,7 +17007,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 "" @@ -17062,18 +17056,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17083,9 +17076,9 @@ msgstr "" #: 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/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 +17110,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 +17126,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17154,7 @@ 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 "" @@ -17170,18 +17163,18 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17209,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17233,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 +17281,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17340,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,7 +17398,7 @@ 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 "" @@ -17520,11 +17512,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 +17635,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 "" @@ -17728,7 +17720,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 "" @@ -17772,7 +17764,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" @@ -17846,7 +17838,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 +17856,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 +17864,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17879,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 +17894,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 +17913,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +17939,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 "" @@ -17975,7 +17971,7 @@ msgstr "" 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 +17980,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 +17988,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 "" @@ -18036,8 +18032,8 @@ msgstr "" 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 "" @@ -18116,9 +18112,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:1796 msgid "PDF" msgstr "" @@ -18159,11 +18155,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18331,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 "" @@ -18379,11 +18375,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 +18388,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 +18462,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18473,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18486,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18503,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 +18515,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18527,7 +18527,7 @@ msgstr "" 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 +18535,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18605,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" @@ -18744,16 +18746,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18841,8 +18843,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +18904,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 +18916,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18934,10 +18936,6 @@ 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 "" @@ -18946,7 +18944,7 @@ msgstr "" 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:1072 msgid "Please check your email for verification" msgstr "" @@ -18978,7 +18976,7 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19008,8 +19006,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19048,7 +19046,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 +19083,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 "" @@ -19101,7 +19100,7 @@ msgstr "" msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19116,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:1711 msgid "Please save the report first" msgstr "" @@ -19153,7 +19152,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 +19164,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,7 +19190,7 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" @@ -19203,7 +19202,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 "" @@ -19239,23 +19238,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 +19275,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 "" @@ -19366,14 +19365,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19380,7 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19445,7 +19436,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 "" @@ -19480,13 +19471,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 +19499,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 @@ -19532,7 +19516,7 @@ msgstr "" 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 +19562,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19592,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19716,7 +19700,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19765,11 +19749,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19763,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19845,7 +19829,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "" @@ -19871,9 +19855,9 @@ 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,24 +19943,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 +19964,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 +20053,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 "" @@ -20097,7 +20068,7 @@ msgid "QR Code for Login Verification" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20118,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 +20218,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20255,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 @@ -20326,7 +20291,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 +20308,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 +20365,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 +20380,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 "" @@ -20482,7 +20442,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 +20453,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 +20493,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 +20510,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" @@ -20804,15 +20777,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Recarregar" @@ -20837,18 +20810,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:534 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:374 #: 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 +20998,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 "" @@ -21228,7 +21201,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "" @@ -21266,7 +21239,7 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "" @@ -21292,20 +21265,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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 "" @@ -21328,7 +21301,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 "" @@ -21458,11 +21431,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21443,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21482,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21547,6 +21520,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 +21530,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 +21588,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 "" @@ -21671,9 +21640,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 +21681,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 +21695,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 @@ -21775,7 +21744,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21787,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 +21797,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 +21834,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 +21854,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 +21865,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 @@ -21926,12 +21893,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21939,7 +21906,7 @@ msgstr "" msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21967,7 +21934,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,25 +21942,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22089,7 +22056,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 +22134,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 +22162,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22184,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:1735 msgid "Save As" msgstr "" @@ -22234,7 +22197,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "" @@ -22263,7 +22226,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 +22305,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 "" @@ -22510,7 +22473,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 "" @@ -22619,7 +22582,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 +22629,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,12 +22637,12 @@ 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:497 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" @@ -22690,7 +22653,7 @@ msgstr "" 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 "" @@ -22754,12 +22717,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:489 #: 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 "" @@ -22805,8 +22771,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:598 msgid "Select Network Printer" msgstr "" @@ -22874,11 +22840,11 @@ msgstr "" msgid "Select a group node first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +22874,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +22914,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 +23098,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23192,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 "" @@ -23255,7 +23221,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 "" @@ -23360,7 +23326,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:2104 msgid "Set Level" msgstr "" @@ -23414,7 +23380,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23555,14 +23521,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 +23539,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23609,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 +23628,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 +23680,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23808,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:1845 msgid "Show Tags" msgstr "" @@ -23874,7 +23825,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 +23865,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 +23913,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 +23943,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 +23978,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 "" @@ -24091,7 +24038,7 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "" @@ -24324,11 +24271,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,13 +24306,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24373,6 +24319,10 @@ msgstr "" 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 +24349,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 "" @@ -24460,7 +24416,7 @@ msgstr "" 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 "" @@ -24516,8 +24472,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 +24481,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 @@ -24598,7 +24554,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 +24610,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 +24635,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 +24643,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 +24681,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:454 msgid "Sticky" msgstr "" @@ -24753,6 +24711,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24847,7 +24809,7 @@ msgstr "Assunto" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24872,7 +24834,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,7 +24844,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,7 +24868,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 +24880,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 +24892,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +24901,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 +24928,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 +24942,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:1171 #: 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 +24984,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 +25035,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 +25157,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25324,6 +25280,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 +25363,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 +25437,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 +25446,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,7 +25468,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "" @@ -25556,11 +25514,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 +25587,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25659,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 +25683,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:1193 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,7 +25694,7 @@ 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 "" @@ -25737,7 +25702,7 @@ msgstr "" 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 +25743,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 +25751,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25886,11 +25851,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -25927,7 +25892,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 "" @@ -25976,7 +25941,7 @@ msgstr "" 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,6 +25953,10 @@ 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 "" @@ -26020,11 +25989,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 "" @@ -26112,7 +26081,7 @@ 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 "" @@ -26174,7 +26143,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 +26162,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26186,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 +26204,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:423 msgid "This may get printed on multiple pages" msgstr "" @@ -26288,7 +26251,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 +26283,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:1253 msgid "Throttled" msgstr "" @@ -26472,11 +26435,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 "" @@ -26525,9 +26488,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 +26512,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 +26534,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 "" @@ -26726,7 +26683,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 +26699,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26749,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 +26765,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26827,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +26873,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 "" @@ -27026,6 +26983,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 +27002,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "" @@ -27051,7 +27013,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 +27097,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 "" @@ -27482,8 +27444,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 +27460,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27572,7 +27533,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:427 msgid "Update" msgstr "Atualizar" @@ -27648,7 +27609,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 +27617,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 "" @@ -27829,7 +27790,7 @@ msgstr "" 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 +27811,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 +27822,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 +27837,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 +27851,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 +27868,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 +27902,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 +27966,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 +27985,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 +28008,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28026,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 +28094,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 +28128,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 +28149,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28212,7 +28178,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 +28262,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 "" @@ -28368,7 +28334,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28414,7 +28380,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 +28393,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 +28455,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28519,7 +28477,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28524,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 "" @@ -28643,7 +28601,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 "" @@ -28832,7 +28790,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 +28803,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 +28846,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 +29063,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 "" @@ -29206,7 +29155,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 +29181,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 +29193,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,7 +29232,7 @@ 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" @@ -29344,11 +29308,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 "" @@ -29371,7 +29335,7 @@ msgstr "" 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,7 +29354,7 @@ 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 "" @@ -29448,14 +29412,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29532,11 +29497,11 @@ msgstr "" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29525,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 +29551,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 "" @@ -29629,7 +29598,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 "" @@ -29659,11 +29628,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29650,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29732,7 +29701,7 @@ msgstr "" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,7 +29713,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29756,19 +29725,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29745,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 +29765,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:501 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29782,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:804 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:645 msgid "You must login to submit this form" msgstr "" @@ -29853,13 +29818,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." @@ -29928,10 +29893,22 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -29985,10 +29962,18 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "" @@ -30093,7 +30078,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 +30223,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 +30285,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 +30300,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 "" @@ -30378,11 +30358,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 +30381,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" @@ -30594,19 +30569,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "desde ontem" @@ -30659,6 +30634,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 +30665,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 +30679,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "" @@ -30733,10 +30712,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30748,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 +30778,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:486 +#: 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 +30814,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" @@ -30856,7 +30844,6 @@ msgstr "" 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 +30868,7 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30960,11 +30947,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 "" @@ -31031,7 +31014,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,7 +31023,7 @@ 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" @@ -31048,15 +31031,15 @@ msgstr "{0} é um campo obrigatório" 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 +31048,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 "" @@ -31117,8 +31100,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31109,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:174 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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." @@ -31154,19 +31137,23 @@ msgstr "{0} não é um formato de relatório válido. O formato do relatório de 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 "" @@ -31174,31 +31161,31 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} é obrigatório" -#: 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:1835 msgid "{0} items selected" msgstr "{0} itens selecionados" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,7 +31218,7 @@ msgstr "há {0} minutos" msgid "{0} months ago" msgstr "há {0} meses" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} deve ser posterior a {1}" @@ -31267,7 +31254,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 +31267,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31330,11 +31317,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "" +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "{0} linha #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} guardado com sucesso" @@ -31354,11 +31341,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 +31358,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 "" @@ -31390,7 +31377,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:254 msgid "{0} updated" msgstr "" @@ -31434,7 +31421,7 @@ msgstr "{0} {1} já existe" 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 "" @@ -31466,75 +31453,75 @@ msgstr "" 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:1801 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:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 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:1803 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31529,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31537,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 "" @@ -31567,7 +31554,7 @@ msgstr "" 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 +31578,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 +31586,11 @@ msgstr "" msgid "{} Complete" msgstr "{} Concluído" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "" diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po index eaa758a7b2..bf69e6f8b4 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:892 msgid "1 = True & 0 = False" msgstr "" @@ -144,10 +140,6 @@ msgstr "" msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - #: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -245,6 +237,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 "" @@ -479,7 +478,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 +545,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,10 +554,6 @@ 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 "" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -576,7 +571,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 +670,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:452 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 +699,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +723,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:459 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 +770,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 @@ -856,7 +873,7 @@ msgstr "Ação / Rota" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "" @@ -965,7 +982,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:501 #: 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 +993,7 @@ msgstr "" msgid "Add" msgstr "Adicionar" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1005,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,10 +1038,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1100,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 +1133,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "" @@ -1248,7 +1265,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 "" @@ -1356,7 +1373,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,11 +1400,11 @@ msgstr "" msgid "Administrator" msgstr "Administrador" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1425,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 "" @@ -1564,7 +1581,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 +1641,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 +1662,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 +1710,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 +1942,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 +1950,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 "" @@ -2122,10 +2134,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 +2210,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 +2223,7 @@ msgstr "Aplicado em" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2271,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 +2304,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,7 +2336,11 @@ 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 "" @@ -2390,7 +2416,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2479,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 +2553,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2636,7 +2673,7 @@ 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" @@ -2667,6 +2704,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 +2725,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 +2839,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 +2851,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 +2904,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 +2952,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 +2966,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 +3237,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 +3355,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 +3386,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 +3482,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,7 +3539,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "" @@ -3588,7 +3562,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 +3574,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 +3704,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 +3754,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 @@ -3848,7 +3807,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 "" @@ -3874,12 +3833,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3857,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3956,7 +3918,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 "" @@ -3976,11 +3938,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,7 +3993,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 +4001,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 "" @@ -4068,7 +4030,7 @@ 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 "" @@ -4080,11 +4042,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4104,7 +4066,7 @@ msgstr "" 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 +4074,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 +4091,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:1129 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4247,8 +4209,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 +4279,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 +4312,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 +4320,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,7 +4375,7 @@ 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 "" @@ -4466,7 +4428,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 +4440,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4466,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,7 +4478,11 @@ 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 "" @@ -4568,7 +4534,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4712,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Recolher Todos" @@ -4857,11 +4823,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4930,16 +4896,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 +4903,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 +4912,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 "" @@ -5033,7 +4989,7 @@ msgstr "Nome da Empresa" 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 "" @@ -5128,6 +5084,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 +5114,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:406 msgid "Configure Columns" msgstr "" @@ -5182,7 +5143,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5162,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5189,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 "" @@ -5355,7 +5316,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5363,7 +5323,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5371,24 +5330,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 "" @@ -5464,12 +5411,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5428,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:633 msgid "Correct version :" msgstr "" @@ -5498,10 +5449,10 @@ 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 "" @@ -5638,7 +5589,7 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" @@ -5651,7 +5602,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "" @@ -5663,7 +5614,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,10 +5622,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5642,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:507 msgid "Create your first {0}" msgstr "" @@ -5717,7 +5668,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 +5680,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 "" @@ -6066,14 +6017,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6217,7 +6168,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 "" @@ -6325,7 +6276,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "" @@ -6356,7 +6307,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6445,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6611,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 "" @@ -6715,10 +6666,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6726,11 +6677,16 @@ msgstr "" msgid "Delete" msgstr "Excluir" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6771,7 +6727,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 +6760,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6849,6 +6805,10 @@ msgstr "Nome Excluído" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Excluído!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "" @@ -6864,8 +6824,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 +6841,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6868,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 +6903,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 +6923,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 +6932,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 +7015,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 +7076,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 +7093,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 +7102,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 +7152,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 +7166,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 +7176,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 +7194,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 +7217,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,16 +7253,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "" @@ -7410,7 +7356,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 +7403,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 +7416,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 +7449,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 +7463,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,19 +7525,19 @@ 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 "" @@ -7788,7 +7734,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:1955 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7742,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7892,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "Baixar" @@ -8174,17 +8120,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:1776 #: 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:350 #: 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 +8138,7 @@ msgstr "" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Editar" @@ -8202,7 +8148,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "Editar" @@ -8231,7 +8177,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8334,7 +8280,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 +8289,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 "" @@ -8390,6 +8336,7 @@ 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' @@ -8403,6 +8350,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 @@ -8443,7 +8391,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 "" @@ -8574,10 +8522,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 +8590,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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 "" @@ -8712,7 +8660,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 +8686,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 +8779,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 +8786,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 +8798,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 +8820,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 +8833,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 +8859,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 +8879,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 +8895,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 +8911,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 +8959,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 +9029,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 +9049,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" @@ -9156,9 +9097,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "" @@ -9178,7 +9119,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9331,7 +9272,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 +9280,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,7 +9306,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandir Todos" @@ -9398,7 +9339,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 +9369,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9412,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9421,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 "" @@ -9595,7 +9538,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 +9555,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 "" @@ -9625,7 +9568,7 @@ msgstr "" 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 "" @@ -9637,8 +9580,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 +9597,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 +9617,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 +9671,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 +9728,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:1870 #: 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 +9751,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 "" @@ -9870,11 +9807,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,16 +9829,16 @@ 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:454 #: 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 "" @@ -9925,11 +9862,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9889,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 @@ -10001,7 +9938,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10105,7 +10042,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10164,7 +10101,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 +10115,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 +10139,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,7 +10156,7 @@ 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 "" @@ -10230,18 +10173,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 "" @@ -10329,11 +10272,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 "" @@ -10495,7 +10438,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 +10496,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:2120 +#: 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 +10523,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 +10537,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10592,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 +10652,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 +10684,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 +10781,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:1831 msgid "From Document Type" msgstr "" @@ -10858,18 +10808,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 "" @@ -10968,6 +10916,12 @@ 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 msgid "Generate Tracking URL" @@ -10992,7 +10946,7 @@ msgstr "Geolocalização" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "" @@ -11194,7 +11148,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 +11252,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" @@ -11436,7 +11385,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 @@ -11449,7 +11397,6 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11611,6 +11558,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 @@ -11745,11 +11698,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 +11777,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "" @@ -11843,7 +11791,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 +11840,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 +11929,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,7 +12034,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12219,6 +12164,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 +12199,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 +12260,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:1120 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12326,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,11 +12352,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12433,7 +12386,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:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "Importar" @@ -12728,7 +12681,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12752,7 +12705,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 +12780,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:1876 msgid "Insert After" msgstr "" @@ -12843,7 +12796,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 +12814,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12836,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 "" @@ -12908,7 +12865,7 @@ msgstr "" 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 +12969,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:849 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13038,7 +12995,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,7 +13015,11 @@ 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 "" @@ -13099,7 +13060,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 +13069,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 "" @@ -13125,11 +13086,11 @@ msgstr "" 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:1239 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" @@ -13148,7 +13109,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 "" @@ -13171,7 +13132,7 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" @@ -13183,6 +13144,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13199,7 +13164,7 @@ msgstr "" 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 "" @@ -13235,19 +13200,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13275,12 +13236,20 @@ msgstr "" 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 +13257,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 "" @@ -13300,6 +13273,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13316,7 +13293,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 +13302,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:627 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 +13324,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 "" @@ -13486,7 +13500,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 "" @@ -13778,12 +13792,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 @@ -14056,7 +14072,7 @@ msgstr "" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14160,6 +14176,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 +14197,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" @@ -14340,7 +14356,7 @@ 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/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14436,20 +14452,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 +14492,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 +14506,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,6 +14637,10 @@ 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' @@ -14685,7 +14693,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14734,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 +14743,8 @@ msgstr "" msgid "Load Balancing" msgstr "Balanceamento de carga" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,8 +14761,8 @@ 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 msgid "Loading" @@ -14769,7 +14776,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 +14786,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14847,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14980,7 +14987,7 @@ msgstr "" msgid "Logout" msgstr "Sair" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "" @@ -15160,7 +15167,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:509 msgid "Mandatory Information missing:" msgstr "" @@ -15180,7 +15187,7 @@ msgstr "" 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 +15268,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 +15350,7 @@ msgstr "" msgid "Max auto email report per user" 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 "" @@ -15358,16 +15363,11 @@ msgstr "Máximo" 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 "" @@ -15437,7 +15437,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 "" @@ -15503,7 +15503,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 +15535,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 "" @@ -15692,7 +15684,7 @@ msgstr "Senhorita" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -15959,7 +15951,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 "" @@ -16033,7 +16025,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16074,7 +16066,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:498 #: 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,7 +16104,7 @@ 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/views/file/file_view.js:97 @@ -16128,7 +16120,7 @@ msgstr "" 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 +16132,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 +16171,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16208,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16228,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16286,10 +16278,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 +16286,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 "" @@ -16365,12 +16353,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:190 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 +16367,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 +16385,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 +16443,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:411 msgid "New {0}" msgstr "" @@ -16477,7 +16465,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 +16473,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 +16486,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,12 +16593,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16662,6 +16651,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 +16690,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16706,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16726,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "" @@ -16753,7 +16746,7 @@ 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 "" @@ -16777,7 +16770,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "" @@ -16805,19 +16798,15 @@ 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 "" @@ -16837,6 +16826,10 @@ 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 "" @@ -16909,7 +16902,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:947 msgid "No permission to read {0}" msgstr "" @@ -16937,7 +16930,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16961,7 +16954,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17013,7 +17006,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" @@ -17062,18 +17055,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17083,9 +17075,9 @@ msgstr "" #: 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/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 +17109,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 +17125,11 @@ msgstr "Inativo" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17153,7 @@ 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 "" @@ -17170,18 +17162,18 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17208,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17232,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 +17280,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17339,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,7 +17397,7 @@ 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 "" @@ -17520,11 +17511,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 +17634,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 "" @@ -17728,7 +17719,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 "" @@ -17772,7 +17763,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" @@ -17846,7 +17837,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 +17855,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 +17863,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17878,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 +17893,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 +17912,7 @@ msgstr "Inaugurado" msgid "Operation" msgstr "Operação" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +17938,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 "" @@ -17975,7 +17970,7 @@ msgstr "Opcional: O alerta será enviado se essa expressão é verdadeira" 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 +17979,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 +17987,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 "" @@ -18036,8 +18031,8 @@ msgstr "Cabeçalho da História da Organização" 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 "" @@ -18116,9 +18111,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:1796 msgid "PDF" msgstr "" @@ -18159,11 +18154,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18330,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}" @@ -18379,11 +18374,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 +18387,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 +18461,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18472,7 @@ msgstr "Passivo" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18485,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18502,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 +18514,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18527,7 +18526,7 @@ msgstr "" 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 +18534,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18604,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" @@ -18744,16 +18745,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18841,8 +18842,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +18903,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 +18915,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18934,10 +18935,6 @@ 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 "" @@ -18946,7 +18943,7 @@ msgstr "" 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:1072 msgid "Please check your email for verification" msgstr "" @@ -18978,7 +18975,7 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19008,8 +19005,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19048,7 +19045,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 +19082,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 "" @@ -19101,7 +19099,7 @@ msgstr "" msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19115,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:1711 msgid "Please save the report first" msgstr "" @@ -19153,7 +19151,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 +19163,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,7 +19189,7 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" @@ -19203,7 +19201,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 "" @@ -19239,23 +19237,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 +19274,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 "" @@ -19366,14 +19364,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19379,7 @@ msgstr "" msgid "Precision" msgstr "Precisão" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19445,7 +19435,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 "" @@ -19480,13 +19470,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 +19498,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 @@ -19532,7 +19515,7 @@ msgstr "" 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 +19561,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Impressão" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impressão" @@ -19608,8 +19591,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19716,7 +19699,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19765,11 +19748,11 @@ msgstr "" msgid "Print with letterhead" msgstr "Imprimir com o timbre" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19762,11 @@ msgstr "" msgid "Printer Name" msgstr "Nome da impressora" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19845,7 +19828,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "" @@ -19871,9 +19854,9 @@ 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 "" @@ -19959,24 +19942,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 +19963,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 +20052,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 "" @@ -20097,8 +20067,8 @@ msgid "QR Code for Login Verification" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "" +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 +20117,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 +20217,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20254,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 @@ -20326,7 +20290,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 +20307,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 +20364,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 +20379,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 "" @@ -20482,7 +20441,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 +20452,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 +20492,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 +20509,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" @@ -20804,15 +20776,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Atualizar" @@ -20837,18 +20809,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:534 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:374 #: 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 +20997,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 "" @@ -21228,7 +21200,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "" @@ -21266,7 +21238,7 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "" @@ -21292,20 +21264,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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 "" @@ -21328,7 +21300,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" @@ -21458,11 +21430,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21442,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21481,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21547,6 +21519,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 +21529,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 +21587,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 "" @@ -21671,9 +21639,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 +21680,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 +21694,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 @@ -21775,7 +21743,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21786,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 +21796,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 +21833,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 +21853,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 +21864,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 @@ -21926,12 +21892,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21939,7 +21905,7 @@ msgstr "" msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21967,7 +21933,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,25 +21941,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22089,7 +22055,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 +22133,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 +22161,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22183,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:1735 msgid "Save As" msgstr "" @@ -22234,7 +22196,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "" @@ -22263,7 +22225,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 +22304,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 "" @@ -22510,7 +22472,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 "" @@ -22619,7 +22581,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 +22628,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,12 +22636,12 @@ 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:497 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" @@ -22690,7 +22652,7 @@ msgstr "" 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 "" @@ -22754,12 +22716,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:489 #: 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 "" @@ -22805,8 +22770,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:598 msgid "Select Network Printer" msgstr "" @@ -22874,11 +22839,11 @@ msgstr "" msgid "Select a group node first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +22873,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +22913,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 +23097,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23191,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 "" @@ -23255,7 +23220,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 "" @@ -23360,7 +23325,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:2104 msgid "Set Level" msgstr "" @@ -23414,7 +23379,7 @@ msgstr "" msgid "Set Role For" msgstr "Definir papel para" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23555,14 +23520,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 +23538,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23608,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 +23627,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 +23679,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23807,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:1845 msgid "Show Tags" msgstr "" @@ -23874,7 +23824,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 +23864,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 +23912,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 +23942,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 +23977,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 "" @@ -24091,7 +24037,7 @@ 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:126 msgid "Single DocTypes cannot be customized." msgstr "" @@ -24324,11 +24270,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,13 +24305,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24373,6 +24318,10 @@ msgstr "" 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 +24348,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 "" @@ -24460,7 +24415,7 @@ msgstr "" 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 "" @@ -24516,8 +24471,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 +24480,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 @@ -24598,7 +24553,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 +24609,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 +24634,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 +24642,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 +24680,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:454 msgid "Sticky" msgstr "" @@ -24753,6 +24710,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24847,7 +24808,7 @@ msgstr "Assunto" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24872,7 +24833,7 @@ msgstr "" msgid "Submit" msgstr "Enviar" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Enviar" @@ -24882,7 +24843,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Enviar" @@ -24906,7 +24867,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 +24879,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 +24891,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +24900,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 +24927,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 +24941,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:1171 #: 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 +24983,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 +25034,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 +25090,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 +25156,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25324,6 +25279,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 +25362,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 +25436,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 +25445,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,7 +25467,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "" @@ -25556,11 +25513,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 +25586,7 @@ msgstr "Avisos do modelo" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25658,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 +25682,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:1193 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,7 +25693,7 @@ 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 "" @@ -25737,7 +25701,7 @@ msgstr "" 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 +25742,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 +25750,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25886,11 +25850,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -25927,7 +25891,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 "" @@ -25976,7 +25940,7 @@ msgstr "" 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,6 +25952,10 @@ 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 "" @@ -26020,11 +25988,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 "" @@ -26112,7 +26080,7 @@ 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 "" @@ -26174,7 +26142,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 +26161,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26185,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 +26203,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:423 msgid "This may get printed on multiple pages" msgstr "" @@ -26288,8 +26250,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 +26282,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:1253 msgid "Throttled" msgstr "" @@ -26472,11 +26434,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 "" @@ -26525,9 +26487,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 +26511,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 +26533,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 "" @@ -26726,7 +26682,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 +26698,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26748,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 +26764,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26826,10 @@ msgstr "" msgid "Topic" msgstr "Tópico" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +26872,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 "" @@ -27026,6 +26982,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 +27001,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:2235 msgid "Translate Data" msgstr "" @@ -27051,7 +27012,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 +27096,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 "" @@ -27482,8 +27443,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 +27459,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 "" @@ -27572,7 +27532,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:427 msgid "Update" msgstr "Atualizar" @@ -27648,7 +27608,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 +27616,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 "" @@ -27707,7 +27667,7 @@ 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 @@ -27829,7 +27789,7 @@ msgstr "" 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 +27810,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 +27821,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 +27836,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 +27850,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 +27867,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 +27901,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 +27965,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 +27984,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 +28007,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28025,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 +28093,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 +28127,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 +28148,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28212,7 +28177,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 +28261,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 "" @@ -28368,7 +28333,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28414,7 +28379,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 +28392,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 +28454,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28519,7 +28476,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28523,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 "" @@ -28643,7 +28600,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 "" @@ -28832,7 +28789,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 +28802,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 +28845,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 +29062,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 "" @@ -29206,7 +29154,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 +29180,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 +29192,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,7 +29231,7 @@ 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" @@ -29344,11 +29307,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 "" @@ -29371,7 +29334,7 @@ msgstr "Escrever" 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,7 +29353,7 @@ 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 "" @@ -29448,14 +29411,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29474,7 +29438,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." @@ -29532,11 +29496,11 @@ msgstr "" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29524,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 +29550,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 "" @@ -29629,7 +29597,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 "" @@ -29659,11 +29627,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29649,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29732,7 +29700,7 @@ msgstr "" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,7 +29712,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29756,19 +29724,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29744,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 +29764,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:501 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29781,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:804 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:645 msgid "You must login to submit this form" msgstr "" @@ -29853,13 +29817,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." @@ -29928,10 +29892,22 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -29985,10 +29961,18 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "" @@ -30093,7 +30077,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 +30222,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 +30284,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 +30299,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 "" @@ -30378,11 +30357,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 +30380,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 "" @@ -30594,19 +30568,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:301 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "" @@ -30659,6 +30633,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 +30664,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 +30678,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "" @@ -30733,10 +30711,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30747,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 +30777,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:486 +#: 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 +30813,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 +30843,6 @@ msgstr "" 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 +30867,7 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30960,11 +30946,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 "" @@ -31031,7 +31013,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,7 +31022,7 @@ 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 "" @@ -31048,15 +31030,15 @@ msgstr "" 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 +31047,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 "" @@ -31117,8 +31099,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31108,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:174 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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 "" @@ -31154,19 +31136,23 @@ msgstr "" 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 "" @@ -31174,31 +31160,31 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} é necessário" -#: 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:1835 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,7 +31217,7 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "" @@ -31267,7 +31253,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 +31266,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:1211 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31330,11 +31316,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "" +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "{0} linha #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31340,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 +31357,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 "" @@ -31390,7 +31376,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:254 msgid "{0} updated" msgstr "" @@ -31434,7 +31420,7 @@ msgstr "" 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 "" @@ -31466,75 +31452,75 @@ msgstr "" 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31528,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31536,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 "" @@ -31567,7 +31553,7 @@ msgstr "" 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 +31577,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 +31585,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "" diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po index 1f6526c0ee..ff0489ce3d 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:892 msgid "1 = True & 0 = False" msgstr "" @@ -144,10 +140,6 @@ msgstr "" msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - #: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -245,6 +237,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 "" @@ -479,7 +478,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 +545,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,10 +554,6 @@ 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 "" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -576,7 +571,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 +670,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:452 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 +699,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +723,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:459 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 +770,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 @@ -856,7 +873,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "" @@ -965,7 +982,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:501 #: 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 +993,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1005,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,10 +1038,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1100,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 +1133,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "" @@ -1248,7 +1265,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 "" @@ -1356,7 +1373,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,11 +1400,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1425,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 "" @@ -1564,7 +1581,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 +1641,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 +1662,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 +1710,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 +1942,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 +1950,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 "" @@ -2122,10 +2134,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 +2210,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 +2223,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2271,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 +2304,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,7 +2336,11 @@ 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 "" @@ -2390,7 +2416,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2479,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 +2553,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2636,7 +2673,7 @@ 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 "" @@ -2667,6 +2704,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 +2725,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 +2839,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 +2851,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 +2904,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 +2952,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 +2966,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 +3237,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 +3355,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 +3386,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 +3482,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,7 +3539,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "" @@ -3588,7 +3562,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 +3574,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 +3704,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 +3754,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 @@ -3848,7 +3807,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 "" @@ -3874,12 +3833,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3857,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3956,7 +3918,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 "" @@ -3976,11 +3938,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,7 +3993,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 +4001,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 "" @@ -4068,7 +4030,7 @@ 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 "" @@ -4080,11 +4042,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4104,7 +4066,7 @@ msgstr "" 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 +4074,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 +4091,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:1129 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4247,8 +4209,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 +4280,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 +4313,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 +4321,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,7 +4376,7 @@ 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 "" @@ -4466,7 +4429,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 +4441,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4467,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,7 +4479,11 @@ 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 "" @@ -4568,7 +4535,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4713,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4857,11 +4824,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4930,16 +4897,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 +4904,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 +4913,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 "" @@ -5033,7 +4990,7 @@ msgstr "" 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 "" @@ -5128,6 +5085,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 +5115,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:406 msgid "Configure Columns" msgstr "" @@ -5182,7 +5144,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5163,7 @@ msgstr "Подтвердите доступ" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5190,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 "" @@ -5355,7 +5317,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5363,7 +5324,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5371,24 +5331,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 "" @@ -5464,12 +5412,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5429,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:633 msgid "Correct version :" msgstr "" @@ -5498,10 +5450,10 @@ 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 "" @@ -5638,7 +5590,7 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" @@ -5651,7 +5603,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "" @@ -5663,7 +5615,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,10 +5623,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5643,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:507 msgid "Create your first {0}" msgstr "" @@ -5717,7 +5669,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 +5681,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 "" @@ -6066,14 +6018,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6217,7 +6169,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 "" @@ -6325,7 +6277,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "" @@ -6356,7 +6308,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6446,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6612,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 "" @@ -6715,10 +6667,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6726,11 +6678,16 @@ msgstr "" msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6771,7 +6728,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 +6761,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6849,6 +6806,10 @@ msgstr "" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Удалено!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "" @@ -6864,8 +6825,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 +6842,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6869,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 +6904,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 +6924,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 +6933,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 +7016,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 +7077,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 +7094,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 +7103,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 +7153,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 +7167,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 +7177,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 +7195,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 +7218,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,16 +7254,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "" @@ -7410,7 +7357,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 +7404,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 +7417,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 +7450,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 +7464,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,19 +7526,19 @@ 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 "" @@ -7788,7 +7735,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:1955 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7743,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7893,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "" @@ -8174,17 +8121,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:1776 #: 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:350 #: 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 +8139,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8149,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8178,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8334,7 +8281,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 +8290,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 "" @@ -8390,6 +8337,7 @@ 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' @@ -8403,6 +8351,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 @@ -8443,7 +8392,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 "" @@ -8574,9 +8523,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 +8591,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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 "" @@ -8712,7 +8661,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 +8687,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 +8780,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 +8787,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 +8799,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 +8821,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 +8834,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 +8860,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 +8880,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 +8896,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 +8912,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 +8960,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 +9030,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 +9050,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 "" @@ -9156,9 +9098,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "" @@ -9178,7 +9120,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9331,7 +9273,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 +9281,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,7 +9307,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" @@ -9398,7 +9340,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 +9370,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9413,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9422,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 "" @@ -9595,7 +9539,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 +9556,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 "" @@ -9625,7 +9569,7 @@ msgstr "" 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 "" @@ -9637,8 +9581,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 +9598,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 +9618,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 +9672,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 +9729,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:1870 #: 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 +9752,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9870,11 +9808,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,16 +9830,16 @@ 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:454 #: 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 "" @@ -9925,11 +9863,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9890,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 @@ -10001,7 +9939,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10105,7 +10043,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10164,7 +10102,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 +10116,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 +10140,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,7 +10157,7 @@ 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 "" @@ -10230,18 +10174,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 "" @@ -10329,11 +10273,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 "" @@ -10495,7 +10439,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 +10497,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:2120 +#: 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 +10524,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 +10538,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10593,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 +10653,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 +10685,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 +10782,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:1831 msgid "From Document Type" msgstr "" @@ -10858,18 +10809,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 "" @@ -10968,6 +10917,12 @@ 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 msgid "Generate Tracking URL" @@ -10992,7 +10947,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "" @@ -11298,11 +11253,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" @@ -11436,7 +11386,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 @@ -11449,7 +11398,6 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11611,6 +11559,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 @@ -11745,11 +11699,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 +11778,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "" @@ -11843,7 +11792,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 +11841,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 +11930,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,7 +12035,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12219,6 +12165,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 +12200,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 +12261,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:1120 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12327,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,11 +12353,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12433,7 +12387,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12728,7 +12682,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12752,7 +12706,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 +12781,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:1876 msgid "Insert After" msgstr "" @@ -12843,7 +12797,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 +12815,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12837,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 "" @@ -12908,7 +12866,7 @@ msgstr "" 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 +12970,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:849 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13038,7 +12996,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,7 +13016,11 @@ 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 "" @@ -13099,7 +13061,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 +13070,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 "" @@ -13125,11 +13087,11 @@ msgstr "" 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:1239 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" @@ -13148,7 +13110,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 "" @@ -13171,7 +13133,7 @@ msgstr "" msgid "Invalid Values" msgstr "Недопустимые значения" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" @@ -13183,6 +13145,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13199,7 +13165,7 @@ msgstr "" 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 "" @@ -13235,19 +13201,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13275,12 +13237,20 @@ msgstr "" 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 +13258,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 "" @@ -13300,6 +13274,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13316,7 +13294,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 +13303,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:627 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 +13325,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 "" @@ -13486,7 +13501,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 "" @@ -13778,12 +13793,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 @@ -14056,7 +14073,7 @@ msgstr "" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14160,6 +14177,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 +14198,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" @@ -14340,7 +14357,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14436,20 +14453,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 +14493,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 +14507,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,6 +14638,10 @@ 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' @@ -14685,7 +14694,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14735,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 +14744,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,8 +14762,8 @@ 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 msgid "Loading" @@ -14769,7 +14777,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 +14787,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14848,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14980,7 +14988,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "" @@ -15160,7 +15168,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:509 msgid "Mandatory Information missing:" msgstr "" @@ -15180,7 +15188,7 @@ msgstr "" 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 +15269,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 +15351,7 @@ msgstr "Максимальный размер крепления" msgid "Max auto email report per user" 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 "" @@ -15358,16 +15364,11 @@ msgstr "" 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 "" @@ -15437,7 +15438,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 "" @@ -15503,7 +15504,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 +15536,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 "" @@ -15692,7 +15685,7 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -15959,7 +15952,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 "" @@ -16033,7 +16026,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16074,7 +16067,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:498 #: 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,7 +16105,7 @@ 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/views/file/file_view.js:97 @@ -16128,7 +16121,7 @@ msgstr "" 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 +16133,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 +16172,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16209,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16229,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16286,10 +16279,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 +16287,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 "" @@ -16365,12 +16354,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:190 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 +16368,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 +16386,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 +16444,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:411 msgid "New {0}" msgstr "" @@ -16477,7 +16466,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 +16474,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 +16487,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,12 +16594,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16662,6 +16652,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 +16691,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16707,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16727,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "" @@ -16753,7 +16747,7 @@ 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 "" @@ -16777,7 +16771,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "" @@ -16805,19 +16799,15 @@ 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 "" @@ -16837,6 +16827,10 @@ 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 "" @@ -16909,7 +16903,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:947 msgid "No permission to read {0}" msgstr "" @@ -16937,7 +16931,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16961,7 +16955,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17013,7 +17007,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 "" @@ -17062,18 +17056,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17083,9 +17076,9 @@ msgstr "" #: 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/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 +17110,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 +17126,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17154,7 @@ 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 "" @@ -17170,18 +17163,18 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17209,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17233,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 +17281,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17340,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,7 +17398,7 @@ 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 "" @@ -17520,11 +17512,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 +17635,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 "" @@ -17728,7 +17720,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 "" @@ -17772,7 +17764,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" @@ -17846,7 +17838,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 +17856,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 +17864,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17879,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 +17894,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 +17913,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +17939,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 "" @@ -17975,7 +17971,7 @@ msgstr "" 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 +17980,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 +17988,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 "" @@ -18036,8 +18032,8 @@ msgstr "" 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 "" @@ -18116,9 +18112,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:1796 msgid "PDF" msgstr "" @@ -18159,11 +18155,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18331,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 "" @@ -18379,11 +18375,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 +18388,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 +18462,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18473,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18486,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18503,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 +18515,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18527,7 +18527,7 @@ msgstr "" 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 +18535,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18605,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 "" @@ -18744,16 +18746,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18841,8 +18843,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +18904,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 +18916,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18934,10 +18936,6 @@ 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 "" @@ -18946,7 +18944,7 @@ msgstr "" 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:1072 msgid "Please check your email for verification" msgstr "" @@ -18978,7 +18976,7 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19008,8 +19006,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19048,7 +19046,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 +19083,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 "" @@ -19101,7 +19100,7 @@ msgstr "" msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19116,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:1711 msgid "Please save the report first" msgstr "" @@ -19153,7 +19152,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 +19164,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,7 +19190,7 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" @@ -19203,7 +19202,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 "" @@ -19239,23 +19238,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 +19275,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 "" @@ -19366,14 +19365,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19380,7 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19445,7 +19436,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 "" @@ -19480,13 +19471,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 +19499,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 @@ -19532,7 +19516,7 @@ msgstr "" 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 +19562,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19592,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19716,7 +19700,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19765,11 +19749,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19763,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19845,7 +19829,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "" @@ -19871,9 +19855,9 @@ 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,24 +19943,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 +19964,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 +20053,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 "" @@ -20097,8 +20068,8 @@ msgid "QR Code for Login Verification" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "" +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 +20118,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 +20218,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20255,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 @@ -20326,7 +20291,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 +20308,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 +20365,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 +20380,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 "" @@ -20482,7 +20442,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 +20453,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 +20493,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 +20510,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" @@ -20804,15 +20777,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20837,18 +20810,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:534 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:374 #: 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 +20998,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 "" @@ -21228,7 +21201,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "" @@ -21266,7 +21239,7 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "" @@ -21292,20 +21265,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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 "" @@ -21328,7 +21301,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 "" @@ -21458,11 +21431,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21443,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21482,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21547,6 +21520,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 +21530,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 +21588,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 "" @@ -21671,9 +21640,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 +21681,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 +21695,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 @@ -21775,7 +21744,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21787,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 +21797,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 +21834,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 +21854,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 +21865,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 @@ -21926,12 +21893,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21939,7 +21906,7 @@ msgstr "" msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21967,7 +21934,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,25 +21942,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22089,7 +22056,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 +22134,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 +22162,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22184,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:1735 msgid "Save As" msgstr "" @@ -22234,7 +22197,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "" @@ -22263,7 +22226,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 +22305,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 "" @@ -22510,7 +22473,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 "" @@ -22619,7 +22582,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 +22629,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,12 +22637,12 @@ 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:497 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" @@ -22690,7 +22653,7 @@ msgstr "" 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 "" @@ -22754,12 +22717,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:489 #: 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 "" @@ -22805,8 +22771,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:598 msgid "Select Network Printer" msgstr "" @@ -22874,11 +22840,11 @@ msgstr "" msgid "Select a group node first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +22874,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +22914,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 +23098,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23192,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 "" @@ -23255,7 +23221,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 "" @@ -23360,7 +23326,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:2104 msgid "Set Level" msgstr "" @@ -23414,7 +23380,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23555,14 +23521,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 +23539,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23609,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 +23628,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 +23680,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23808,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:1845 msgid "Show Tags" msgstr "" @@ -23874,7 +23825,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 +23865,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 +23913,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 +23943,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 +23978,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 "" @@ -24091,7 +24038,7 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "" @@ -24324,11 +24271,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,13 +24306,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24373,6 +24319,10 @@ msgstr "" 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 +24349,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 "" @@ -24460,7 +24416,7 @@ msgstr "" 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 "" @@ -24516,8 +24472,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 +24481,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 @@ -24598,7 +24554,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 +24610,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 +24635,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 +24643,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 +24681,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:454 msgid "Sticky" msgstr "" @@ -24753,6 +24711,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24847,7 +24809,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24872,7 +24834,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,7 +24844,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,7 +24868,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 +24880,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 +24892,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +24901,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 +24928,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 +24942,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:1171 #: 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 +24984,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 +25035,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 +25157,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25324,6 +25280,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 +25363,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 +25437,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 +25446,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,7 +25468,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "" @@ -25556,11 +25514,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 +25587,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25659,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 +25683,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:1193 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,7 +25694,7 @@ 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 "" @@ -25737,7 +25702,7 @@ msgstr "" 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 +25743,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 +25751,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25886,11 +25851,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -25927,7 +25892,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 "" @@ -25976,7 +25941,7 @@ msgstr "" 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,6 +25953,10 @@ 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 "" @@ -26020,11 +25989,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 "" @@ -26112,7 +26081,7 @@ 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 "" @@ -26174,7 +26143,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 +26162,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26186,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 +26204,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:423 msgid "This may get printed on multiple pages" msgstr "" @@ -26288,7 +26251,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 +26283,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:1253 msgid "Throttled" msgstr "" @@ -26472,11 +26435,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 "" @@ -26525,9 +26488,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 +26512,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 +26534,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 "" @@ -26726,7 +26683,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 +26699,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26749,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 +26765,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26827,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +26873,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 "" @@ -27026,6 +26983,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 +27002,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "Перевести данные" @@ -27051,7 +27013,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 +27097,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 "" @@ -27482,8 +27444,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 +27460,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27572,7 +27533,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:427 msgid "Update" msgstr "" @@ -27648,7 +27609,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 +27617,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 "" @@ -27829,7 +27790,7 @@ msgstr "" 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 +27811,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 +27822,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 +27837,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 +27851,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 +27868,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 +27902,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 +27966,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 +27985,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 +28008,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28026,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 +28094,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 +28128,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 +28149,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28212,7 +28178,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 +28262,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 "" @@ -28368,7 +28334,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28414,7 +28380,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 +28393,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 +28455,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28519,7 +28477,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28524,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 "" @@ -28643,7 +28601,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 "" @@ -28832,7 +28790,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 +28803,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 +28846,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 +29063,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 "" @@ -29206,7 +29155,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 +29181,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 +29193,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,7 +29232,7 @@ 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" @@ -29344,11 +29308,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 "" @@ -29371,7 +29335,7 @@ msgstr "" 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,7 +29354,7 @@ 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 "" @@ -29448,14 +29412,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29532,11 +29497,11 @@ msgstr "" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29525,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 +29551,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 "" @@ -29629,7 +29598,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." @@ -29659,11 +29628,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29650,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29732,7 +29701,7 @@ msgstr "" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,7 +29713,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29756,19 +29725,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29745,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 +29765,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:501 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29782,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:804 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:645 msgid "You must login to submit this form" msgstr "" @@ -29853,13 +29818,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." @@ -29928,10 +29893,22 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -29985,10 +29962,18 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "" @@ -30035,7 +30020,7 @@ msgstr "" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 msgid "[Action taken by {0}]" -msgstr "" +msgstr "[Действие выполнил {0}]" #. Label of the _doctype (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -30093,7 +30078,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 +30223,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 +30285,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 +30300,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 "" @@ -30378,11 +30358,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 +30381,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 "" @@ -30594,19 +30569,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "" @@ -30659,6 +30634,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 +30665,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 +30679,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "" @@ -30733,10 +30712,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30748,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 +30778,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:486 +#: 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 +30814,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 +30844,6 @@ msgstr "" 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 +30868,7 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30960,11 +30947,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 "" @@ -31031,7 +31014,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,7 +31023,7 @@ 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 "" @@ -31048,15 +31031,15 @@ msgstr "" 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 +31048,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 "" @@ -31117,8 +31100,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31109,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:174 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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 "" @@ -31154,19 +31137,23 @@ msgstr "" 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 "" @@ -31174,31 +31161,31 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" -#: 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:1835 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,7 +31218,7 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "" @@ -31267,7 +31254,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 +31267,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:1211 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31330,11 +31317,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "" +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "{0} ряд #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31341,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 +31358,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 "" @@ -31390,7 +31377,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:254 msgid "{0} updated" msgstr "" @@ -31434,7 +31421,7 @@ msgstr "" 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 "" @@ -31466,75 +31453,75 @@ msgstr "{0}/{1} complete | Пожалуйста, оставьте эту вкл 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31529,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31537,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 "" @@ -31567,7 +31554,7 @@ msgstr "" 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 +31578,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 +31586,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "" diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po index ac1562971f..5c284d44d3 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:29\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = тачно и 0 = нетачно" @@ -145,10 +141,6 @@ msgstr "1 догађај из Google Calendar-а је синхронизован 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 msgid "1 day ago" msgstr "пре 1 дан" @@ -246,6 +238,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" @@ -641,7 +640,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 +730,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,10 +739,6 @@ 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 "Истакнути пост мора имати насловну слику" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Поље са називом {0} већ постоји у {1}" @@ -761,7 +756,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 +856,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:452 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 +885,10 @@ msgstr "API кључ и тајна за интеракцију са релаy с msgid "API Key cannot be regenerated" msgstr "API кључ се не може поново генерисати" +#: frappe/core/doctype/user/user.js:449 +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 +909,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:459 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 +956,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 @@ -1042,7 +1059,7 @@ msgstr "Радња / Путања" msgid "Action Complete" msgstr "Радња завршена" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "Радња неуспешна" @@ -1151,7 +1168,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:501 #: 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 +1179,7 @@ msgstr "Дневник активности" msgid "Add" msgstr "Додај" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "Додај / Уклони колоне" @@ -1174,7 +1191,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 "Додај прилог" @@ -1207,10 +1224,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1286,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 +1319,12 @@ msgstr "Додај претплатнике" msgid "Add Tags" msgstr "Додај ознаке" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "Додај шаблон" @@ -1434,7 +1451,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}" @@ -1542,7 +1559,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 "Администрација" @@ -1569,11 +1586,11 @@ msgstr "Администрација" msgid "Administrator" msgstr "Администратор" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "Администратор пријављен" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Администратор је приступио {0} дана {1} путем IP адресе {2}." @@ -1594,8 +1611,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 "Напредна претрага" @@ -1750,7 +1767,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 +1827,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 +1848,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 +1896,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 +2063,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 +2129,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 +2137,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}" @@ -2309,10 +2321,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 +2397,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 +2410,7 @@ msgstr "Примењено на" msgid "Apply" msgstr "Примени" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Примени правило доделе" @@ -2440,7 +2458,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 +2491,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "Да ли сте сигурни да желите да очистите додељене задатке?" @@ -2501,7 +2523,11 @@ 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 "Да ли сте сигурни да желите да одбаците промене?" @@ -2531,7 +2557,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?" @@ -2577,7 +2603,7 @@ msgstr "Додели услов" msgid "Assign To" msgstr "Додели" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Додели" @@ -2640,6 +2666,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 +2740,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:696 msgid "At least one column is required to show in the grid." msgstr "Барем једна колона је обавезна за приказ у табели." @@ -2759,7 +2796,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" @@ -2823,7 +2860,7 @@ 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 "Прилози" @@ -2852,7 +2889,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 +2912,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 +2978,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 +3026,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 +3038,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 +3091,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 +3139,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 +3153,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 +3424,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 +3542,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 +3573,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 +3670,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,13 +3727,13 @@ msgstr "Масовно брисање" msgid "Bulk Edit" msgstr "Масовно уређивање" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "Масовно уређивање {0}" #: frappe/desk/reportview.py:602 msgid "Bulk Operation Failed" -msgstr "Масовна операције није успела" +msgstr "Масовна операција није успела" #: frappe/desk/reportview.py:606 msgid "Bulk Operation Successful" @@ -3776,7 +3750,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 +3762,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 +3892,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 +3942,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 @@ -4036,7 +3995,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 +4007,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." @@ -4062,12 +4021,13 @@ msgstr "Не може се преименовати из {0} у {1} јер {0} #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Откажи" @@ -4085,16 +4045,18 @@ msgstr "Откажи све" msgid "Cancel All Documents" msgstr "Откажи све документе" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -4144,7 +4106,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}" @@ -4164,11 +4126,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 "Није могуће променити са/на аутоматско повећање аутоматског назива у пољу прилагоди образац" @@ -4219,7 +4181,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 +4189,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 "Није могуће уредити стандардна обавештења. Да бисте их уредили, прво их онемогућите и направите дупликат" @@ -4256,7 +4218,7 @@ 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пе који се не може поднети" @@ -4268,11 +4230,11 @@ msgstr "Није могуће пронаћи фајл {} на диску" msgid "Cannot get file contents of a Folder" msgstr "Није могуће преузети садржај фајла из датотеке" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "Није могуће увозити табелу са више од 5000 редова." @@ -4292,7 +4254,7 @@ msgstr "Није могуће упарити колону {0} ни са једн 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 +4262,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 +4279,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:1129 +msgid "Cannot use sub-query here." +msgstr "Није могуће користити подупит овде." -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "Није могуће користити {0} у команди сортирај/групиши по" @@ -4435,9 +4397,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 +4468,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 +4501,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 +4509,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}" @@ -4602,7 +4564,7 @@ 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}" @@ -4655,7 +4617,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 +4629,7 @@ msgstr "Очисти и додај шаблон" msgid "Clear All" msgstr "Очисти све" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Очисти додељене задатке" @@ -4693,7 +4655,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,7 +4667,11 @@ 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 "Кликните овде" @@ -4757,7 +4723,7 @@ msgstr "Кликните да поставите динамичке филтер msgid "Click to Set Filters" msgstr "Кликните да поставите филтере" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "Кликните да сортирате по {0}" @@ -4935,7 +4901,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Сажми све" @@ -4947,7 +4913,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 +4921,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' @@ -5046,11 +5012,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:454 msgid "Column Width" msgstr "Ширина колоне" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "Ширина колоне не може бити нула." @@ -5119,16 +5085,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 +5092,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 +5101,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 "Коментари не могу садржати линкове или имејл адресе" @@ -5222,7 +5178,7 @@ msgstr "Назив компаније" 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 "Упозорење приликом компилације" @@ -5317,6 +5273,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 +5303,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:406 msgid "Configure Columns" msgstr "Конфигуришите колоне" @@ -5373,7 +5334,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Потврди" @@ -5392,7 +5353,7 @@ msgstr "Потврди приступ" msgid "Confirm Deletion of Account" msgstr "Потврди уклањање налога" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "Потврди нову лозинку" @@ -5419,7 +5380,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 "Повежи се са {}" @@ -5546,7 +5507,6 @@ msgstr "Садржи {0} исправки безбедности" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5554,7 +5514,6 @@ msgstr "Садржи {0} исправки безбедности" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5562,24 +5521,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,7 +5592,7 @@ 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 msgid "Copy error to clipboard" @@ -5655,12 +5602,16 @@ msgstr "Копирај грешку у међуспремник" msgid "Copy to Clipboard" msgstr "Копирај у међуспремник" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "Основни DocType-ови не могу бити прилагођени." @@ -5668,7 +5619,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:633 msgid "Correct version :" msgstr "Исправна верзија :" @@ -5689,10 +5640,10 @@ 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 "Није било могуће сачувати, проверите унесене податке" @@ -5829,7 +5780,7 @@ msgstr "Креирај евиденцију" msgid "Create New" msgstr "Креирај нови" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Креирај нови" @@ -5842,7 +5793,7 @@ msgstr "Креирај нови DocType" msgid "Create New Kanban Board" msgstr "Креирај нову Канбан таблу" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "Креирај кориснички имејл" @@ -5854,7 +5805,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,10 +5813,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "Креирај нови {0}" @@ -5882,7 +5833,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:507 msgid "Create your first {0}" msgstr "Креирај свој први {0}" @@ -5908,7 +5859,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 +5871,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}" @@ -6257,14 +6208,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "Прилагоди" @@ -6408,7 +6359,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 "Контролна табла" @@ -6516,7 +6467,7 @@ msgstr "Евиденција увоза података" msgid "Data Import Template" msgstr "Шаблон за увоз податка" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "Подаци су преобимни" @@ -6547,7 +6498,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:249 msgid "Database Table Row Size Limit" msgstr "Ограничење величине реда табеле базе података" @@ -6685,11 +6636,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "Децимални сепаратор мора бити један знак" @@ -6851,11 +6802,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} мора бити у листи опција." @@ -6906,10 +6857,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6917,11 +6868,16 @@ msgstr "Кашњење" msgid "Delete" msgstr "Обриши" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "Обриши налог" @@ -6962,7 +6918,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 +6951,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Трајно обриши {0} ставке?" @@ -7040,6 +6996,10 @@ msgstr "Обрисани назив" msgid "Deleted all documents successfully" msgstr "Сви документи су успешно обрисани" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Обрисано!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "Брисање {0}" @@ -7055,8 +7015,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 +7032,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:301 msgid "Delimiter must be a single character" msgstr "Разделник мора бити један карактер" @@ -7099,7 +7059,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 +7094,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 +7114,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 +7123,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 +7206,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 +7267,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 +7284,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 +7293,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 +7343,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 +7357,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 +7367,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 +7385,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 +7408,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,16 +7444,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "Немој уређивати заглавља која су унапред постављена у шаблону" @@ -7604,7 +7550,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 +7597,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 +7610,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 +7643,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 +7657,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,19 +7719,19 @@ 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}: Назив поља табеле је обавезно за интерне линкове" @@ -7982,7 +7928,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:1955 msgid "Document Unlocked" msgstr "Документ је откључан" @@ -7990,15 +7936,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:1300 msgid "Document has been cancelled" msgstr "Документ је отказан" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "Документ је поднет" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "Документ у стању нацрта" @@ -8140,13 +8086,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "Преузми" @@ -8368,17 +8314,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:1776 #: 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:350 #: 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 +8332,7 @@ msgstr "ИЗЛАЗ" msgid "Edit" msgstr "Уреди" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Уреди" @@ -8396,7 +8342,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "Уреди" @@ -8425,7 +8371,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Уреди DocType" @@ -8528,7 +8474,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 +8483,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}" @@ -8584,6 +8530,7 @@ 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' @@ -8597,6 +8544,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 @@ -8637,7 +8585,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 "Имејл налог је додат више пута" @@ -8756,7 +8704,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 +8716,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 +8784,11 @@ msgstr "Имејл је означен као спам" msgid "Email has been moved to trash" msgstr "Имејл је премештен у отпад" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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} (отказана претплата / онемогућено)" @@ -8906,7 +8854,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 +8880,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 +8973,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 +8980,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 +8992,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 +9015,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 +9028,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 +9054,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 +9074,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 +9090,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 +9106,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 +9154,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 +9224,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 +9244,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 "Грешка" @@ -9351,9 +9292,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "Грешка у обавештењу" @@ -9373,7 +9314,7 @@ msgstr "Грешка приликом обраде угњеждених филт msgid "Error while connecting to email account {0}" msgstr "Грешка при повезивању са имејл налогом {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Грешка при обради обавештења {0}. Молимо Вас да исправите Ваш шаблон." @@ -9526,7 +9467,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 +9475,7 @@ msgstr "Извршавање кода" msgid "Executing..." msgstr "Извршавање..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "Време извршавања: {0} секунди" @@ -9560,7 +9501,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Прошири све" @@ -9593,7 +9534,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 +9564,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Извоз" @@ -9664,7 +9607,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Извоз извештаја: {0}" @@ -9673,11 +9616,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} редова?" @@ -9772,7 +9715,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 +9733,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 +9750,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 "Неуспешно израчунавање тела захтева: {}" @@ -9820,7 +9763,7 @@ msgstr "Неуспешно повезивање са сервером" 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}" @@ -9832,8 +9775,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 +9792,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 +9812,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 +9866,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 +9923,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:1870 #: 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 +9946,7 @@ msgstr "Поље \"вредност\" је обавезно. Молимо Вас msgid "Field Description" msgstr "Опис поља" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "Поље недостаје" @@ -10065,11 +10002,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Поље {0} у документу {1} није ни поље за мобилни број, ни линк за купца или корисника" @@ -10087,16 +10024,16 @@ 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:454 #: 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} мора постојати да би се омогућило аутоматско именовање" @@ -10120,11 +10057,11 @@ msgstr "Назив поља {0} се појављује више пута" 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:1908 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 +10084,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 @@ -10196,7 +10133,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Врста поља не може бити промењена са {0} на {1} у реду {2}" @@ -10264,7 +10201,7 @@ msgstr "Резервна копија фајла је спремна" #: frappe/core/doctype/file/file.py:624 msgid "File name cannot have {0}" -msgstr "Назив фајле не може садржати {0}" +msgstr "Назив фајла не може садржати {0}" #: frappe/utils/csvutils.py:28 msgid "File not attached" @@ -10273,7 +10210,7 @@ msgstr "Фајл није приложен" #: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" -msgstr "Величина фајла је премашила маскималну дозвољену величину од {0} MB" +msgstr "Величина фајла је премашила максималну дозвољену величину од {0} MB" #: frappe/public/js/frappe/request.js:198 msgid "File too big" @@ -10300,7 +10237,7 @@ msgstr "Фајлови" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10359,7 +10296,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 +10310,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 +10334,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,7 +10351,7 @@ 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}" @@ -10425,18 +10368,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}" @@ -10524,11 +10467,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 "Склапање мора бити пре прелома одељка" @@ -10651,11 +10594,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 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 +10633,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 +10674,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 +10692,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:2120 +#: 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 +10719,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 +10733,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "За {0} на нивоу {1} у {2} у реду {3}" @@ -10851,7 +10788,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 +10848,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 +10880,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 +10977,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:1831 msgid "From Document Type" msgstr "Од врсте документа" @@ -11054,18 +11004,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 "Цела страница" @@ -11164,6 +11112,12 @@ 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 msgid "Generate Tracking URL" @@ -11188,7 +11142,7 @@ msgstr "Геолокација" msgid "Geolocation Settings" msgstr "Подешавање геолокације" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "Прикажи данашња обавештења" @@ -11378,7 +11332,7 @@ msgstr "Google Calendar - Контакт / имејл није пронађен. #: 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 +11448,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" @@ -11632,7 +11581,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 @@ -11645,7 +11593,6 @@ msgstr "HH:mm:ss" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11807,6 +11754,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 @@ -11941,11 +11894,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 +11943,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 +11973,7 @@ msgstr "Сакриј бочну траку, мени и коментаре" msgid "Hide Standard Menu" msgstr "Сакриј стандардни мени" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "Сакриј ознаке" @@ -12039,7 +11987,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 +12036,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 +12125,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ИД" @@ -12285,7 +12230,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12415,6 +12360,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 +12395,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 +12456,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:1120 msgid "Illegal SQL Query" msgstr "Неважећи SQL упит" @@ -12569,11 +12522,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,11 +12548,11 @@ 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:384 msgid "Impersonate" msgstr "Замени идентитет" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "Замени идентитет као {0}" @@ -12629,7 +12582,7 @@ msgstr "Имплицитно" msgid "Import" msgstr "Увоз" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "Увоз" @@ -12924,7 +12877,7 @@ msgstr "Неисправна конфигурација" msgid "Incorrect URL" msgstr "Неисправан URL" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "Погрешно корисничко име или лозинка" @@ -12948,7 +12901,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 +12976,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:1876 msgid "Insert After" msgstr "Унеси након" @@ -13039,7 +12992,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 +13010,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "Инсталирај {0} из продавнице" @@ -13075,7 +13032,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 +13047,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 msgid "Insufficient Permission for {0}" -msgstr "Недовољна овлашћена за {0}" +msgstr "Недовољна овлашћења за {0}" #: frappe/desk/reportview.py:360 msgid "Insufficient Permissions for deleting Report" -msgstr "Недовољна овлашћена за брисање извештаја" +msgstr "Недовољна овлашћења за брисање извештаја" #: frappe/desk/reportview.py:331 msgid "Insufficient Permissions for editing Report" -msgstr "Недовољна овлашћена за уређивање извештаја" +msgstr "Недовољна овлашћења за уређивање извештаја" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "Премашен дозвољени број прилога" @@ -13208,9 +13165,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:849 +#: 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\" израз" @@ -13220,7 +13177,7 @@ msgstr "Неважећи \"depends_on\" израз постављен у фил #: frappe/public/js/frappe/form/save.js:159 msgid "Invalid \"mandatory_depends_on\" expression" -msgstr "Неважечи \"mandatory_depends_on\" израз" +msgstr "Неважећи \"mandatory_depends_on\" израз" #: frappe/utils/nestedset.py:178 msgid "Invalid Action" @@ -13234,7 +13191,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,7 +13211,11 @@ 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 "Неважећи назив поља" @@ -13295,7 +13256,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 +13265,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 "Неважећа опција" @@ -13321,11 +13282,11 @@ msgstr "Неважећи излазни формат" 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:1239 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" @@ -13344,7 +13305,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 "Неважећи назив поља табеле" @@ -13367,7 +13328,7 @@ 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" @@ -13379,6 +13340,10 @@ msgstr "Неважећа агрегатна функција" msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Неважећи формат псеудонима: {0}. Псеудоним мора бити једноставан идентификатор." +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Неважећа апликација" + #: frappe/database/query.py:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Неважећи формат аргумента: {0}. Дозвољени су само наводницима обухваћени текстови или једноставни називи поља." @@ -13395,7 +13360,7 @@ msgstr "Неважећи карактери у називу поља: {0}. До 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 "Неважећа колона" @@ -13431,19 +13396,15 @@ msgstr "Неважећи формат поља у {0}: {1}. Користите ' msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "Неважећи назив поља у функцији: {0}. Дозвољени су само једноставни називи поља." -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "Неважећи назив поља {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "Неважећи назив поља: {0}" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "Неважећа врста поља: {0}" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Неважећи назив поља '{0}' у аутоматском именовању" @@ -13471,12 +13432,20 @@ msgstr "Неважећа врста аргумента функције: {0}. Д 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 +13453,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 "Неважећи или оштећен садржај за увоз" @@ -13496,6 +13469,10 @@ msgstr "Неважеће преусмерење регеx функције у р msgid "Invalid request arguments" msgstr "Неважећи аргументи захтева" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "Неважећа улога" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "Неважећи једноставни формат филтера: {0}" @@ -13512,7 +13489,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 +13498,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:627 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 +13520,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 "Јесте" @@ -13682,7 +13696,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 "Објављено поље мора бити важећи назив поља" @@ -13807,7 +13821,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 @@ -13974,12 +13988,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 @@ -14252,7 +14268,7 @@ msgstr "Пејзажни" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Језик" @@ -14356,6 +14372,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 +14393,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 +14479,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" @@ -14536,7 +14552,7 @@ msgstr "Писмо" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14632,20 +14648,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 +14688,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 +14702,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,6 +14833,10 @@ 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' @@ -14881,7 +14889,7 @@ msgstr "Филтер листе" msgid "List Settings" msgstr "Подешавање листе" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Подешавање листе" @@ -14922,7 +14930,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 +14939,8 @@ msgstr "Листе" msgid "Load Balancing" msgstr "Балансирање оптерећења" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Учитај више" @@ -14950,8 +14957,8 @@ 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 msgid "Loading" @@ -14963,9 +14970,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 +14982,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Учитавање..." @@ -15036,7 +15043,7 @@ msgstr "Пријавите се да бисте приступили овој с msgid "Log out" msgstr "Ођавите се" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Ођављени сте" @@ -15159,7 +15166,7 @@ msgstr "Истицање линка за пријављивање (у минут #: frappe/auth.py:144 msgid "Login with username and password is not allowed." -msgstr "Пријављивање путем корисничком имена и лозинке није дозвољена." +msgstr "Пријављивање путем корисничког имена и лозинке није дозвољено." #: frappe/www/login.html:100 msgid "Login with {0}" @@ -15176,7 +15183,7 @@ msgstr "Лого URI" msgid "Logout" msgstr "Одјава" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "Одјава из свих сесија" @@ -15356,7 +15363,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:509 msgid "Mandatory Information missing:" msgstr "Недостају обавезни подаци:" @@ -15376,7 +15383,7 @@ msgstr "Обавезна поља су неопходна у табели {0}, 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 +15464,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 +15546,7 @@ msgstr "Максимална величина прилога" msgid "Max auto email report per user" 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 "Максимална ширина за врсту валуте је 100 пиксела у реду {0}" @@ -15554,16 +15559,11 @@ msgstr "Максимално" 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} редова" @@ -15633,7 +15633,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 "Спајање је могуће само између групе и групе или чвора и чвора" @@ -15699,7 +15699,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 +15731,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 "Мета наслов" @@ -15888,7 +15880,7 @@ msgstr "Пропуштено" msgid "Missing DocType" msgstr "Недостајући DocType" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "Недостајуће поље" @@ -16155,7 +16147,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 "Вероватно је Ваша лозинка предугачка." @@ -16229,7 +16221,7 @@ msgstr "Госпођа" msgid "Ms" msgstr "Госпођица" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "Више коренских чворова није дозвољено." @@ -16270,7 +16262,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:498 #: 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 +16270,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,7 +16300,7 @@ 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/views/file/file_view.js:97 @@ -16324,7 +16316,7 @@ msgstr "Назив (Документа)" 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 +16328,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 +16369,7 @@ msgstr "Правило именовања" msgid "Naming Series" msgstr "Серија именовања" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "Серија именовања је обавезна" @@ -16414,12 +16406,12 @@ msgstr "Шаблон навигационе траке" msgid "Navbar Template Values" msgstr "Вредности шаблона навигационе траке" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Помери листу према горе" @@ -16434,7 +16426,7 @@ msgstr "Иди на главни садржај" msgid "Navigation Settings" 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 "Неопходна је улога менаџера радног простора да бисте уређивали приватни радни простор других корисника" @@ -16484,10 +16476,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 +16484,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 "Нови прилагођени формат штампе" @@ -16563,12 +16551,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:190 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 +16565,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 +16583,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 +16643,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:411 msgid "New {0}" msgstr "Нови {0}" @@ -16677,7 +16665,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 +16673,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 +16686,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,12 +16793,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16862,6 +16851,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 +16890,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16906,7 @@ msgstr "Није наведен назив за {0}" msgid "No New notifications" msgstr "Нема нових обавештења" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "Дозволе нису наведене" @@ -16933,17 +16926,17 @@ msgstr "Нема дозвољених графикона на контролно msgid "No Preview" msgstr "Нема прегледа" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "Преглед није доступан" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 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,7 +16946,7 @@ 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 "Улоге нису наведене" @@ -16977,7 +16970,7 @@ msgstr "Нема предстојећих догађаја" msgid "No address added yet." msgstr "Ниједна адреса још увек није додата." -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "Нема упозорења за данас" @@ -17005,19 +16998,15 @@ 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 "Ниједан контакт није повезан са документом" @@ -17037,6 +17026,10 @@ 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 "Нема неуспешних евиденција" @@ -17109,7 +17102,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:947 msgid "No permission to read {0}" msgstr "Не постоји дозвола за читање {0}" @@ -17137,7 +17130,7 @@ msgstr "Ниједан запис неће бити извезен" msgid "No rows" msgstr "Нема редова" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "Нема наслова" @@ -17161,7 +17154,7 @@ msgstr "Није пронађен ниједан {0}" msgid "No {0} found" msgstr "Није пронађен ниједан {0}" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Нема {0} који одговарају филтерима. Очистите филтере да видите све {0}." @@ -17213,7 +17206,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 "Није дозвољено" @@ -17262,18 +17255,17 @@ msgstr "Не може бити празно" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17283,9 +17275,9 @@ msgstr "Није објављено" #: 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/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 +17309,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 +17325,11 @@ msgstr "Није активно" msgid "Not allowed for {0}: {1}" msgstr "Није дозвољено за {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17353,7 @@ 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." @@ -17370,18 +17362,18 @@ msgstr "Није у развојном режиму! Поставите у си #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17408,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:399 msgid "Note: This will be shared with user." msgstr "Напомена: Ово ће бити подељено са корисником." @@ -17440,10 +17432,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 +17480,15 @@ msgstr "Документ на који је корисник претплаће msgid "Notification sent to" msgstr "Обавештење послато ка" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "Обавештење: купац {0} нема подешен број мобилног телефона" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "Обавештење: корисник {0} нема подешен број мобилног телефона" @@ -17548,7 +17539,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,9 +17595,9 @@ 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 "Број поља за приложене фајлове је већи од {}, ограничење је ажурирано на {}." @@ -17720,11 +17711,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 +17834,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} је написао/ла:" @@ -17909,7 +17900,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 +17919,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 "Једине опције дозвољене за поље података су:" @@ -17972,7 +17963,7 @@ msgstr "Могу се брисати само извештаји креиран 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Само стандардни DocType-ови могу бити прилагођени путем поља прилагоди образац." @@ -18046,7 +18037,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 +18055,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 +18063,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Отворене ставке" @@ -18087,13 +18078,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 +18093,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 +18112,7 @@ msgstr "Отворено" msgid "Operation" msgstr "Операција" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "Оператор мора бити један од следећих {0}" @@ -18143,7 +18138,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} није зависна табела" @@ -18175,7 +18170,7 @@ msgstr "Опционо: Упозорење ће бити послато укол 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 +18179,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 +18187,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} морају бити подешене пре него што се постави подразумевана вредност." @@ -18236,8 +18231,8 @@ msgstr "Наслов историје организације" 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 "Оригинална вредност" @@ -18316,9 +18311,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:1796 msgid "PDF" msgstr "PDF" @@ -18359,11 +18354,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:629 msgid "PDF generation may not work as expected." msgstr "Генерисање PDF-а можда неће радити како је очекивано." -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "Штампање PDF-а путем опције \"Необрађена штампа\" није подржано." @@ -18535,7 +18530,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}" @@ -18579,11 +18574,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 +18587,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 +18661,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18672,7 @@ msgstr "Пасиван" msgid "Password" msgstr "Лозинка" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "Имејл са лозинком послат" @@ -18690,7 +18685,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:896 msgid "Password cannot be filtered" msgstr "Лозинка се не може филтрирати" @@ -18707,6 +18702,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 +18714,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:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "Упутство за ресетовање лозинке је послато на имејл корисника {}" @@ -18727,15 +18726,15 @@ msgstr "Лозинка постављена" 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:210 msgid "Passwords do not match!" msgstr "Лозинке се не подударају!" @@ -18757,7 +18756,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 +18804,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 "На чекању" @@ -18944,16 +18945,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "Грешка у дозволама" @@ -19041,8 +19042,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Изаберите колоне" @@ -19102,11 +19103,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 +19115,7 @@ msgstr "Молимо Вас да додате наслов у Ваш имејл" msgid "Please add a valid comment." msgstr "Молимо Вас да додате валидан коментар." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "Молимо Вас да затражите од администратора да верификује Вашу регистрацију" @@ -19134,10 +19135,6 @@ 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 "Молимо Вас да проверите вредности филтера постављене за графикон за контролној табли: {}" @@ -19146,7 +19143,7 @@ msgstr "Молимо Вас да проверите вредности филт 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:1072 msgid "Please check your email for verification" msgstr "Молимо Вас да проверите свој имејл за верификацију" @@ -19178,7 +19175,7 @@ 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:631 msgid "Please contact your system manager to install correct version." msgstr "Молимо Вас да контактирате систем менаџера како бисте инсталирали исправну верзију." @@ -19200,7 +19197,7 @@ msgstr "Молимо Вас да не мењате наслове шаблона #: frappe/printing/doctype/print_format/print_format.js:18 msgid "Please duplicate this to make changes" -msgstr "Молимо Вас дуплирате ово како бисте направили измене" +msgstr "Молимо Вас да дуплирате ово како бисте направили измене" #: frappe/core/doctype/system_settings/system_settings.py:163 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." @@ -19208,8 +19205,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19234,7 +19231,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 +19245,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 +19282,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 "Молимо Вас да се пријавите како бисте оставили коментар." @@ -19301,7 +19299,7 @@ msgstr "Молимо Вас да се уверите да документи р msgid "Please refresh to get the latest document." msgstr "Молимо Вас да освежите како бисте добили најновији документ." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "Молимо Вас да уклоните мапирање штампача у подешавањима штампе и покушате поново." @@ -19317,7 +19315,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:1711 msgid "Please save the report first" msgstr "Молимо Вас да прво сачувате извештај" @@ -19353,9 +19351,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 +19363,7 @@ msgstr "Молимо Вас да изаберете важећи филтер д msgid "Please select applicable Doctypes" msgstr "Молимо Вас да изаберете примењиве DocType-ове" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Молимо Вас да изаберете барем 1 колону из {0} за сортирање/груписање" @@ -19391,7 +19389,7 @@ msgstr "Молимо Вас да изаберете {0}" msgid "Please set Email Address" msgstr "Молимо Вас да поставите имејл адресу" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Молимо Вас да поставите мапирање штампача за овај формат штампе у подешавањима штампе" @@ -19403,7 +19401,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 "Молимо Вас да поставите назив документа" @@ -19439,23 +19437,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 +19474,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 за више информација." @@ -19566,14 +19564,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "Потенцијално опасан садржај у текстуалном изразу: {0}" @@ -19589,7 +19579,7 @@ msgstr "Потенцијално опасан садржај у текстуал msgid "Precision" msgstr "Прецизност" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "Прецизност треба да буде између 1 и 6" @@ -19645,7 +19635,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 "Додај шаблон на почетак имејл поруке" @@ -19680,13 +19670,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 +19698,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 @@ -19732,7 +19715,7 @@ msgstr "Претходни" 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 +19761,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Штампа" @@ -19808,8 +19791,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19916,7 +19899,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19965,11 +19948,11 @@ msgstr "Штампа документа" msgid "Print with letterhead" msgstr "Штампа са заглављем" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "Штампач" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "Мапирање штампача" @@ -19979,11 +19962,11 @@ msgstr "Мапирање штампача" msgid "Printer Name" msgstr "Назив штампача" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "Подешавање штампача" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "Мапирање штампача није подешено." @@ -20045,7 +20028,7 @@ msgstr "Настави" msgid "Proceed Anyway" msgstr "Ипак настави" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "Обрада" @@ -20071,9 +20054,9 @@ 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 "Својство" @@ -20159,24 +20142,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 +20163,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 +20207,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 +20252,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" @@ -20297,8 +20267,8 @@ msgid "QR Code for Login Verification" msgstr "QR код за верификацију пријављивања" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "QZ Tray неуспешно: " +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 +20317,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 +20417,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:309 msgid "Quoting must be between 0 and 3" msgstr "Број понуда мора бити између 0 и 3" @@ -20484,12 +20454,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 @@ -20526,7 +20490,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 +20507,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 +20564,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 +20579,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 "Прочитајте документацију за више информација" @@ -20682,7 +20641,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 +20652,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 +20692,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 +20709,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" @@ -21004,15 +20976,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Освежи" @@ -21037,18 +21009,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:534 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:374 #: 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 +21197,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 "Преименовани фајлови и замењени код у контролерима, молимо Вас проверите!" @@ -21428,7 +21400,7 @@ msgstr "Менаџер извештавања" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "Назив извештаја" @@ -21466,7 +21438,7 @@ msgstr "Приказ извештаја" msgid "Report bug" msgstr "Пријави грешку" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "Извештај се може бити постављен за појединачне врсте" @@ -21492,20 +21464,20 @@ msgstr "Достигнуто је ограничење извештаја" msgid "Report timed out." msgstr "Извештај је истекао." -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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}" @@ -21528,7 +21500,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 "Извештаји" @@ -21622,7 +21594,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 +21630,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "Ресетуј LDAP лозинку" @@ -21670,11 +21642,11 @@ msgstr "Ресетуј LDAP лозинку" msgid "Reset Layout" msgstr "Ресетуј распоред" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "Ресетуј тајну једнократне лозинке" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21681,7 @@ msgstr "Врати на подразумевано" msgid "Reset sorting" msgstr "Ресетуј сортирање" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "Врати на подразумевано" @@ -21747,6 +21719,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 +21729,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 +21787,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 "Ограничења" @@ -21871,9 +21839,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 +21868,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 +21880,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 +21894,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 @@ -21975,7 +21943,7 @@ msgstr "Дозволе улога" msgid "Role Permissions Manager" msgstr "Менаџер дозвола улога" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Менаџер дозвола улога" @@ -22018,6 +21986,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 +21996,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 +22033,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 +22053,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 +22064,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 @@ -22126,12 +22092,12 @@ msgstr "Путања: Пример \"/app\"" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "Ред # {0}: Корисник који није администратор не може да постави улогу {1} у прилагођени доцтyпе" @@ -22139,7 +22105,7 @@ msgstr "Ред # {0}: Корисник који није администрат 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 "Ред #{}: Назив поља је обавезан" @@ -22167,7 +22133,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,25 +22141,25 @@ msgstr "Вредности у реду су измењене" msgid "Row {0}" msgstr "Ред {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "Редови уклоњени" @@ -22236,7 +22202,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 +22255,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 +22281,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 +22333,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 +22361,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22383,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:1735 msgid "Save As" msgstr "Сачувај као" @@ -22434,7 +22396,7 @@ msgstr "Сачувај као" msgid "Save Customizations" msgstr "Сачувај прилагођавања" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "Сачувај извештај" @@ -22463,7 +22425,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 +22504,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} је ажурирано" @@ -22710,7 +22672,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 +22704,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" @@ -22819,7 +22781,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 +22828,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22874,12 +22836,12 @@ 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:497 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" @@ -22890,7 +22852,7 @@ msgstr "Изабери прилоге" 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 "Изабери колону" @@ -22954,12 +22916,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:489 #: 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 "Изабери поља за унос" @@ -22982,7 +22947,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 +22970,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:598 msgid "Select Network Printer" msgstr "Изабери мрежни штампач" @@ -23068,17 +23033,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 "Изабери групни чвор." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "Изабери важеће поље за наслов за креирање документа из мејла" @@ -23108,13 +23073,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Изабери више ставки из листе" @@ -23148,7 +23113,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 +23208,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 +23297,7 @@ msgstr "Имејл пошиљаоца" msgid "Sender Email Field" msgstr "Поље за имејл пошиљаоца" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "Поље пошиљаоца треба да има имејл међу опцијама" @@ -23426,7 +23391,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}" @@ -23455,7 +23420,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 "Серверска скрипта је онемогућена. Молимо Вас да је омогућите у конфигурацији командне линије." @@ -23541,7 +23506,7 @@ 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 @@ -23560,7 +23525,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:2104 msgid "Set Level" msgstr "Постави ниво" @@ -23614,7 +23579,7 @@ msgstr "Постави количину" msgid "Set Role For" msgstr "Постави улогу за" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Постави корисничке дозволе" @@ -23672,7 +23637,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 +23744,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 +23762,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "Поставке аутоматског имејла" @@ -23872,11 +23832,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 +23851,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 +23903,7 @@ msgstr "Прикажи документ" msgid "Show Error" msgstr "Прикажи грешку" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Прикажи назив поља (кликни за копирање)" @@ -24081,7 +24031,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:1845 msgid "Show Tags" msgstr "Прикажи ознаке" @@ -24098,7 +24048,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 +24088,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 +24136,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 +24166,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 +24201,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 "Регистрација је онемогућена" @@ -24315,7 +24261,7 @@ msgstr "Једноставни пyтхон израз, пример: status == ' msgid "Simultaneous Sessions" msgstr "Истовремене сесије" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "Јединствени DocType-ови се не могу прилагођавати." @@ -24548,11 +24494,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,13 +24529,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24597,6 +24542,10 @@ msgstr "Поље за сортирање {0} мора бити важећи на 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 +24555,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 +24572,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 "Специјални карактери нису дозвољени" @@ -24684,7 +24639,7 @@ msgstr "Стандардно" 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 не може имати подразумевани формат штампе, користите поље прилагоди образац" @@ -24740,8 +24695,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 +24704,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 @@ -24822,7 +24777,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 +24833,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 +24858,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 +24866,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 +24904,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:454 msgid "Sticky" msgstr "Прикачен" @@ -24977,6 +24934,10 @@ msgstr "Искоришћеност простора по табелама" msgid "Store Attached PDF Document" msgstr "Спреми приложени PDF документ" +#: frappe/core/doctype/user/user.js:490 +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." @@ -25071,7 +25032,7 @@ msgstr "Наслов" msgid "Subject Field" msgstr "Поље за наслов" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "Врста поља за наслов треба да буде податак, текст, дужи текст, краћи текст, уређивач текста" @@ -25096,7 +25057,7 @@ msgstr "Ред чекања за подношење" msgid "Submit" msgstr "Поднеси" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Поднеси" @@ -25106,7 +25067,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Поднеси" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Поднеси" @@ -25130,7 +25091,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 +25103,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 +25115,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Поднеси {0} докумената?" @@ -25163,11 +25124,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 +25151,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 +25165,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:1171 #: 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 +25207,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 +25258,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 +25380,7 @@ msgstr "Синхронизовање" msgid "Syncing {0} of {1}" msgstr "Синхронизовање {0} од {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "Грешка у синтакси" @@ -25548,6 +25503,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 +25586,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 +25660,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 +25669,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,7 +25691,7 @@ msgstr "Вишеструки одабир у табели" msgid "Table Trimmed" msgstr "Скраћена табела" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "Табела ажурирана" @@ -25780,11 +25737,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 +25810,7 @@ msgstr "Упозорења у шаблону" msgid "Templates" msgstr "Шаблони" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "Привремено онемогућено" @@ -25916,11 +25880,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 +25908,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:1193 msgid "The CSV format is case sensitive" msgstr "CSV формат разликује велика и мала слова" @@ -25957,7 +25921,7 @@ 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}' је неважећи" @@ -25965,7 +25929,7 @@ msgstr "Услов '{0}' је неважећи" 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 +25972,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 +25980,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Приказан број процена. Кликните овде да видите тачан број." @@ -26118,11 +26082,11 @@ msgstr "Број пројекта добијен путем Google Cloud кон "\"IAM & Admin\" > \"Settings\"\n" "" -#: 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 "Линк за ресетовање лозинке је већ коришћен или је неважећи" @@ -26159,7 +26123,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}" @@ -26208,7 +26172,7 @@ msgstr "Већ постоји {0} са истим филтерима у реду 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,6 +26184,10 @@ 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 "Тренутно нема ничег новог да се прикаже." @@ -26252,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 "Дошло је до грешака приликом постављања назива, молимо Вас да контактирате администратора" @@ -26344,7 +26312,7 @@ 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' пре измене како бисте избегли губитак измена." @@ -26410,7 +26378,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 +26397,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ово је извештај који се генерише у позадини. Поставите одговарајуће филтере и затим генеришите нови извештај." @@ -26453,12 +26421,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 +26439,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:423 msgid "This may get printed on multiple pages" msgstr "Ово може бити одштампано на више страница" @@ -26524,8 +26486,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 +26518,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:1253 msgid "Throttled" msgstr "Загушено" @@ -26708,11 +26670,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 "Поље временског редоследа мора бити важећи назив поља" @@ -26761,9 +26723,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 +26747,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 +26769,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 "Поље за наслов мора бити важећи назив поља" @@ -26968,7 +26924,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 +26940,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Пребаци бочну траку" @@ -27034,7 +26990,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 +27006,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Превише корисника се регистровало у последње време, стога је регистрација привремено онемогућена. Покушајте поново за сат времена" @@ -27112,10 +27068,10 @@ msgstr "Горе десно" msgid "Topic" msgstr "Тема" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "Укупно" @@ -27158,18 +27114,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 "Укупно редова" @@ -27270,10 +27226,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 +27245,7 @@ msgstr "Транизиција" msgid "Translatable" msgstr "Могуће превођење" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "Преведи податке" @@ -27295,7 +27256,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 +27340,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 "Испробајте нови дизајнер штампе" @@ -27729,8 +27690,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 +27706,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 упит" @@ -27819,7 +27779,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:427 msgid "Update" msgstr "Ажурирај" @@ -27895,7 +27855,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 +27863,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 "Ажурирано на нову верзију 🎉" @@ -28076,7 +28036,7 @@ msgstr "Коришћење функције {0} у пољу је огранич 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 +28057,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 +28068,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 +28083,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 +28097,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 +28114,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 +28148,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 +28212,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 +28231,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 +28254,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "Корисничке дозволе" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Корисничке дозволе" @@ -28313,7 +28272,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 +28340,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 +28374,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 +28395,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:1382 msgid "User {0} impersonated as {1}" msgstr "Корисник {0} се представља као {1}" @@ -28459,7 +28424,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 +28508,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 "Грешка при валидацији" @@ -28615,7 +28580,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Вредност за поље {0} у {1} је предугачка. Дужина треба да буде мања од {2} карактера" @@ -28661,7 +28626,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 +28639,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 +28701,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:156 msgid "View Doctype Permissions" msgstr "Прикажи DocType дозволе" @@ -28766,7 +28723,7 @@ msgstr "Прикажи листу" msgid "View Log" msgstr "Прикажи евиденцију" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Прикажи дозвољена документа" @@ -28813,7 +28770,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 "Прикажите Ваш одговор" @@ -28888,9 +28845,9 @@ 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 "Упозорење: Именовање није постављено" @@ -29079,7 +29036,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 +29049,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 +29092,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 +29296,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 +29309,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 "Биће Ваш ИД за пријављивање" @@ -29453,7 +29401,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 +29427,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 +29439,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,7 +29478,7 @@ 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" @@ -29591,11 +29554,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 "Да ли желите да повучете овај коментар? Ово значи да више неће бити видљив корисницима веб-сајта/портала." @@ -29618,7 +29581,7 @@ msgstr "Измена" 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,7 +29600,7 @@ 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 осе" @@ -29695,14 +29658,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29779,11 +29743,11 @@ msgstr "Немате дозволу да извезете DocType {}" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "Немате дозволу да ажурирате овај документ веб-обрасца" @@ -29807,7 +29771,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 +29797,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 "Можете променити поднета документа тако што ћете их прво отказати, а затим изменити." @@ -29876,7 +29844,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 или Мајкрософт документа." @@ -29906,11 +29874,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "Не можете поставити 'Могуће превођење' за поље {0}" @@ -29928,7 +29896,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Не можете уклонити опцију 'Искључиво за читање' за поље {0}" @@ -29979,7 +29947,7 @@ msgstr "Немате довољно дозвола да довршите ову msgid "You do not have permission to access field: {0}" msgstr "Немате дозволу за приступ пољу: {0}" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "Немате дозволу за приступ {0}: {1}." @@ -29991,7 +29959,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "Немате дозволе за приступ DocType-у {0}." @@ -30003,19 +29971,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "Достигли сте ограничење броја редова у табели базе података: {0}" @@ -30023,11 +29991,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 +30011,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:501 msgid "You haven't created a {0} yet" msgstr "Још увек нисте креирали {0}" @@ -30064,11 +30028,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:804 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:645 msgid "You must login to submit this form" msgstr "Морате бити пријављени да бисте поднели овај образац" @@ -30100,13 +30064,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." @@ -30175,10 +30139,22 @@ msgstr "Престали сте да пратите овај документ" msgid "You viewed this" msgstr "Прегледали сте ово" -#: frappe/public/js/frappe/desk.js:553 +#: 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 фајл се генерише и биће приказан у секцији прилози када буде спреман. Такође, биће Вам послато обавештење када фајл буде доступан за преузимање." @@ -30232,10 +30208,18 @@ msgstr "Захтев за повезивање са Google Цалендар-а msgid "Your email address" msgstr "Ваша имејл адреса" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "Ваш ИД за пријављивање је" @@ -30340,7 +30324,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 +30469,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 +30531,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 +30546,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" @@ -30625,11 +30604,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 +30627,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 "ново" @@ -30841,19 +30815,19 @@ msgstr "подели" msgid "short" msgstr "кратко" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "од прошлог месеца" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "од прошле недеље" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "од прошле године" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "од јуче" @@ -30906,6 +30880,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 +30911,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 +30925,7 @@ msgstr "путем увоза података" msgid "via Google Meet" msgstr "путем Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "путем обавештења" @@ -30980,10 +30958,15 @@ msgstr "када се кликне на елемент, фокусираће с msgid "wkhtmltopdf" msgstr "wkhtmltopdf" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30994,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 +31024,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:486 +#: 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 +31060,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} М" @@ -31103,7 +31090,6 @@ msgstr "{0} извештај" 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 +31114,7 @@ msgstr "{0} радни простор" msgid "{0} added" msgstr "{0} додато" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} већ постоји. Изаберите други назив" @@ -31207,11 +31193,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} садржи неважећи израз функције преузми из, функција преузми из не може бити самореференцијална." @@ -31278,7 +31260,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,7 +31269,7 @@ 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} је обавезно поље" @@ -31295,15 +31277,15 @@ msgstr "{0} је обавезно поље" 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 +31294,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}" @@ -31364,8 +31346,8 @@ msgstr "{0} није важећи Црон израз." 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} није важећа имејл адреса" @@ -31373,15 +31355,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:174 msgid "{0} is not a valid Name" msgstr "{0} није важећи назив" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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} није важеће стање радног тока. Молимо Вас да ажурирате свој радни ток и покушате поново." @@ -31401,19 +31383,23 @@ msgstr "{0} није важећи формат извештаја. Формат 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} није постављен" @@ -31421,31 +31407,31 @@ msgstr "{0} није постављен" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} је неопходно" -#: 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:1835 msgid "{0} items selected" msgstr "одабрано {0} ставки" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} се управо представио као Ви. Навео је следећи разлог: {1}" @@ -31478,7 +31464,7 @@ msgstr "пре {0} минута" msgid "{0} months ago" msgstr "пре {0} месеци" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} мора бити након {1}" @@ -31514,7 +31500,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 +31513,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:1211 msgid "{0} of {1}" msgstr "{0} од {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} од {1} ({2} редова са зависним подацима)" @@ -31577,11 +31563,11 @@ msgstr "{0} је уклонио свој задатак." 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:1795 +msgid "{0} row #{1}:" +msgstr "{0} ред#{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} је успешно сачувано" @@ -31601,11 +31587,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 +31604,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} претплатника додато" @@ -31637,7 +31623,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:254 msgid "{0} updated" msgstr "{0} је ажурирано" @@ -31681,7 +31667,7 @@ msgstr "{0} {1} већ постоји" 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} не може бити крајњи чвор јер има зависне ентитете" @@ -31713,75 +31699,75 @@ msgstr "{0}/{1} завршено | Оставите ову картицу отв 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: Не може се поставити измена без отказивања" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: Не може се поставити додељена измена уколико није могуће поднети" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: Не може се поставити додељено подношење уколико није могуће поднети" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: Не може се поставити отказивање без подношења" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "{0}: Не може се поставити увоз без креирања" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: Не може се поставити подношење, отказивање или допуна без измене" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "{0}: Основне дозволе нису постављене" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31775,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:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0}: Дозвола на нивоу 0 мора бити постављена пре виших нивоа" @@ -31797,7 +31783,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}" @@ -31814,7 +31800,7 @@ msgstr "{0}: {1} је постављено на стање {2}" 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 +31824,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 +31832,11 @@ msgstr "{{{0}}} није исправан формат назива поља. Т msgid "{} Complete" msgstr "{} завршено" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "{} Неважећи пyтхон код на линији {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "{} Потенцијално неважећи пyтхон код.
    {}" diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po index 230c038287..068eb7f51b 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = tačno i 0 = netačno" @@ -145,10 +141,6 @@ msgstr "1 događaj iz Google Calendar-a je sinhronizovan." 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 msgid "1 day ago" msgstr "pre 1 dan" @@ -246,6 +238,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" @@ -641,7 +640,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 +730,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,10 +739,6 @@ 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" - #: 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}" @@ -761,7 +756,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 +857,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:452 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 +886,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:449 +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 +910,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:459 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 +957,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 @@ -1043,7 +1060,7 @@ msgstr "Radnja / Putanja" msgid "Action Complete" msgstr "Radnja završena" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "Radnja neuspešna" @@ -1152,7 +1169,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:501 #: 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 +1180,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:454 msgid "Add / Remove Columns" msgstr "Dodaj / Ukloni kolone" @@ -1175,7 +1192,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" @@ -1208,10 +1225,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1287,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 +1320,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:2145 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" @@ -1435,7 +1452,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}" @@ -1543,7 +1560,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" @@ -1570,11 +1587,11 @@ msgstr "Administracija" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "Administrator prijavljen" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator je pristupio {0} dana {1} putem IP adrese {2}." @@ -1595,8 +1612,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" @@ -1751,7 +1768,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 +1828,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 +1849,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 +1897,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 +2064,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 +2104,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 +2130,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 +2138,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}" @@ -2310,10 +2322,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 +2398,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 +2411,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:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Primeni pravilo dodele" @@ -2441,7 +2459,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 +2492,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "Da li ste sigurni da želite da očistite dodeljene zadatke?" @@ -2502,7 +2524,11 @@ 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?" @@ -2532,7 +2558,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?" @@ -2578,7 +2604,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Dodeli" @@ -2641,6 +2667,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 +2741,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:696 msgid "At least one column is required to show in the grid." msgstr "Barem jedna kolona je obavezna za prikaz u tabeli." @@ -2760,7 +2797,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" @@ -2824,7 +2861,7 @@ 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" @@ -2853,7 +2890,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 +2913,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 +2979,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 +3027,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 +3039,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 +3092,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 +3140,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 +3154,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 +3425,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 +3543,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 +3574,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 +3671,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,13 +3728,13 @@ 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:1189 msgid "Bulk Edit {0}" msgstr "Masovno uređivanje {0}" #: frappe/desk/reportview.py:602 msgid "Bulk Operation Failed" -msgstr "Masovna operacije nije uspela" +msgstr "Masovna operacija nije uspela" #: frappe/desk/reportview.py:606 msgid "Bulk Operation Successful" @@ -3777,7 +3751,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 +3763,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 +3893,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 +3943,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 @@ -4037,7 +3996,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 +4008,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." @@ -4063,12 +4022,13 @@ msgstr "Ne može se preimenovati iz {0} u {1} jer {0} ne postoji." #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4086,16 +4046,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:2205 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 @@ -4145,7 +4107,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}" @@ -4165,11 +4127,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" @@ -4220,7 +4182,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 +4190,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" @@ -4257,7 +4219,7 @@ 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" @@ -4269,11 +4231,11 @@ msgstr "Nije moguće pronaći fajl {} na disku" msgid "Cannot get file contents of a Folder" msgstr "Nije moguće preuzeti sadržaj fajla iz datoteke" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "Nije moguće uvoziti tabelu sa više od 5000 redova." @@ -4293,7 +4255,7 @@ msgstr "Nije moguće upariti kolonu {0} ni sa jednim poljem" 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 +4263,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 +4280,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:1129 +msgid "Cannot use sub-query here." +msgstr "Nije moguće koristiti podupit ovde." -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "Nije moguće koristiti {0} u komandi sortiraj/grupiši po" @@ -4436,9 +4398,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 +4469,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 +4502,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 +4510,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}" @@ -4603,7 +4565,7 @@ 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}" @@ -4656,7 +4618,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 +4630,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:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Očisti dodeljene zadatke" @@ -4694,7 +4656,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,7 +4668,11 @@ 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" @@ -4758,7 +4724,7 @@ msgstr "Kliknite da postavite dinamičke filtere" msgid "Click to Set Filters" msgstr "Kliknite da postavite filtere" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "Kliknite da sortirate po {0}" @@ -4936,7 +4902,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Sažmi sve" @@ -4948,7 +4914,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 +4922,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' @@ -5047,11 +5013,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:454 msgid "Column Width" msgstr "Širina kolone" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "Širina kolone ne može biti nula." @@ -5120,16 +5086,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 +5093,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 +5102,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" @@ -5223,7 +5179,7 @@ msgstr "Naziv kompanije" 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" @@ -5318,6 +5274,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 +5304,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:406 msgid "Configure Columns" msgstr "Konfigurišite kolone" @@ -5374,7 +5335,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Potvrdi" @@ -5393,7 +5354,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:196 msgid "Confirm New Password" msgstr "Potvrdi novu lozinku" @@ -5420,7 +5381,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 {}" @@ -5547,7 +5508,6 @@ msgstr "Sadrži {0} ispravki bezbednosti" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5555,7 +5515,6 @@ msgstr "Sadrži {0} ispravki bezbednosti" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5563,24 +5522,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,7 +5593,7 @@ 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 msgid "Copy error to clipboard" @@ -5656,12 +5603,16 @@ msgstr "Kopiraj grešku u međuspremnik" msgid "Copy to Clipboard" msgstr "Kopiraj u međuspremnik" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "Osnovni DocType-ovi ne mogu biti prilagođeni." @@ -5669,7 +5620,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:633 msgid "Correct version :" msgstr "Ispravna verzija :" @@ -5690,10 +5641,10 @@ 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" @@ -5830,7 +5781,7 @@ 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:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Kreiraj novi" @@ -5843,7 +5794,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:276 msgid "Create User Email" msgstr "Kreiraj korisnički imejl" @@ -5855,7 +5806,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,10 +5814,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "Kreiraj novi {0}" @@ -5883,7 +5834,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:507 msgid "Create your first {0}" msgstr "Kreiraj svoj prvi {0}" @@ -5909,7 +5860,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 +5872,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}" @@ -6258,14 +6209,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "Prilagodi" @@ -6409,7 +6360,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" @@ -6517,7 +6468,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:615 msgid "Data Too Long" msgstr "Podaci su preobimni" @@ -6548,7 +6499,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:249 msgid "Database Table Row Size Limit" msgstr "Ograničenje veličine reda tabele baze podataka" @@ -6686,11 +6637,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "Decimalni separator mora biti jedan znak" @@ -6852,11 +6803,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." @@ -6907,10 +6858,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6918,11 +6869,16 @@ msgstr "Kašnjenje" msgid "Delete" msgstr "Obriši" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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" @@ -6963,7 +6919,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 +6952,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Trajno obriši {0} stavke?" @@ -7041,6 +6997,10 @@ msgstr "Obrisani naziv" msgid "Deleted all documents successfully" msgstr "Svi dokumenti su uspešno obrisani" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Obrisano!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "Brisanje {0}" @@ -7056,8 +7016,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 +7033,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:301 msgid "Delimiter must be a single character" msgstr "Razdelnik mora biti jedan karakter" @@ -7100,7 +7060,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 +7095,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 +7115,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 +7124,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 +7207,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 +7268,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 +7285,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 +7294,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 +7344,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 +7358,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 +7368,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 +7386,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 +7409,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,16 +7445,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "Nemoj uređivati zaglavlja koja su unapred postavljena u šablonu" @@ -7605,7 +7551,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 +7598,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 +7611,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 +7644,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 +7658,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,19 +7720,19 @@ 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" @@ -7983,7 +7929,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:1955 msgid "Document Unlocked" msgstr "Dokument je otključan" @@ -7991,15 +7937,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:1300 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:1299 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:1298 msgid "Document is in draft state" msgstr "Dokument u stanju nacrta" @@ -8141,13 +8087,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "Preuzmi" @@ -8369,17 +8315,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:1776 #: 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:350 #: 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 +8333,7 @@ msgstr "IZLAZ" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Uredi" @@ -8397,7 +8343,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "Uredi" @@ -8426,7 +8372,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Uredi DocType" @@ -8529,7 +8475,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 +8484,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}" @@ -8585,6 +8531,7 @@ 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' @@ -8598,6 +8545,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 @@ -8638,7 +8586,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" @@ -8757,7 +8705,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 +8717,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 +8785,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:278 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)" @@ -8907,7 +8855,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 +8881,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 +8974,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 +8981,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 +8993,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 +9016,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 +9029,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 +9055,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 +9075,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 +9091,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 +9107,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 +9155,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 +9225,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 +9245,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" @@ -9352,9 +9293,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "Greška u obaveštenju" @@ -9374,7 +9315,7 @@ 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:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Greška pri obradi obaveštenja {0}. Molimo Vas da ispravite Vaš šablon." @@ -9527,7 +9468,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 +9476,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:2123 msgid "Execution Time: {0} sec" msgstr "Vreme izvršavanja: {0} sekundi" @@ -9561,7 +9502,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Proširi sve" @@ -9594,7 +9535,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 +9565,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Izvoz" @@ -9665,7 +9608,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Izvoz izveštaja: {0}" @@ -9674,11 +9617,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?" @@ -9773,7 +9716,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 +9734,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 +9751,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: {}" @@ -9821,7 +9764,7 @@ msgstr "Neuspešno povezivanje sa serverom" 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}" @@ -9833,8 +9776,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 +9793,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 +9813,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 +9867,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 +9924,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:1870 #: 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 +9947,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" @@ -10066,11 +10003,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:545 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,16 +10025,16 @@ 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:454 #: 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" @@ -10121,11 +10058,11 @@ msgstr "Naziv polja {0} se pojavljuje više puta" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Naziv polja {0} ne može sadržati specijalne karaktere poput {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +10085,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 @@ -10197,7 +10134,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:589 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}" @@ -10265,7 +10202,7 @@ msgstr "Rezervna kopija fajla je spremna" #: frappe/core/doctype/file/file.py:624 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" @@ -10274,7 +10211,7 @@ msgstr "Fajl nije priložen" #: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" -msgstr "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" @@ -10301,7 +10238,7 @@ msgstr "Fajlovi" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10360,7 +10297,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 +10311,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 +10335,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,7 +10352,7 @@ 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}" @@ -10426,18 +10369,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}" @@ -10525,11 +10468,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" @@ -10652,11 +10595,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 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 +10634,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 +10675,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 +10693,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:2120 +#: 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 +10720,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 +10734,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Za {0} na nivou {1} u {2} u redu {3}" @@ -10852,7 +10789,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 +10849,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 +10881,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 +10978,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:1831 msgid "From Document Type" msgstr "Od vrste dokumenta" @@ -11055,18 +11005,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" @@ -11165,6 +11113,12 @@ 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 msgid "Generate Tracking URL" @@ -11189,7 +11143,7 @@ msgstr "Geolokacija" msgid "Geolocation Settings" msgstr "Podešavanje geolokacije" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "Prikaži današnja obaveštenja" @@ -11379,7 +11333,7 @@ msgstr "Google Calendar - Kontakt / imejl nije pronađen. Nije dodat učesnik za #: 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 +11449,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" @@ -11633,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 @@ -11646,7 +11594,6 @@ msgstr "HH:mm:ss" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11808,6 +11755,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 @@ -11942,11 +11895,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 +11944,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 +11974,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:1845 msgid "Hide Tags" msgstr "Sakrij oznake" @@ -12040,7 +11988,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 +12037,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 +12126,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12286,7 +12231,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12416,6 +12361,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 +12396,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 +12457,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:1120 msgid "Illegal SQL Query" msgstr "Nevažeći SQL upit" @@ -12570,11 +12523,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,11 +12549,11 @@ 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:384 msgid "Impersonate" msgstr "Zameni identitet" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "Zameni identitet kao {0}" @@ -12630,7 +12583,7 @@ msgstr "Implicitno" msgid "Import" msgstr "Uvoz" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "Uvoz" @@ -12925,7 +12878,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" @@ -12949,7 +12902,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 +12977,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:1876 msgid "Insert After" msgstr "Unesi nakon" @@ -13040,7 +12993,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 +13011,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "Instaliraj {0} iz prodavnice" @@ -13076,7 +13033,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 +13048,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 msgid "Insufficient Permission for {0}" -msgstr "Nedovoljna ovlašćena za {0}" +msgstr "Nedovoljna ovlašćenja za {0}" #: frappe/desk/reportview.py:360 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 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 +13166,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:849 +#: 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" @@ -13221,7 +13178,7 @@ msgstr "Nevažeći \"depends_on\" izraz postavljen u filteru {0}" #: frappe/public/js/frappe/form/save.js:159 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 +13192,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,7 +13212,11 @@ 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" @@ -13296,7 +13257,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 +13266,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" @@ -13322,11 +13283,11 @@ msgstr "Nevažeći izlazni format" 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:1239 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" @@ -13345,7 +13306,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" @@ -13368,7 +13329,7 @@ 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" @@ -13380,6 +13341,10 @@ msgstr "Nevažeća agregatna funkcija" msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Nevažeći format pseudonima: {0}. Pseudonim mora biti jednostavan identifikator." +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Nevažeća aplikacija" + #: frappe/database/query.py:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Nevažeći format argumenta: {0}. Dozvoljeni su samo navodnicima obuhvaćeni tekstovi ili jednostavni nazivi polja." @@ -13396,7 +13361,7 @@ msgstr "Nevažeći karakteri u nazivu polja: {0}. Dozvoljena su slova, brojevi i 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" @@ -13432,19 +13397,15 @@ msgstr "Nevažeći format polja u {0}: {1}. Koristite 'field', 'link_field.field 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:2199 msgid "Invalid field name {0}" msgstr "Nevažeći naziv polja {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "Nevažeći naziv polja: {0}" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "Nevažeća vrsta polja: {0}" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Nevažeći naziv polja '{0}' u automatskom imenovanju" @@ -13472,12 +13433,20 @@ msgstr "Nevažeća vrsta argumenta funkcije: {0}. Dozvoljeni su isključivo teks 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 +13454,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" @@ -13497,6 +13470,10 @@ msgstr "Nevažeće preusmerenje regex funkcije u redu #{}: {}" msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahteva" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "Nevažeća uloga" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "Nevažeći jednostavni format filtera: {0}" @@ -13513,7 +13490,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 +13499,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:627 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 +13521,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" @@ -13683,7 +13697,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" @@ -13808,7 +13822,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 @@ -13975,12 +13989,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 @@ -14253,7 +14269,7 @@ msgstr "Pejzažni" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Jezik" @@ -14357,6 +14373,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 +14394,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 +14480,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" @@ -14537,7 +14553,7 @@ msgstr "Pismo" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14633,20 +14649,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 +14689,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 +14703,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,6 +14834,10 @@ 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' @@ -14882,7 +14890,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:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Podešavanje liste" @@ -14923,7 +14931,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 +14940,8 @@ msgstr "Liste" msgid "Load Balancing" msgstr "Balansiranje opterećenja" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Učitaj više" @@ -14951,8 +14958,8 @@ 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 msgid "Loading" @@ -14964,9 +14971,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 +14983,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Učitavanje..." @@ -15037,7 +15044,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" @@ -15160,7 +15167,7 @@ msgstr "Isticanje linka za prijavljivanje (u minutima)" #: frappe/auth.py:144 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 +15184,7 @@ msgstr "Logo URI" msgid "Logout" msgstr "Odjava" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "Odjava iz svih sesija" @@ -15357,7 +15364,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:509 msgid "Mandatory Information missing:" msgstr "Nedostaju obavezni podaci:" @@ -15377,7 +15384,7 @@ msgstr "Obavezna polja su neophodna u tabeli {0}, red {1}" msgid "Mandatory fields required in {0}" msgstr "Obavezna polja su neophodna u {0}" -#: frappe/public/js/frappe/web_form/web_form.js: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 +15465,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 +15547,7 @@ 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 +#: 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}" @@ -15555,16 +15560,11 @@ msgstr "Maksimalno" 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" @@ -15634,7 +15634,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" @@ -15700,7 +15700,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 +15732,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" @@ -15889,7 +15881,7 @@ 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" @@ -16156,7 +16148,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." @@ -16230,7 +16222,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." @@ -16271,7 +16263,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:498 #: 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 +16271,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,7 +16301,7 @@ 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/views/file/file_view.js:97 @@ -16325,7 +16317,7 @@ msgstr "Naziv (Dokumenta)" msgid "Name already taken, please set a new name" msgstr "Naziv je već zauzet, molimo Vas da postavite novi naziv" -#: frappe/model/naming.py: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 +16329,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 +16370,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 +16407,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:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Pomeri listu prema gore" @@ -16435,7 +16427,7 @@ msgstr "Idi na glavni sadržaj" msgid "Navigation Settings" msgstr "Podešavanje navigacije" -#: 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 "Neophodna je uloga menadžera radnog prostora da biste uređivali privatni radni prostor drugih korisnika" @@ -16485,10 +16477,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 +16485,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" @@ -16564,12 +16552,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:190 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 +16566,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 +16584,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 +16644,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:411 msgid "New {0}" msgstr "Novi {0}" @@ -16678,7 +16666,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 +16674,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 +16687,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,12 +16794,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16863,6 +16852,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 +16891,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16907,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:1744 msgid "No Permissions Specified" msgstr "Dozvole nisu navedene" @@ -16934,17 +16927,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:720 msgid "No Preview Available" msgstr "Pregled nije dostupan" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 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,7 +16947,7 @@ 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" @@ -16978,7 +16971,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:232 msgid "No alerts for today" msgstr "Nema upozorenja za danas" @@ -17006,19 +16999,15 @@ 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" @@ -17038,6 +17027,10 @@ 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" @@ -17110,7 +17103,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:947 msgid "No permission to read {0}" msgstr "Ne postoji dozvola za čitanje {0}" @@ -17138,7 +17131,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" @@ -17162,7 +17155,7 @@ msgstr "Nije pronađen nijedan {0}" 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:497 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}." @@ -17214,7 +17207,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" @@ -17263,18 +17256,17 @@ msgstr "Ne može biti prazno" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17284,9 +17276,9 @@ msgstr "Nije objavljeno" #: 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/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 +17310,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 +17326,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:637 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,7 +17354,7 @@ 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." @@ -17371,18 +17363,18 @@ msgstr "Nije u razvojnom režimu! Postavite u site_config.json ili napravite 'Pr #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17409,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:399 msgid "Note: This will be shared with user." msgstr "Napomena: Ovo će biti podeljeno sa korisnikom." @@ -17441,10 +17433,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 +17481,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:542 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:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "Obaveštenje: korisnik {0} nema podešen broj mobilnog telefona" @@ -17549,7 +17540,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,9 +17596,9 @@ 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 {}." @@ -17721,11 +17712,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 +17835,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:" @@ -17910,7 +17901,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 +17920,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:" @@ -17973,7 +17964,7 @@ msgstr "Mogu se brisati samo izveštaji kreirani pomoću uređivača izveštaja" 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:129 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." @@ -18047,7 +18038,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 +18056,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 +18064,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Otvorene stavke" @@ -18088,13 +18079,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 +18094,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 +18113,7 @@ msgstr "Otvoreno" msgid "Operation" msgstr "Operacija" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "Operator mora biti jedan od sledećih {0}" @@ -18144,7 +18139,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" @@ -18176,7 +18171,7 @@ msgstr "Opciono: Upozorenje će biti poslato ukoliko je ovaj izraz tačan" 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 +18180,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 +18188,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." @@ -18237,8 +18232,8 @@ msgstr "Naslov istorije organizacije" 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" @@ -18317,9 +18312,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:1796 msgid "PDF" msgstr "PDF" @@ -18360,11 +18355,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:629 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:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "Štampanje PDF-a putem opcije \"Neobrađena štampa\" nije podržano." @@ -18536,7 +18531,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}" @@ -18580,11 +18575,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 +18588,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 +18662,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18673,7 @@ msgstr "Pasivan" msgid "Password" msgstr "Lozinka" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "Imejl sa lozinkom poslat" @@ -18691,7 +18686,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:896 msgid "Password cannot be filtered" msgstr "Lozinka se ne može filtrirati" @@ -18708,6 +18703,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 +18715,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:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "Uputstvo za resetovanje lozinke je poslato na imejl korisnika {}" @@ -18728,15 +18727,15 @@ msgstr "Lozinka postavljena" msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke premašuje dozvoljenu granicu" -#: frappe/core/doctype/user/user.py: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:210 msgid "Passwords do not match!" msgstr "Lozinke se ne podudaraju!" @@ -18758,7 +18757,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 +18805,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" @@ -18945,16 +18946,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "Greška u dozvolama" @@ -19042,8 +19043,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Izaberite kolone" @@ -19103,11 +19104,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 +19116,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:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "Molimo Vas da zatražite od administratora da verifikuje Vašu registraciju" @@ -19135,10 +19136,6 @@ 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: {}" @@ -19147,7 +19144,7 @@ msgstr "Molimo Vas da proverite vrednosti filtera postavljene za grafikon za kon msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Molimo Vas da proverite vrednosti polja \"Preuzmi iz\" postavljenih za polje {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1072 msgid "Please check your email for verification" msgstr "Molimo Vas da proverite svoj imejl za verifikaciju" @@ -19179,7 +19176,7 @@ msgstr "Molimo Vas da kliknete na sledeći link da biste postavili novu lozinku" msgid "Please confirm your action to {0} this document." msgstr "Molimo Vas da potvrdite svoju radnju kako biste {0} ovaj dokument." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "Molimo Vas da kontaktirate sistem menadžera kako biste instalirali ispravnu verziju." @@ -19201,16 +19198,16 @@ msgstr "Molimo Vas da ne menjate naslove šablona." #: frappe/printing/doctype/print_format/print_format.js:18 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 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19235,7 +19232,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 +19246,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 +19283,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." @@ -19302,7 +19300,7 @@ msgstr "Molimo Vas da se uverite da dokumenti referentne komunikacije nisu kruž 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:548 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 +19316,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:1711 msgid "Please save the report first" msgstr "Molimo Vas da prvo sačuvate izveštaj" @@ -19354,9 +19352,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 +19364,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:1152 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,7 +19390,7 @@ 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:562 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" @@ -19404,7 +19402,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" @@ -19440,23 +19438,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 +19475,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." @@ -19567,14 +19565,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potencijalno opasan sadržaj u tekstualnom izrazu: {0}" @@ -19590,7 +19580,7 @@ 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:1401 msgid "Precision should be between 1 and 6" msgstr "Preciznost treba da bude između 1 i 6" @@ -19646,7 +19636,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" @@ -19681,13 +19671,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 +19699,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 @@ -19733,7 +19716,7 @@ msgstr "Prethodni" 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 +19762,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Štampa" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Štampa" @@ -19809,8 +19792,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19917,7 +19900,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19966,11 +19949,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:843 msgid "Printer" msgstr "Štampač" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "Mapiranje štampača" @@ -19980,11 +19963,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:812 msgid "Printer Settings" msgstr "Podešavanje štampača" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "Mapiranje štampača nije podešeno." @@ -20046,7 +20029,7 @@ msgstr "Nastavi" msgid "Proceed Anyway" msgstr "Ipak nastavi" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "Obrada" @@ -20072,9 +20055,9 @@ 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" @@ -20160,24 +20143,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 +20164,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 +20208,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 +20253,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" @@ -20298,8 +20268,8 @@ 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: " +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 +20318,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 +20418,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:309 msgid "Quoting must be between 0 and 3" msgstr "Broj ponuda mora biti između 0 i 3" @@ -20485,12 +20455,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 @@ -20527,7 +20491,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 +20508,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 +20565,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 +20580,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" @@ -20683,7 +20642,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 +20653,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 +20693,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 +20710,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" @@ -21005,15 +20977,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Osveži" @@ -21038,18 +21010,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:534 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:374 #: 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 +21198,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!" @@ -21429,7 +21401,7 @@ msgstr "Menadžer izveštavanja" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "Naziv izveštaja" @@ -21467,7 +21439,7 @@ msgstr "Prikaz izveštaja" msgid "Report bug" msgstr "Prijavi grešku" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "Izveštaj se može biti postavljen za pojedinačne vrste" @@ -21493,20 +21465,20 @@ 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:615 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:1994 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}" @@ -21529,7 +21501,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" @@ -21623,7 +21595,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 +21631,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "Resetuj LDAP lozinku" @@ -21671,11 +21643,11 @@ msgstr "Resetuj LDAP lozinku" msgid "Reset Layout" msgstr "Resetuj raspored" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 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:168 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 +21682,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:433 msgid "Reset to default" msgstr "Vrati na podrazumevano" @@ -21748,6 +21720,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 +21730,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 +21788,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" @@ -21872,9 +21840,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 +21869,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 +21881,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 +21895,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 @@ -21976,7 +21944,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:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Menadžer dozvola uloga" @@ -22019,6 +21987,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 +21997,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 +22034,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 +22054,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 +22065,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 @@ -22127,12 +22093,12 @@ msgstr "Putanja: Primer \"/app\"" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 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" @@ -22140,7 +22106,7 @@ msgstr "Red # {0}: Korisnik koji nije administrator ne može da postavi ulogu {1 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" @@ -22168,7 +22134,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,25 +22142,25 @@ 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:353 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:342 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" @@ -22237,7 +22203,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 +22256,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 +22282,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 +22334,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 +22362,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22384,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:1735 msgid "Save As" msgstr "Sačuvaj kao" @@ -22435,7 +22397,7 @@ 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:1951 msgid "Save Report" msgstr "Sačuvaj izveštaj" @@ -22464,7 +22426,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 +22505,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" @@ -22711,7 +22673,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 +22705,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" @@ -22820,7 +22782,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 +22829,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22875,12 +22837,12 @@ 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:497 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" @@ -22891,7 +22853,7 @@ msgstr "Izaberi priloge" 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" @@ -22955,12 +22917,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:489 #: 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" @@ -22983,7 +22948,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 +22971,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:598 msgid "Select Network Printer" msgstr "Izaberi mrežni štampač" @@ -23069,17 +23034,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." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 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 +23074,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Izaberi više stavki iz liste" @@ -23149,7 +23114,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 +23209,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 +23298,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:1946 msgid "Sender Field should have Email in options" msgstr "Polje pošiljaoca treba da ima imejl među opcijama" @@ -23427,7 +23392,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}" @@ -23456,7 +23421,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." @@ -23542,7 +23507,7 @@ 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 @@ -23561,7 +23526,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:2104 msgid "Set Level" msgstr "Postavi nivo" @@ -23615,7 +23580,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:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Postavi korisničke dozvole" @@ -23673,7 +23638,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 +23745,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 +23763,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "Postavke automatskog imejla" @@ -23873,11 +23833,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 +23852,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 +23904,7 @@ msgstr "Prikaži dokument" msgid "Show Error" msgstr "Prikaži grešku" -#: frappe/public/js/frappe/form/layout.js:579 +#: 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 +24032,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:1845 msgid "Show Tags" msgstr "Prikaži oznake" @@ -24099,7 +24049,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 +24089,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 +24137,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 +24167,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 +24202,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" @@ -24316,7 +24262,7 @@ msgstr "Jednostavni python izraz, primer: status == 'Otvoreno' and type == 'Gre msgid "Simultaneous Sessions" msgstr "Istovremene sesije" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "Jedinstveni DocType-ovi se ne mogu prilagođavati." @@ -24549,11 +24495,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,13 +24530,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24598,6 +24543,10 @@ msgstr "Polje za sortiranje {0} mora biti važeći naziv polja" 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 +24556,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 +24573,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" @@ -24685,7 +24640,7 @@ msgstr "Standardno" 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" @@ -24741,8 +24696,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 +24705,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 @@ -24823,7 +24778,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 +24834,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 +24859,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 +24867,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 +24905,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:454 msgid "Sticky" msgstr "Prikačen" @@ -24978,6 +24935,10 @@ msgstr "Iskorišćenost prostora po tabelama" msgid "Store Attached PDF Document" msgstr "Spremi priloženi PDF dokument" +#: frappe/core/doctype/user/user.js:490 +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." @@ -25072,7 +25033,7 @@ msgstr "Naslov" msgid "Subject Field" msgstr "Polje za naslov" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 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" @@ -25097,7 +25058,7 @@ msgstr "Red čekanja za podnošenje" msgid "Submit" msgstr "Podnesi" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Podnesi" @@ -25107,7 +25068,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Podnesi" @@ -25131,7 +25092,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 +25104,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 +25116,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Podnesi {0} dokumenata?" @@ -25164,11 +25125,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 +25152,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 +25166,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:1171 #: 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 +25208,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 +25259,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 +25381,7 @@ msgstr "Sinhronizovanje" msgid "Syncing {0} of {1}" msgstr "Sinhronizovanje {0} od {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "Greška u sintaksi" @@ -25549,6 +25504,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 +25587,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 +25661,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 +25670,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,7 +25692,7 @@ 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:1170 msgid "Table updated" msgstr "Tabela ažurirana" @@ -25781,11 +25738,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 +25811,7 @@ msgstr "Upozorenja u šablonu" msgid "Templates" msgstr "Šabloni" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "Privremeno onemogućeno" @@ -25917,11 +25881,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 +25909,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:1193 msgid "The CSV format is case sensitive" msgstr "CSV format razlikuje velika i mala slova" @@ -25958,7 +25922,7 @@ 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" @@ -25966,7 +25930,7 @@ msgstr "Uslov '{0}' je nevažeći" 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 +25973,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 +25981,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:685 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." @@ -26119,11 +26083,11 @@ msgstr "Broj projekta dobijen putem Google Cloud konzole, u odeljku " -#: frappe/core/doctype/user/user.py:993 +#: 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" @@ -26160,7 +26124,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}" @@ -26209,7 +26173,7 @@ msgstr "Već postoji {0} sa istim filterima u redu čekanja:" msgid "There can be only 9 Page Break fields in a Web Form" msgstr "U veb-obrascu može biti najviše 9 polja za prelom stranice" -#: frappe/core/doctype/doctype/doctype.py: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,6 +26185,10 @@ 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." @@ -26253,11 +26221,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" @@ -26345,7 +26313,7 @@ msgstr "Ovaj grafikon će biti dostupan svim korisnicima ukoliko je ova opcija u msgid "This doctype has no orphan fields to trim" msgstr "Ovaj doctype nema nepovezanih polja koja treba ukloniti" -#: frappe/core/doctype/doctype/doctype.py: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." @@ -26411,7 +26379,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 +26398,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:2180 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 +26422,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 +26440,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:423 msgid "This may get printed on multiple pages" msgstr "Ovo može biti odštampano na više stranica" @@ -26525,8 +26487,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 +26519,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:1253 msgid "Throttled" msgstr "Zagušeno" @@ -26709,11 +26671,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" @@ -26762,9 +26724,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 +26748,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 +26770,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" @@ -26969,7 +26925,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 +26941,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Prebaci bočnu traku" @@ -27035,7 +26991,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 +27007,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:1041 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 +27069,10 @@ msgstr "Gore desno" msgid "Topic" msgstr "Tema" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "Ukupno" @@ -27159,18 +27115,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" @@ -27271,10 +27227,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 +27246,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:2235 msgid "Translate Data" msgstr "Prevedi podatke" @@ -27296,7 +27257,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 +27341,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" @@ -27729,8 +27690,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 +27706,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" @@ -27819,7 +27779,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:427 msgid "Update" msgstr "Ažuriraj" @@ -27895,7 +27855,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 +27863,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 🎉" @@ -28076,7 +28036,7 @@ msgstr "Korišćenje funkcije {0} u polju je ograničeno" 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 +28057,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 +28068,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 +28083,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 +28097,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 +28114,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 +28148,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 +28212,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 +28231,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 +28254,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "Korisničke dozvole" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Korisničke dozvole" @@ -28313,7 +28272,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 +28340,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 +28374,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 +28395,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:1382 msgid "User {0} impersonated as {1}" msgstr "Korisnik {0} se predstavlja kao {1}" @@ -28459,7 +28424,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 +28508,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" @@ -28615,7 +28580,7 @@ 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:612 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" @@ -28661,7 +28626,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 +28639,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 +28701,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:156 msgid "View Doctype Permissions" msgstr "Prikaži DocType dozvole" @@ -28766,7 +28723,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:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Prikaži dozvoljena dokumenta" @@ -28813,7 +28770,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" @@ -28888,9 +28845,9 @@ 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" @@ -29079,7 +29036,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 +29049,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 +29092,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 +29296,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 +29309,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" @@ -29453,7 +29401,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 +29427,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 +29439,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,7 +29478,7 @@ 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" @@ -29591,11 +29554,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." @@ -29618,7 +29581,7 @@ msgstr "Izmena" 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,7 +29600,7 @@ 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" @@ -29695,14 +29658,15 @@ 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/website/doctype/help_article/templates/help_article.html:25 @@ -29779,11 +29743,11 @@ msgstr "Nemate dozvolu da izvezete doctype {}" msgid "You are not allowed to print this report" msgstr "Nemate dozvolu da odštampate ovaj izveštaj" -#: frappe/public/js/frappe/views/communication.js: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:605 msgid "You are not allowed to update this Web Form Document" msgstr "Nemate dozvolu da ažurirate ovaj dokument veb-obrasca" @@ -29807,7 +29771,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 +29797,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." @@ -29876,7 +29844,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." @@ -29906,11 +29874,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "Ne možete postaviti 'Moguće prevođenje' za polje {0}" @@ -29928,7 +29896,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Ne možete ukloniti opciju 'Isključivo za čitanje' za polje {0}" @@ -29979,7 +29947,7 @@ msgstr "Nemate dovoljno dozvola da dovršite ovu radnju" 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:878 msgid "You do not have permission to access {0}: {1}." msgstr "Nemate dozvolu za pristup {0}: {1}." @@ -29991,7 +29959,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "Nemate dozvole za pristup DocType-u {0}." @@ -30003,19 +29971,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:245 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 +29991,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 +30011,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:501 msgid "You haven't created a {0} yet" msgstr "Još uvek niste kreirali {0}" @@ -30064,11 +30028,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:804 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:645 msgid "You must login to submit this form" msgstr "Morate biti prijavljeni da biste podneli ovaj obrazac" @@ -30100,13 +30064,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." @@ -30175,10 +30139,22 @@ msgstr "Prestali ste da pratite ovaj dokument" msgid "You viewed this" msgstr "Pregledali ste ovo" -#: frappe/public/js/frappe/desk.js:553 +#: 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." @@ -30232,10 +30208,18 @@ 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/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" @@ -30340,7 +30324,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 +30469,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 +30531,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 +30546,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" @@ -30625,11 +30604,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 +30627,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" @@ -30841,19 +30815,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:301 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:300 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:302 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:299 msgid "since yesterday" msgstr "od juče" @@ -30906,6 +30880,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 +30911,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 +30925,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:403 msgid "via Notification" msgstr "putem obaveštenja" @@ -30980,10 +30958,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:635 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 +30994,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 +31024,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:486 +#: 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 +31060,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" @@ -31103,7 +31090,6 @@ msgstr "{0} izveštaj" 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 +31114,7 @@ msgstr "{0} radni prostor" msgid "{0} added" msgstr "{0} dodato" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} već postoji. Izaberite drugi naziv" @@ -31207,11 +31193,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." @@ -31278,7 +31260,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,7 +31269,7 @@ 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" @@ -31295,15 +31277,15 @@ msgstr "{0} je obavezno polje" msgid "{0} is a not a valid zip file" msgstr "{0} nije važeći zip fajl" -#: frappe/core/doctype/doctype/doctype.py: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 +31294,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}" @@ -31364,8 +31346,8 @@ msgstr "{0} nije važeći Cron izraz." 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} nije važeća imejl adresa" @@ -31373,15 +31355,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:174 msgid "{0} is not a valid Name" msgstr "{0} nije važeći naziv" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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." @@ -31401,19 +31383,23 @@ msgstr "{0} nije važeći format izveštaja. Format izveštaja treba da bude jed 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" @@ -31421,31 +31407,31 @@ msgstr "{0} nije postavljen" msgid "{0} is now default print format for {1} doctype" msgstr "{0} je sada podrazumevani format za štampanje za {1} doctype" -#: frappe/public/js/frappe/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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} je neophodno" -#: 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:1835 msgid "{0} items selected" msgstr "odabrano {0} stavki" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 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,7 +31464,7 @@ msgstr "pre {0} minuta" msgid "{0} months ago" msgstr "pre {0} meseci" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} mora biti nakon {1}" @@ -31514,7 +31500,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 +31513,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} od {1} ({2} redova sa zavisnim podacima)" @@ -31577,11 +31563,11 @@ msgstr "{0} je uklonio svoj zadatak." msgid "{0} role does not have permission on any doctype" msgstr "Uloga {0} nema dozvole ni za jednu vrstu dokumenta" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} red#{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "{0} red#{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} je uspešno sačuvano" @@ -31601,11 +31587,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 +31604,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" @@ -31637,7 +31623,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:254 msgid "{0} updated" msgstr "{0} je ažurirano" @@ -31681,7 +31667,7 @@ msgstr "{0} {1} već postoji" 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" @@ -31713,75 +31699,75 @@ msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom dok se proces ne zavr 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:1801 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:1819 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:1817 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:1796 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:1803 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:1799 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:1823 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:1756 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:1770 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 +31775,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:1785 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 +31783,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}" @@ -31814,7 +31800,7 @@ msgstr "{0}: {1} je postavljeno na stanje {2}" 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 +31824,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 +31832,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:2525 msgid "{} Invalid python code on line {}" msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "{} Potencijalno nevažeći python kod.
    {}" diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po index f093a0349d..4c277a4069 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-28 23:16\n" +"POT-Creation-Date: 2025-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = Sant & 0 = Falskt" @@ -144,10 +140,6 @@ msgstr "1 Google Kalender Händelse Synkroniserad." 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 msgid "1 day ago" msgstr "1 dag sedan" @@ -245,6 +237,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" @@ -638,7 +639,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 +729,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,10 +738,6 @@ 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" - #: 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}" @@ -758,7 +755,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 +856,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:452 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 +885,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:449 +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 +909,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:459 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 +956,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 @@ -1040,7 +1059,7 @@ msgstr "Åtgärd / Sökväg" msgid "Action Complete" msgstr "Åtgärd Klar" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "Åtgärd Misslyckades" @@ -1149,7 +1168,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:501 #: 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 +1179,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:454 msgid "Add / Remove Columns" msgstr "Lägg till/Ta Bort Kolumn" @@ -1172,7 +1191,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" @@ -1205,10 +1224,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1286,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 +1319,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:2145 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" @@ -1432,7 +1451,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}" @@ -1540,7 +1559,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" @@ -1567,11 +1586,11 @@ msgstr "Administration" msgid "Administrator" msgstr "Administratör" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "Administratör Inloggad" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administratör loggade in {0} {1} via IP Adress {2}." @@ -1592,8 +1611,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" @@ -1748,7 +1767,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 +1827,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 +1848,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 +1896,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 +2129,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 +2137,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}" @@ -2307,10 +2321,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 +2397,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 +2410,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:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Tillämpa Tilldelning Regel" @@ -2438,7 +2458,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 +2491,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "Är du säker på att du vill ta bort tilldelningar?" @@ -2499,7 +2523,11 @@ 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?" @@ -2575,7 +2603,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Tilldela till" @@ -2638,6 +2666,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 +2740,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:696 msgid "At least one column is required to show in the grid." msgstr "Minst en kolumn erfordras för att visas i rutnät." @@ -2821,7 +2860,7 @@ 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" @@ -2852,6 +2891,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 +2912,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 +3026,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 +3038,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 +3091,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 +3139,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 +3153,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 +3424,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 +3542,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 +3573,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 +3670,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 @@ -3751,7 +3727,7 @@ msgstr "Massborttagning" msgid "Bulk Edit" msgstr "Mass Redigera" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "Mass Redigera {0}" @@ -3774,7 +3750,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 +3762,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ö." @@ -3916,16 +3892,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 +3942,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 @@ -4034,7 +3995,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" @@ -4060,12 +4021,13 @@ msgstr "Kan inte byta namn på {0} till {1} eftersom {0} inte finns." #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Annullera" @@ -4083,16 +4045,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:2205 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 @@ -4142,7 +4106,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}" @@ -4162,11 +4126,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" @@ -4217,7 +4181,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 +4189,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" @@ -4254,7 +4218,7 @@ 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" @@ -4266,11 +4230,11 @@ msgstr "Kan inte hitta fil {} på disk" msgid "Cannot get file contents of a Folder" msgstr "Kan inte hämta fil innehåll från mapp" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "Kan inte importera tabell med fler än 5000 rader." @@ -4290,7 +4254,7 @@ msgstr "Kan inte avstäma kolumn {0} med något fält" 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 +4262,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 +4279,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:1129 +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:1157 msgid "Cannot use {0} in order/group by" msgstr "Kan inte använda {0} i ordna/gruppera efter" @@ -4433,9 +4397,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 +4468,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 +4501,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 +4509,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}" @@ -4600,7 +4564,7 @@ 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}" @@ -4653,7 +4617,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 +4629,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:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Rensa Tilldelning" @@ -4691,7 +4655,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,7 +4667,11 @@ 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" @@ -4755,7 +4723,7 @@ msgstr "Klicka på att Ange Dynamisk Filter" msgid "Click to Set Filters" msgstr "Klicka på att Ange Filter" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "Klicka på att sortera efter {0}" @@ -4933,7 +4901,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Fäll In Alla" @@ -5044,11 +5012,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:454 msgid "Column Width" msgstr "Kolumn Bred" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "Kolumn bredd kan inte vara noll." @@ -5117,16 +5085,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 +5092,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 +5101,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" @@ -5220,7 +5178,7 @@ msgstr "Bolag Namn" 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" @@ -5315,6 +5273,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 +5303,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:406 msgid "Configure Columns" msgstr "Konfigurera Kolumner" @@ -5371,7 +5334,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Bekräfta" @@ -5390,7 +5353,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:196 msgid "Confirm New Password" msgstr "Bekräfta Ny Lösenord" @@ -5417,7 +5380,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 {}" @@ -5544,7 +5507,6 @@ msgstr "Innehåller {0} säkerhetskorrigeringar" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5552,7 +5514,6 @@ msgstr "Innehåller {0} säkerhetskorrigeringar" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5560,24 +5521,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" @@ -5653,12 +5602,16 @@ msgstr "Kopiera fel till urklipp" msgid "Copy to Clipboard" msgstr "Kopiera till Urklipp" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "System DocType kan inte anpassas." @@ -5666,7 +5619,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:633 msgid "Correct version :" msgstr "Rätt version : " @@ -5687,10 +5640,10 @@ 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" @@ -5827,7 +5780,7 @@ 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:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Skapa Ny " @@ -5840,7 +5793,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:276 msgid "Create User Email" msgstr "Skapa E-post Konto" @@ -5852,7 +5805,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,10 +5813,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "Skapa {0}" @@ -5880,7 +5833,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:507 msgid "Create your first {0}" msgstr "Skapa {0}" @@ -5906,7 +5859,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 +5871,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}" @@ -6255,14 +6208,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "Anpassa" @@ -6406,7 +6359,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" @@ -6514,7 +6467,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:615 msgid "Data Too Long" msgstr "Data För Lång" @@ -6545,7 +6498,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:249 msgid "Database Table Row Size Limit" msgstr "Databas Tabell Rad Storlek Gräns" @@ -6683,11 +6636,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "Decimalavgränsare måste vara singel tecken" @@ -6849,11 +6802,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." @@ -6904,10 +6857,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6915,11 +6868,16 @@ msgstr "Försenad" msgid "Delete" msgstr "Ta bort" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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" @@ -6960,7 +6918,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 +6951,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Ta bort {0} Poster permanent?" @@ -7038,6 +6996,10 @@ msgstr "Borttaget Namn" msgid "Deleted all documents successfully" msgstr "Alla Dokument Borttagna" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Borttagen!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "Tar Bort {0}" @@ -7053,7 +7015,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 +7032,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:301 msgid "Delimiter must be a single character" msgstr "Avgränsare måste vara ett enda tecken" @@ -7097,7 +7059,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 +7094,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 +7114,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 +7123,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 +7206,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 +7267,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 +7284,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 +7293,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 @@ -7393,7 +7343,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 +7357,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 +7367,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 +7385,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 +7408,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,16 +7444,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "Ändra inte rubriker som är förinställda i mall" @@ -7602,7 +7550,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 +7597,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 +7610,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 +7643,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 +7657,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,19 +7719,19 @@ 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" @@ -7980,7 +7928,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:1955 msgid "Document Unlocked" msgstr "Dokument Upplåst" @@ -7988,15 +7936,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:1300 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:1299 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:1298 msgid "Document is in draft state" msgstr "Dokumentet är i utkast tillstånd" @@ -8138,13 +8086,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "Ladda ner" @@ -8200,7 +8148,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 @@ -8366,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:1776 #: 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:350 #: 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 +8332,7 @@ msgstr "ESC" msgid "Edit" msgstr "Redigera" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Redigera" @@ -8394,7 +8342,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "Redigera" @@ -8423,7 +8371,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Redigera DocType" @@ -8526,7 +8474,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 +8483,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}" @@ -8582,6 +8530,7 @@ 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' @@ -8595,6 +8544,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 @@ -8635,7 +8585,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" @@ -8766,10 +8716,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 +8784,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:278 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)" @@ -8904,7 +8854,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 +8880,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 +8973,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 +8980,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 +8992,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 +9015,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 +9028,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 +9054,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 +9074,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 +9090,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 +9106,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 +9154,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 +9224,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 +9244,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" @@ -9349,9 +9292,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "Fel i Avisering" @@ -9371,7 +9314,7 @@ 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:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Fel vid test av Avisering {0}. Fixa Mall." @@ -9524,7 +9467,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 +9475,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:2123 msgid "Execution Time: {0} sec" msgstr "Exekvering Tid: {0} sek" @@ -9558,7 +9501,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandera Alla" @@ -9591,7 +9534,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 +9564,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Export" @@ -9662,7 +9607,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Exportera Rapport: {0}" @@ -9671,11 +9616,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? " @@ -9788,7 +9733,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 +9750,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: {}" @@ -9818,7 +9763,7 @@ msgstr "Misslyckades att ansluta till server" 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}" @@ -9830,8 +9775,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 +9792,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 +9812,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 +9866,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 +9923,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:1870 #: 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 +9946,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" @@ -10063,11 +10002,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:545 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,16 +10024,16 @@ 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:454 #: 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" @@ -10118,11 +10057,11 @@ msgstr "Fält Namn {0} visas flera gånger" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Fält Namn {0} kan inte ha special tecken som {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +10084,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 @@ -10194,7 +10133,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:589 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}" @@ -10298,7 +10237,7 @@ msgstr "Filer" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10357,7 +10296,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 +10310,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 +10334,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,7 +10351,7 @@ 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}" @@ -10423,18 +10368,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}" @@ -10522,11 +10467,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" @@ -10688,7 +10633,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 +10691,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:2120 +#: 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 +10718,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 +10732,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:1752 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 +10787,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 +10847,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 +10879,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 +10976,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:1831 msgid "From Document Type" msgstr "Från DocType" @@ -11051,18 +11003,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" @@ -11161,6 +11111,12 @@ 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 msgid "Generate Tracking URL" @@ -11185,7 +11141,7 @@ msgstr "Geolocation" msgid "Geolocation Settings" msgstr "Geolokalisering Inställningar" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "Hämta Dagens Alerts" @@ -11491,11 +11447,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" @@ -11629,7 +11580,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,7 +11592,6 @@ msgstr "HH: mm: ss" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11804,6 +11753,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 @@ -11938,11 +11893,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 +11972,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:1845 msgid "Hide Tags" msgstr "Dölj Taggar" @@ -12036,7 +11986,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" @@ -12085,11 +12035,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 +12124,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12282,7 +12229,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12412,6 +12359,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 +12394,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 +12455,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:1120 msgid "Illegal SQL Query" msgstr "Ej Tillåten SQL Data förfråga" @@ -12566,11 +12521,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,11 +12547,11 @@ 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:384 msgid "Impersonate" msgstr "Efterlikna" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "Efterlikna som {0}" @@ -12626,7 +12581,7 @@ msgstr "Implicit" msgid "Import" msgstr "Importera" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "Importera" @@ -12921,7 +12876,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" @@ -12945,7 +12900,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 +12975,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:1876 msgid "Insert After" msgstr "Infoga Efter" @@ -13036,7 +12991,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 +13009,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "Installera {0} från Marknadsplats" @@ -13072,7 +13031,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" @@ -13101,7 +13060,7 @@ msgstr "Otillräckliga Behörigheter för att radera Rapport" 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" @@ -13205,9 +13164,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:849 +#: 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" @@ -13231,7 +13190,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,7 +13210,11 @@ 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" @@ -13292,7 +13255,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 +13264,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" @@ -13318,11 +13281,11 @@ msgstr "Ogiltig Utdata Format" 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:1239 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" @@ -13341,7 +13304,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" @@ -13364,7 +13327,7 @@ 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" @@ -13376,6 +13339,10 @@ msgstr "Ogiltig aggregatfunktion" msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Ogiltig alias format: {0}. Alias måste vara enkel identifierare." +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Ogiltig app" + #: frappe/database/query.py:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Ogiltig argument format: {0}. Endast citerade sträng litteraler eller enkla fältnamn är tillåtna." @@ -13392,7 +13359,7 @@ msgstr "Ogiltiga tecken i fältnamn: {0}. Endast bokstäver, siffror och underst 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" @@ -13428,19 +13395,15 @@ msgstr "Ogiltig fältformat i {0}: {1}. Använd \"field\", \"link_field.field\" 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:2199 msgid "Invalid field name {0}" msgstr "Ogiltig Fält Namn {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "Ogiltigt fältnamn: {0}" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "Ogiltig fälttyp: {0}" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Ogiltig Fält Namn '{0}' i automatisk namn" @@ -13468,12 +13431,20 @@ msgstr "Ogiltig typ av funktionsargument: {0}. Endast strängar, siffror, listor 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 +13452,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" @@ -13493,6 +13468,10 @@ msgstr "Ogiltigt omdirigering regex på rad #{}: {}" msgid "Invalid request arguments" msgstr "Ogiltiga begäran argument" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "Ogiltig roll" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "Ogiltig enkelt filterformat: {0}" @@ -13509,7 +13488,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 +13497,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:627 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 +13519,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" @@ -13679,7 +13695,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" @@ -13971,12 +13987,14 @@ msgstr "Konversation Översikt" #. 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 @@ -14249,7 +14267,7 @@ msgstr "Landskap" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Språk" @@ -14353,6 +14371,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 +14392,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" @@ -14533,7 +14551,7 @@ msgstr "Letter" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14629,20 +14647,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 +14687,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 +14701,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,6 +14832,10 @@ 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' @@ -14878,7 +14888,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:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Lista Inställningar" @@ -14919,7 +14929,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 +14938,8 @@ msgstr "Listor" msgid "Load Balancing" msgstr "Last Balansering" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Ladda Mer" @@ -14947,8 +14956,8 @@ 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 msgid "Loading" @@ -14962,7 +14971,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 +14981,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Laddar..." @@ -15033,7 +15042,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" @@ -15173,7 +15182,7 @@ msgstr "Logotyp URI" msgid "Logout" msgstr "Logga Ut" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "Logga ut Alla Sessioner" @@ -15353,7 +15362,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:509 msgid "Mandatory Information missing:" msgstr "Erfodrad Information saknas:" @@ -15373,7 +15382,7 @@ msgstr "Erfordrade fält som saknas i tabell {0}, Rad {1}" msgid "Mandatory fields required in {0}" msgstr "Erfodrade Fält saknas i {0}" -#: frappe/public/js/frappe/web_form/web_form.js: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 +15463,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" @@ -15538,7 +15545,7 @@ 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 +#: 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}" @@ -15551,16 +15558,11 @@ msgstr "Maximum" 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" @@ -15630,7 +15632,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" @@ -15696,7 +15698,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 +15730,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" @@ -15885,7 +15879,7 @@ 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" @@ -16152,7 +16146,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." @@ -16226,7 +16220,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." @@ -16267,7 +16261,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:498 #: 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,7 +16299,7 @@ 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/views/file/file_view.js:97 @@ -16321,7 +16315,7 @@ msgstr "Namn(Doctyope Namn)" msgid "Name already taken, please set a new name" msgstr "Namn redan tagen, ange ny namn" -#: frappe/model/naming.py: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 +16327,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 +16368,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 +16405,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:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navigera lista upp" @@ -16431,7 +16425,7 @@ msgstr "Navigera till huvud innehåll" msgid "Navigation Settings" msgstr "Navigation Inställningar" -#: 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 "Arbetsyta Ansvarig roll erfordras för att redigera andra användares privat arbetsyta" @@ -16481,10 +16475,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 +16483,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" @@ -16560,12 +16550,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:190 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 +16564,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 +16582,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 +16642,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:411 msgid "New {0}" msgstr "Ny {0}" @@ -16674,7 +16664,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 +16672,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 +16685,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,12 +16792,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16859,6 +16850,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 +16889,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16905,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:1744 msgid "No Permissions Specified" msgstr "Inga Behörigheter Angivna" @@ -16930,11 +16925,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:720 msgid "No Preview Available" msgstr "Ingen Förhandsgranskning Tillgänglig." -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "Ingen Skrivare är Tillgänglig." @@ -16950,7 +16945,7 @@ 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" @@ -16974,7 +16969,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:232 msgid "No alerts for today" msgstr "Inga varningar för idag" @@ -17002,19 +16997,15 @@ 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" @@ -17034,6 +17025,10 @@ 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" @@ -17106,7 +17101,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:947 msgid "No permission to read {0}" msgstr "Behörigheter saknas att läsa {0}" @@ -17134,7 +17129,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" @@ -17158,7 +17153,7 @@ msgstr "Ingen {0} Hittades" 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:497 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}." @@ -17210,7 +17205,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" @@ -17259,18 +17254,17 @@ msgstr "Ej Nollställbar" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17280,9 +17274,9 @@ msgstr "Ej Publicerad" #: 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/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 +17308,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 +17324,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:637 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,7 +17352,7 @@ 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." @@ -17367,18 +17361,18 @@ msgstr "Ej i Utvecklar Läge! Ändra site_config.json eller skapa 'Anpassad' Doc #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17407,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:399 msgid "Note: This will be shared with user." msgstr "Obs: Detta kommer att delas med användare." @@ -17437,10 +17431,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 +17479,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:542 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:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "Meddelande: användare {0} har inget mobil nummer angivet" @@ -17545,7 +17538,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,7 +17596,7 @@ 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 {}." @@ -17717,11 +17710,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." @@ -17840,7 +17833,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" @@ -17925,7 +17918,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:" @@ -17969,7 +17962,7 @@ msgstr "Endast rapporter av typ Rapport Generator kan tas bort" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Endast standard DocTypes får anpassas från Anpasning Formulär." @@ -18043,7 +18036,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 +18054,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 +18062,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Öppna List Post" @@ -18084,13 +18077,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 +18092,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 +18111,7 @@ msgstr "Öppnad" msgid "Operation" msgstr "Åtgärd" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "Operatören måste vara en av {0}" @@ -18140,7 +18137,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" @@ -18172,7 +18169,7 @@ msgstr "Tillval: Avisering kommer att skickas om detta uttryck är sant" 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 +18178,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 +18186,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." @@ -18233,8 +18230,8 @@ msgstr "Bolag Historik Huvud Rubrik" 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" @@ -18313,9 +18310,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:1796 msgid "PDF" msgstr "PDF" @@ -18356,11 +18353,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:629 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:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "PDF utskrift via \"Direkt Utskrift\" stöds inte." @@ -18532,7 +18529,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}" @@ -18576,11 +18573,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 +18586,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 +18660,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18671,7 @@ msgstr "Passiv" msgid "Password" msgstr "Lösenord" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "Lösenord skickat via E-post" @@ -18687,7 +18684,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:896 msgid "Password cannot be filtered" msgstr "Lösenord kan inte filtreras" @@ -18704,6 +18701,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 +18713,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:1091 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" @@ -18724,7 +18725,7 @@ msgstr "Lösenord angiven" msgid "Password size exceeded the maximum allowed size" msgstr "Lösenord längd överskred maximum tillåten längd." -#: frappe/core/doctype/user/user.py: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 +18733,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:210 msgid "Passwords do not match!" msgstr "Lösenord stämmer inte!" @@ -18802,10 +18803,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" @@ -18941,16 +18944,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "Behörighet Fel" @@ -19038,8 +19041,8 @@ 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/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 +19102,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 +19114,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:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "Be Administratör att verifiera din registrering" @@ -19131,10 +19134,6 @@ 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: {}" @@ -19143,7 +19142,7 @@ msgstr "Kontrollera filter värden angivna för Översikt Panel Diagram: {}" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Kontrollera värde för uppsättning 'Hämta från' för fält {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1072 msgid "Please check your email for verification" msgstr "Kontrollera din E-post för verifiering" @@ -19175,7 +19174,7 @@ msgstr "Klicka på följande länk för att ange ny lösenord" msgid "Please confirm your action to {0} this document." msgstr "Bekräfta åtgärd till {0} detta dokument." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "Kontakta System Ansvarig för att installera rätt version." @@ -19205,8 +19204,8 @@ msgstr "Aktivera minst en social inloggning nyckel eller LDAP eller Logga in med #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19245,7 +19244,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,11 +19281,12 @@ 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." @@ -19298,7 +19298,7 @@ msgstr "Kontrollera att Referens Dokument för Konversation inte är cirkulärt 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:548 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 +19314,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:1711 msgid "Please save the report first" msgstr "Spara Rapport" @@ -19350,7 +19350,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 +19362,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:1152 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,7 +19388,7 @@ 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:562 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" @@ -19400,7 +19400,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" @@ -19436,23 +19436,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 +19473,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." @@ -19563,14 +19563,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potentiell farligt innehåll i sträng litteral: {0}" @@ -19586,7 +19578,7 @@ 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:1401 msgid "Precision should be between 1 and 6" msgstr "Precision ska vara mellan 1 och 6" @@ -19642,7 +19634,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" @@ -19677,13 +19669,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 +19697,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 @@ -19729,7 +19714,7 @@ msgstr "Föregående " 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 +19760,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Utskrift" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Utskrift" @@ -19805,8 +19790,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19913,7 +19898,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19962,11 +19947,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:843 msgid "Printer" msgstr "Skrivare" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "Skrivare Mappning" @@ -19976,11 +19961,11 @@ msgstr "Skrivare Mappning" msgid "Printer Name" msgstr "Skrivare Namn" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "Skrivare Inställningar" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "Skrivare Mappning inte angiven" @@ -20042,7 +20027,7 @@ msgstr "Fortsätt" msgid "Proceed Anyway" msgstr "Fortsätt Ändå" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "Behandlar" @@ -20068,9 +20053,9 @@ 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" @@ -20156,24 +20141,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 +20162,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 +20251,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" @@ -20294,8 +20266,8 @@ 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:" +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 +20316,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 +20416,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:309 msgid "Quoting must be between 0 and 3" msgstr "Citering måste vara mellan 0 och 3" @@ -20481,12 +20453,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 @@ -20523,7 +20489,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 +20506,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 +20563,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 +20578,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" @@ -20679,7 +20640,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 +20651,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 +20691,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 +20708,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" @@ -21001,15 +20975,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Uppdatera" @@ -21034,18 +21008,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:534 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:374 #: 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" @@ -21222,7 +21196,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!" @@ -21425,7 +21399,7 @@ msgstr "Rapport Ansvarig" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "Rapport Namn" @@ -21463,7 +21437,7 @@ msgstr "Rapport Vy" msgid "Report bug" msgstr "Rapportera Fel" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "Rapport kan inte anges för Enskilda Typer" @@ -21489,20 +21463,20 @@ 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:615 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:1994 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}" @@ -21525,7 +21499,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" @@ -21655,11 +21629,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "Återställ LDAP Lösenord" @@ -21667,11 +21641,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:235 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:168 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 +21680,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:433 msgid "Reset to default" msgstr "Återställ Standard" @@ -21744,6 +21718,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 +21728,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 +21786,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" @@ -21868,9 +21838,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 +21879,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 +21893,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 @@ -21972,7 +21942,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:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Roll Behörigheter Hanterare" @@ -22015,6 +21985,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 +21995,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 +22032,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 +22052,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 +22063,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 @@ -22123,12 +22091,12 @@ msgstr "Sökväg: Exempel \"/app\"" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 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" @@ -22136,7 +22104,7 @@ msgstr "Rad # {0}: Användare som inte är administratör kan inte ange roll {1} 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" @@ -22164,7 +22132,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,25 +22140,25 @@ 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:353 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:342 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 " @@ -22286,7 +22254,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 +22332,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 +22360,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22382,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:1735 msgid "Save As" msgstr "Spara Som" @@ -22431,7 +22395,7 @@ 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:1951 msgid "Save Report" msgstr "Spara Rapport" @@ -22460,7 +22424,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 +22503,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" @@ -22707,7 +22671,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" @@ -22816,7 +22780,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 +22827,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22871,12 +22835,12 @@ 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:497 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" @@ -22887,7 +22851,7 @@ msgstr "Välj Bilagor" 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" @@ -22951,12 +22915,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:489 #: 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" @@ -23002,8 +22969,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:598 msgid "Select Network Printer" msgstr "Välj Nätverksskrivare" @@ -23071,11 +23038,11 @@ msgstr "Välj fält för att redigera dess egenskaper." msgid "Select a group node first." msgstr "Välj Grupp nod." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 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 +23072,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Välj flera List Artiklar" @@ -23145,7 +23112,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 +23296,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:1946 msgid "Sender Field should have Email in options" msgstr "Avsändare Fält ska ha E-post i Alternativ" @@ -23423,7 +23390,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}" @@ -23452,7 +23419,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." @@ -23557,7 +23524,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:2104 msgid "Set Level" msgstr "Ange Nivå" @@ -23603,7 +23570,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 +23578,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:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Ange Användar Behörigheter" @@ -23776,14 +23743,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 +23761,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "Automatisk E-post Rapport" @@ -23869,11 +23831,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 +23850,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 +23902,7 @@ msgstr "Visa Dokument" msgid "Show Error" msgstr "Visa Fel" -#: frappe/public/js/frappe/form/layout.js:579 +#: 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 +24030,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:1845 msgid "Show Tags" msgstr "Visa Taggar" @@ -24095,7 +24047,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 +24087,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 +24135,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 +24165,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 +24200,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" @@ -24312,7 +24260,7 @@ msgstr "Enkel Python Uttryck, Exempel: Status == 'Open' and type == 'Bug'" msgid "Simultaneous Sessions" msgstr "Samtidiga Sessioner" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "Enskild DocTypes kan inte anpassas." @@ -24545,11 +24493,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,13 +24528,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24594,6 +24541,10 @@ msgstr "Sortering Fält {0} måste vara giltig fält namn" 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 +24571,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" @@ -24681,7 +24638,7 @@ msgstr "Standard" 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" @@ -24737,8 +24694,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 +24703,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 @@ -24819,7 +24776,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 +24832,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 +24857,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 +24865,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 +24903,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:454 msgid "Sticky" msgstr "Klistrad" @@ -24974,6 +24933,10 @@ msgstr "Lagring Användning Efter Tabeller" msgid "Store Attached PDF Document" msgstr "Spara Bifogade PDF dokument" +#: frappe/core/doctype/user/user.js:490 +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." @@ -25068,7 +25031,7 @@ msgstr "Ämne" msgid "Subject Field" msgstr "Ämne Fält" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 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" @@ -25093,7 +25056,7 @@ msgstr "Godkännande Kö" msgid "Submit" msgstr "Godkänn" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Godkänn" @@ -25103,7 +25066,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Godkänn" @@ -25127,7 +25090,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 +25102,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 +25114,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Godkänn {0} dokument?" @@ -25160,11 +25123,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 +25150,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 +25164,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:1171 #: 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 +25206,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 +25257,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 +25379,7 @@ msgstr "Synkroniserar" msgid "Syncing {0} of {1}" msgstr "Synkroniserar {0} av {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "Syntaxfel" @@ -25545,6 +25502,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 +25585,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 +25659,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 +25668,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,7 +25690,7 @@ msgstr "Tabell FlerVal" msgid "Table Trimmed" msgstr "Tabell Optimerad" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "Tabell Uppdaterad" @@ -25777,11 +25736,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 +25809,7 @@ msgstr "Mall Varningar" msgid "Templates" msgstr "Mallar" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "Tillfälligt Inaktiverad" @@ -25917,7 +25883,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 +25907,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:1193 msgid "The CSV format is case sensitive" msgstr "CSV format är skiftläge känslig" @@ -25952,7 +25918,7 @@ 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" @@ -25960,7 +25926,7 @@ msgstr "Villkor '{0}' är ogiltig" 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 +25967,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 +25975,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:685 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." @@ -26111,11 +26077,11 @@ msgstr "Projekt Nummer erhålln från Google Cloud Console under " -#: frappe/core/doctype/user/user.py:993 +#: 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" @@ -26152,7 +26118,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}" @@ -26201,7 +26167,7 @@ msgstr "Det finns {0} med samma filter redan i kö:" msgid "There can be only 9 Page Break fields in a Web Form" msgstr "Det kan bara finnas nio sidbrytning fält i webbformulär" -#: frappe/core/doctype/doctype/doctype.py: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,6 +26179,10 @@ 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." @@ -26245,11 +26215,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" @@ -26337,7 +26307,7 @@ msgstr "Detta diagram kommer att vara tillgängligt för alla användare om dett msgid "This doctype has no orphan fields to trim" msgstr "Denna doctype har inga övergivna fält att trimma" -#: frappe/core/doctype/doctype/doctype.py: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." @@ -26402,7 +26372,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 +26391,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:2180 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 +26415,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 +26433,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:423 msgid "This may get printed on multiple pages" msgstr "Detta kan skrivas ut på flera sidor" @@ -26516,8 +26480,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 +26512,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:1253 msgid "Throttled" msgstr "Strypt" @@ -26700,11 +26664,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" @@ -26753,9 +26717,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 +26741,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 +26763,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" @@ -26958,7 +26916,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 +26932,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Växla Sidofält" @@ -27024,7 +26982,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 +26998,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:1041 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 +27060,10 @@ msgstr "Topp Höger" msgid "Topic" msgstr "Ämne" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "Totalt" @@ -27148,18 +27106,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" @@ -27260,6 +27218,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 +27237,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:2235 msgid "Translate Data" msgstr "Översätt Data" @@ -27285,7 +27248,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 +27332,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" @@ -27719,8 +27682,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 +27698,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" @@ -27809,7 +27771,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:427 msgid "Update" msgstr "Uppdatera" @@ -27885,7 +27847,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 +27855,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 🎉" @@ -28066,7 +28028,7 @@ msgstr "Användning av funktion {0} i fält är begränsad" 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 +28049,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 +28060,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 +28075,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 +28089,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 +28106,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 +28140,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 +28204,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 +28223,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 +28246,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 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:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Användare Behörigheter" @@ -28303,7 +28264,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 +28332,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" @@ -28399,7 +28366,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 +28387,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:1382 msgid "User {0} impersonated as {1}" msgstr "Användare {0} efterliknade som {1}" @@ -28449,7 +28416,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 +28500,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" @@ -28605,7 +28572,7 @@ 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:612 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" @@ -28651,7 +28618,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 +28631,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 +28693,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:156 msgid "View Doctype Permissions" msgstr "Visa Doctype Behörigheter" @@ -28756,7 +28715,7 @@ msgstr "Visa Lista" msgid "View Log" msgstr "Visa Logg" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Visa Behöriga Dokument" @@ -28803,7 +28762,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" @@ -28880,7 +28839,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" @@ -29069,7 +29028,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 +29041,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 +29084,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 +29301,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" @@ -29443,7 +29393,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 +29419,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 +29431,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,7 +29470,7 @@ 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" @@ -29581,11 +29546,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." @@ -29608,7 +29573,7 @@ msgstr "Skriva" 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,7 +29592,7 @@ 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" @@ -29685,14 +29650,15 @@ 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/website/doctype/help_article/templates/help_article.html:25 @@ -29769,11 +29735,11 @@ msgstr "Du har inte behörighet att exportera {} doctype" msgid "You are not allowed to print this report" msgstr "Du har inte behörighet att skriva ut denna rapport" -#: frappe/public/js/frappe/views/communication.js: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:605 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,7 +29763,7 @@ msgstr "Du har inte tillåtelse att komma åt denna resurs. Logga in för att ko msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Du följer nu detta dokument och kommer att få dagliga uppdateringar via e-post. Ändra detta i Användare Inställningar." -#: frappe/core/doctype/installed_applications/installed_applications.py: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." @@ -29823,13 +29789,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." @@ -29866,7 +29836,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." @@ -29896,11 +29866,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "Du kan inte ange 'Översättningbar' för fält {0}" @@ -29918,7 +29888,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Du kan inte ändra 'Skrivskyddad' för fält {0}" @@ -29969,7 +29939,7 @@ msgstr "Du har inte behörighet att slutföra åtgärd" 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:878 msgid "You do not have permission to access {0}: {1}." msgstr "Du har inte behörighet att komma åt {0}: {1}." @@ -29981,7 +29951,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "Du har inte behörighet att komma åt {0} DocType." @@ -29993,19 +29963,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:245 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 +29983,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 +30003,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:501 msgid "You haven't created a {0} yet" msgstr "Ingen {0} skapad än" @@ -30054,11 +30020,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:804 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:645 msgid "You must login to submit this form" msgstr "Du måste logga in för att godkänna detta formulär" @@ -30090,13 +30056,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." @@ -30165,10 +30131,22 @@ msgstr "Du slutade följa detta dokument" msgid "You viewed this" msgstr "Du visade detta" -#: frappe/public/js/frappe/desk.js:553 +#: 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." @@ -30222,10 +30200,18 @@ 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/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" @@ -30330,7 +30316,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 +30461,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 +30523,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 +30538,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" @@ -30615,11 +30596,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 +30619,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" @@ -30831,19 +30807,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:301 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:300 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:302 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:299 msgid "since yesterday" msgstr "sedan igår" @@ -30896,6 +30872,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 +30903,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 +30917,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:403 msgid "via Notification" msgstr "via Avisering" @@ -30970,10 +30950,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:635 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 +30986,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 +31016,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:486 +#: 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 +31052,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" @@ -31093,7 +31082,6 @@ msgstr "{0} Rapport" 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 +31106,7 @@ msgstr "{0} Arbetsyta" msgid "{0} added" msgstr "{0} tillagd" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: 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" @@ -31197,11 +31185,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." @@ -31268,7 +31252,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,7 +31261,7 @@ 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" @@ -31285,15 +31269,15 @@ msgstr "{0} är erfordrad fält" msgid "{0} is a not a valid zip file" msgstr "{0} är inte giltig zip fil" -#: frappe/core/doctype/doctype/doctype.py: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 +31286,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}" @@ -31354,8 +31338,8 @@ msgstr "{0} är inte giltigt Cron uttryck" 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} är inte giltig E-post" @@ -31363,15 +31347,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:174 msgid "{0} is not a valid Name" msgstr "{0} är inte giltigt Namn" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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." @@ -31391,19 +31375,23 @@ msgstr "{0} är inte ett giltigt rapport format. Rapport Format ska vara en av f 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" @@ -31411,31 +31399,31 @@ msgstr "{0} är inte angiven" msgid "{0} is now default print format for {1} doctype" msgstr "{0} är nu standard utskrift format för {1} DocType" -#: frappe/public/js/frappe/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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} erfordras" -#: 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:1835 msgid "{0} items selected" msgstr "{0} artiklar valda" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} efterliknade som du. De gav detta skäl: {1}" @@ -31468,7 +31456,7 @@ msgstr "{0} minuter sedan" msgid "{0} months ago" msgstr "{0} månader sedan" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} måste vara efter {1}" @@ -31504,7 +31492,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 +31505,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} av {1} ({2} rader med underordnade)" @@ -31567,11 +31555,11 @@ msgstr "{0} tog bort sin tilldelning." msgid "{0} role does not have permission on any doctype" msgstr "{0} roll har inte tillstånd på någon doctype" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} rad #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "{0} rad #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} sparad" @@ -31591,11 +31579,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 +31596,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" @@ -31627,7 +31615,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:254 msgid "{0} updated" msgstr "{0} uppdaterat" @@ -31671,7 +31659,7 @@ msgstr "{0} {1} finns redan" 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" @@ -31703,75 +31691,75 @@ msgstr "{0}/{1} komplett | Lämna denna flik öppen tills den är klar." 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:1801 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:1819 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:1817 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:1796 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:1803 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:1799 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:1823 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:1756 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:1770 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 +31767,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:1785 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 +31775,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}" @@ -31804,7 +31792,7 @@ msgstr "{0}: {1} är satt på tillstånd {2}" 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 +31816,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 +31824,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:2525 msgid "{} Invalid python code on line {}" msgstr "{} Ogiltig python kod på rad {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "{} Möjligen ogiltig python kod.
    {}" diff --git a/frappe/locale/th.po b/frappe/locale/th.po index 2fe8ca9cc7..422d87a2fd 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = จริง & 0 = เท็จ" @@ -144,10 +140,6 @@ msgstr "1 เหตุการณ์ Google Calendar ซิงค์แล้ 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 msgid "1 day ago" msgstr "1 วันที่ผ่านมา" @@ -245,6 +237,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 ที่ถูกต้อง" @@ -479,7 +478,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 +545,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,10 +554,6 @@ 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 "" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -576,7 +571,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 +670,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:452 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 +699,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +723,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:459 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 +770,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 @@ -856,7 +873,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "" @@ -965,7 +982,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:501 #: 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 +993,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1005,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,10 +1038,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1100,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 +1133,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "" @@ -1248,7 +1265,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 "" @@ -1356,7 +1373,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,11 +1400,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1425,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 "" @@ -1564,7 +1581,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 +1641,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 +1662,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 +1710,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 +1942,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 +1950,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 "" @@ -2122,10 +2134,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 +2210,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 +2223,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2271,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 +2304,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,7 +2336,11 @@ 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 "คุณแน่ใจหรือไม่ว่าต้องการละทิ้งการเปลี่ยนแปลง?" @@ -2390,7 +2416,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2479,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 +2553,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2636,7 +2673,7 @@ 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 "" @@ -2667,6 +2704,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 +2725,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 +2839,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 +2851,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 +2904,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 +2952,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 +2966,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 +3237,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 +3355,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 +3386,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 +3482,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,7 +3539,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "" @@ -3588,7 +3562,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 +3574,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 +3704,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 +3754,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 @@ -3848,7 +3807,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 "" @@ -3874,12 +3833,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3857,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3956,7 +3918,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 "" @@ -3976,11 +3938,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,7 +3993,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 +4001,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 "" @@ -4068,7 +4030,7 @@ 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 "" @@ -4080,11 +4042,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4104,7 +4066,7 @@ msgstr "" 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 +4074,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 +4091,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:1129 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4247,7 +4209,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 +4279,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 +4312,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 +4320,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,7 +4375,7 @@ 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 "" @@ -4466,7 +4428,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 +4440,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4466,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,7 +4478,11 @@ 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 "" @@ -4568,7 +4534,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4712,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4857,11 +4823,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4930,16 +4896,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 +4903,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 +4912,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 "" @@ -5033,7 +4989,7 @@ msgstr "" 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 "" @@ -5128,6 +5084,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 +5114,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:406 msgid "Configure Columns" msgstr "" @@ -5182,7 +5143,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5162,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5189,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 "" @@ -5355,7 +5316,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5363,7 +5323,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5371,24 +5330,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 "" @@ -5464,12 +5411,16 @@ msgstr "คัดลอกข้อผิดพลาดไปยังคลิ msgid "Copy to Clipboard" msgstr "คัดลอกไปยังคลิปบอร์ด" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "ไม่สามารถปรับแต่ง DocTypes หลักได้" @@ -5477,7 +5428,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:633 msgid "Correct version :" msgstr "เวอร์ชันที่ถูกต้อง:" @@ -5498,10 +5449,10 @@ 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 "" @@ -5638,7 +5589,7 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" @@ -5651,7 +5602,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "" @@ -5663,7 +5614,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,10 +5622,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5642,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:507 msgid "Create your first {0}" msgstr "" @@ -5717,7 +5668,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 +5680,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 "" @@ -6066,14 +6017,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "ปรับแต่ง" @@ -6217,7 +6168,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 "แดชบอร์ด" @@ -6325,7 +6276,7 @@ msgstr "บันทึกการนำเข้าข้อมูล" msgid "Data Import Template" msgstr "แม่แบบการนำเข้าข้อมูล" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "ข้อมูลยาวเกินไป" @@ -6356,7 +6307,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:249 msgid "Database Table Row Size Limit" msgstr "ขีดจำกัดขนาดแถวของตารางฐานข้อมูล" @@ -6494,11 +6445,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "ตัวคั่นทศนิยมต้องเป็นตัวอักษรเดียว" @@ -6660,11 +6611,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} ต้องอยู่ในรายการตัวเลือก" @@ -6715,10 +6666,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6726,11 +6677,16 @@ msgstr "ล่าช้า" msgid "Delete" msgstr "ลบ" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "ลบบัญชี" @@ -6771,7 +6727,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 +6760,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "ลบ {0} รายการอย่างถาวร?" @@ -6849,6 +6805,10 @@ msgstr "ลบชื่อแล้ว" msgid "Deleted all documents successfully" msgstr "ลบเอกสารทั้งหมดสำเร็จแล้ว" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "ลบแล้ว!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "กำลังลบ {0}" @@ -6864,7 +6824,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 +6841,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:301 msgid "Delimiter must be a single character" msgstr "ตัวคั่นต้องเป็นตัวอักษรเดียว" @@ -6908,7 +6868,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 +6903,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 +6923,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 +6932,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 +7015,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 +7076,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 +7093,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 +7102,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 +7152,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 +7166,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 +7176,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 +7194,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 +7217,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,16 +7253,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "" @@ -7410,7 +7356,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 +7403,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 +7416,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 +7449,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 +7463,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,19 +7525,19 @@ 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 "" @@ -7788,7 +7734,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:1955 msgid "Document Unlocked" msgstr "เอกสารถูกปลดล็อก" @@ -7796,15 +7742,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:1300 msgid "Document has been cancelled" msgstr "เอกสารถูกยกเลิกแล้ว" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "เอกสารถูกส่งแล้ว" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "เอกสารอยู่ในสถานะร่าง" @@ -7946,13 +7892,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "ดาวน์โหลด" @@ -8174,17 +8120,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:1776 #: 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:350 #: 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 +8138,7 @@ msgstr "" msgid "Edit" msgstr "แก้ไข" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "แก้ไข" @@ -8202,7 +8148,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "แก้ไข" @@ -8231,7 +8177,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "แก้ไข DocType" @@ -8334,7 +8280,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 +8289,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}" @@ -8390,6 +8336,7 @@ 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' @@ -8403,6 +8350,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 @@ -8443,7 +8391,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 "เพิ่มบัญชีอีเมลหลายครั้ง" @@ -8574,10 +8522,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 +8590,11 @@ msgstr "อีเมลถูกทำเครื่องหมายว่า msgid "Email has been moved to trash" msgstr "อีเมลถูกย้ายไปที่ถังขยะ" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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} (ยกเลิกการสมัคร / ปิดใช้งาน)" @@ -8712,7 +8660,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 +8686,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 +8779,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 +8786,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 +8798,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 +8820,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 +8833,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 +8859,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 +8879,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 +8895,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 +8911,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 +8959,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 +9029,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 +9049,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 "ข้อผิดพลาด" @@ -9156,9 +9097,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "ข้อผิดพลาดในการแจ้งเตือน" @@ -9178,7 +9119,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "ข้อผิดพลาดขณะเชื่อมต่อกับบัญชีอีเมล {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "ข้อผิดพลาดขณะประเมินการแจ้งเตือน {0} โปรดแก้ไขแม่แบบของคุณ" @@ -9331,7 +9272,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 +9280,7 @@ msgstr "กำลังดำเนินการโค้ด" msgid "Executing..." msgstr "กำลังดำเนินการ..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "เวลาการดำเนินการ: {0} วินาที" @@ -9365,7 +9306,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "ขยายทั้งหมด" @@ -9398,7 +9339,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 +9369,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "ส่งออก" @@ -9469,7 +9412,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "ส่งออกรายงาน: {0}" @@ -9478,11 +9421,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} ทั้งหมดหรือไม่?" @@ -9595,7 +9538,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 +9555,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 "" @@ -9625,7 +9568,7 @@ msgstr "" 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 "" @@ -9637,8 +9580,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 +9597,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 +9617,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 +9671,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 +9728,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:1870 #: 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 +9751,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9870,11 +9807,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,16 +9829,16 @@ 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:454 #: 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 "" @@ -9925,11 +9862,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9889,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 @@ -10001,7 +9938,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10105,7 +10042,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10164,7 +10101,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 +10115,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 +10139,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,7 +10156,7 @@ 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 "" @@ -10230,18 +10173,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 "" @@ -10329,11 +10272,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 "การพับต้องมาก่อนการแบ่งส่วน" @@ -10495,7 +10438,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 +10496,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:2120 +#: 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 +10523,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 +10537,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "สำหรับ {0} ที่ระดับ {1} ใน {2} ในแถว {3}" @@ -10655,7 +10592,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 +10652,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 +10684,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 +10781,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:1831 msgid "From Document Type" msgstr "จากประเภทเอกสาร" @@ -10858,18 +10808,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 "เต็มหน้า" @@ -10968,6 +10916,12 @@ 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 msgid "Generate Tracking URL" @@ -10992,7 +10946,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "" @@ -11298,11 +11252,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" @@ -11436,7 +11385,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 @@ -11449,7 +11397,6 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11611,6 +11558,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 @@ -11745,11 +11698,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 +11777,7 @@ msgstr "ซ่อนแถบด้านข้าง เมนู และค msgid "Hide Standard Menu" msgstr "ซ่อนเมนูมาตรฐาน" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "ซ่อนแท็ก" @@ -11843,7 +11791,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 +11840,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 +11929,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "รหัส" @@ -12089,7 +12034,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12219,6 +12164,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 +12199,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 +12260,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:1120 msgid "Illegal SQL Query" msgstr "คำสั่ง SQL ไม่ถูกต้อง" @@ -12373,11 +12326,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,11 +12352,11 @@ 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:384 msgid "Impersonate" msgstr "แอบอ้าง" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "แอบอ้างเป็น {0}" @@ -12433,7 +12386,7 @@ msgstr "โดยนัย" msgid "Import" msgstr "นำเข้า" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "นำเข้า" @@ -12728,7 +12681,7 @@ msgstr "การกำหนดค่าไม่ถูกต้อง" msgid "Incorrect URL" msgstr "URL ไม่ถูกต้อง" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "ผู้ใช้หรือรหัสผ่านไม่ถูกต้อง" @@ -12752,7 +12705,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 +12780,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:1876 msgid "Insert After" msgstr "แทรกหลังจาก" @@ -12843,7 +12796,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 +12814,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "ติดตั้ง {0} จาก Marketplace" @@ -12879,7 +12836,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 "แอปที่ติดตั้ง" @@ -12908,7 +12865,7 @@ msgstr "สิทธิ์ไม่เพียงพอสำหรับกา 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 +12969,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:849 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13038,7 +12995,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,7 +13015,11 @@ 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 "ชื่อฟิลด์ไม่ถูกต้อง" @@ -13099,7 +13060,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 +13069,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 "ตัวเลือกไม่ถูกต้อง" @@ -13125,11 +13086,11 @@ msgstr "รูปแบบผลลัพธ์ไม่ถูกต้อง" 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:1239 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" @@ -13148,7 +13109,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 "ชื่อฟิลด์ตารางไม่ถูกต้อง" @@ -13171,7 +13132,7 @@ 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 ไม่ถูกต้อง" @@ -13183,6 +13144,10 @@ msgstr "ฟังก์ชันการรวมไม่ถูกต้อง 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13199,7 +13164,7 @@ msgstr "" 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 "คอลัมน์ไม่ถูกต้อง" @@ -13235,19 +13200,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "ชื่อฟิลด์ไม่ถูกต้อง {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน autoname" @@ -13275,12 +13236,20 @@ msgstr "" 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 +13257,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 "เนื้อหาไม่ถูกต้องหรือเสียหายสำหรับการนำเข้า" @@ -13300,6 +13273,10 @@ msgstr "รีไดเรกต์ regex ไม่ถูกต้องใน msgid "Invalid request arguments" msgstr "อาร์กิวเมนต์คำขอไม่ถูกต้อง" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13316,7 +13293,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 +13302,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:627 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 +13324,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 "" @@ -13486,7 +13500,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 "ฟิลด์ที่เผยแพร่ต้องเป็นชื่อฟิลด์ที่ถูกต้อง" @@ -13778,12 +13792,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 @@ -14056,7 +14072,7 @@ msgstr "แนวนอน" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "ภาษา" @@ -14160,6 +14176,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 +14197,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" @@ -14340,7 +14356,7 @@ msgstr "จดหมาย" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14436,20 +14452,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 +14492,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 +14506,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,6 +14637,10 @@ 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' @@ -14685,7 +14693,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14734,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 +14743,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,8 +14761,8 @@ 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 msgid "Loading" @@ -14769,7 +14776,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 +14786,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14847,7 @@ msgstr "เข้าสู่ระบบเพื่อเข้าถึงห msgid "Log out" msgstr "ออกจากระบบ" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "ออกจากระบบแล้ว" @@ -14980,7 +14987,7 @@ msgstr "" msgid "Logout" msgstr "ออกจากระบบ" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "ออกจากระบบทุกเซสชัน" @@ -15160,7 +15167,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:509 msgid "Mandatory Information missing:" msgstr "ข้อมูลที่จำเป็นหายไป:" @@ -15180,7 +15187,7 @@ msgstr "ฟิลด์ที่จำเป็นในตาราง {0}, แ 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 +15268,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 +15350,7 @@ msgstr "" msgid "Max auto email report per user" 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 "ความกว้างสูงสุดสำหรับประเภทสกุลเงินคือ 100px ในแถว {0}" @@ -15358,16 +15363,11 @@ msgstr "สูงสุด" 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} แถว" @@ -15437,7 +15437,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 "การรวมสามารถทำได้เฉพาะระหว่างกลุ่มถึงกลุ่มหรือโหนดใบถึงโหนดใบ" @@ -15503,7 +15503,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 +15535,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 "ชื่อเรื่องเมตา" @@ -15692,7 +15684,7 @@ msgstr "พลาด" msgid "Missing DocType" msgstr "DocType ที่หายไป" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "ฟิลด์ที่หายไป" @@ -15959,7 +15951,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 "รหัสผ่านของคุณอาจยาวเกินไป" @@ -16033,7 +16025,7 @@ msgstr "นาง" msgid "Ms" msgstr "นางสาว" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "ไม่อนุญาตให้มีโหนดรากหลายโหนด" @@ -16074,7 +16066,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:498 #: 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,7 +16104,7 @@ 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/views/file/file_view.js:97 @@ -16128,7 +16120,7 @@ msgstr "ชื่อ (ชื่อเอกสาร)" 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 +16132,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 +16171,7 @@ msgstr "กฎการตั้งชื่อ" msgid "Naming Series" msgstr "ชุดการตั้งชื่อ" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "ชุดการตั้งชื่อเป็นสิ่งจำเป็น" @@ -16216,12 +16208,12 @@ msgstr "แม่แบบแถบนำทาง" msgid "Navbar Template Values" msgstr "ค่าของแม่แบบแถบนำทาง" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "เลื่อนรายการขึ้น" @@ -16236,7 +16228,7 @@ msgstr "ไปยังเนื้อหาหลัก" msgid "Navigation Settings" 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 "ต้องการบทบาทผู้จัดการพื้นที่ทำงานเพื่อแก้ไขพื้นที่ทำงานส่วนตัวของผู้ใช้อื่น" @@ -16286,10 +16278,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 +16286,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 "รูปแบบการพิมพ์ที่กำหนดเองใหม่" @@ -16365,12 +16353,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:190 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 +16367,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 +16385,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 +16443,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:411 msgid "New {0}" msgstr "{0} ใหม่" @@ -16477,7 +16465,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 +16473,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 +16486,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,12 +16593,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16662,6 +16651,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 +16690,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16706,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16726,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "" @@ -16753,7 +16746,7 @@ 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 "" @@ -16777,7 +16770,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "" @@ -16805,19 +16798,15 @@ 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 "" @@ -16837,6 +16826,10 @@ 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 "ไม่มีบันทึกที่ล้มเหลว" @@ -16909,7 +16902,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:947 msgid "No permission to read {0}" msgstr "ไม่มีสิทธิ์ในการอ่าน {0}" @@ -16937,7 +16930,7 @@ msgstr "จะไม่มีการส่งออกบันทึก" msgid "No rows" msgstr "ไม่มีแถว" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "ไม่มีหัวข้อ" @@ -16961,7 +16954,7 @@ msgstr "ไม่พบ {0}" msgid "No {0} found" msgstr "ไม่พบ {0}" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "ไม่พบ {0} ที่ตรงกับตัวกรอง ล้างตัวกรองเพื่อดู {0} ทั้งหมด" @@ -17013,7 +17006,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 "ไม่อนุญาต" @@ -17062,18 +17055,17 @@ msgstr "ไม่สามารถเป็นค่าว่างได้" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17083,9 +17075,9 @@ msgstr "ไม่ได้เผยแพร่" #: 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/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 +17109,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 +17125,11 @@ msgstr "ไม่ใช้งาน" msgid "Not allowed for {0}: {1}" msgstr "ไม่อนุญาตสำหรับ {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17153,7 @@ 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'" @@ -17170,18 +17162,18 @@ msgstr "ไม่ได้อยู่ในโหมดนักพัฒนา #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17208,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:399 msgid "Note: This will be shared with user." msgstr "หมายเหตุ: สิ่งนี้จะถูกแชร์กับผู้ใช้" @@ -17240,10 +17232,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 +17280,15 @@ msgstr "เอกสารที่สมัครรับการแจ้ง msgid "Notification sent to" msgstr "การแจ้งเตือนถูกส่งไปยัง" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "การแจ้งเตือน: ลูกค้า {0} ไม่มีการตั้งหมายเลขมือถือ" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "การแจ้งเตือน: ผู้ใช้ {0} ไม่มีการตั้งหมายเลขมือถือ" @@ -17348,7 +17339,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,7 +17397,7 @@ 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 "จำนวนฟิลด์ไฟล์แนบมากกว่า {} ขีดจำกัดอัปเดตเป็น {}" @@ -17520,11 +17511,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 +17634,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 "" @@ -17728,7 +17719,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 "ตัวเลือกที่อนุญาตสำหรับฟิลด์ข้อมูลคือ:" @@ -17772,7 +17763,7 @@ msgstr "สามารถลบรายงานประเภท Report Buil 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "อนุญาตให้ปรับแต่งเฉพาะ DocTypes มาตรฐานจากฟอร์มที่กำหนดเอง" @@ -17846,7 +17837,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 +17855,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 +17863,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17878,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 +17893,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 +17912,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "ผู้ปฏิบัติงานต้องเป็นหนึ่งใน {0}" @@ -17943,7 +17938,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} ไม่ใช่ตารางลูก" @@ -17975,7 +17970,7 @@ msgstr "ไม่บังคับ: การแจ้งเตือนจะ 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 +17979,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 +17987,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} ก่อนตั้งค่าค่าเริ่มต้น" @@ -18036,8 +18031,8 @@ msgstr "หัวข้อประวัติองค์กร" 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 "มูลค่าต้นฉบับ" @@ -18116,9 +18111,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:1796 msgid "PDF" msgstr "" @@ -18159,11 +18154,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:629 msgid "PDF generation may not work as expected." msgstr "การสร้าง PDF อาจไม่ทำงานตามที่คาดไว้" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18330,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}" @@ -18379,11 +18374,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 +18387,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 +18461,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18472,7 @@ msgstr "ไม่กระตือรือร้น" msgid "Password" msgstr "รหัสผ่าน" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "ส่งอีเมลรหัสผ่านแล้ว" @@ -18490,7 +18485,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:896 msgid "Password cannot be filtered" msgstr "ไม่สามารถกรองรหัสผ่านได้" @@ -18507,6 +18502,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 +18514,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:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "คำแนะนำการรีเซ็ตรหัสผ่านถูกส่งไปยังอีเมลของ {} แล้ว" @@ -18527,7 +18526,7 @@ msgstr "ตั้งค่ารหัสผ่านแล้ว" 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 +18534,7 @@ msgstr "ขนาดรหัสผ่านเกินขนาดสูงส msgid "Passwords do not match" msgstr "รหัสผ่านไม่ตรงกัน" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "รหัสผ่านไม่ตรงกัน!" @@ -18605,10 +18604,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 "" @@ -18744,16 +18745,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "ข้อผิดพลาดในการอนุญาต" @@ -18841,8 +18842,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "เลือกคอลัมน์" @@ -18902,11 +18903,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 +18915,7 @@ msgstr "โปรดเพิ่มหัวข้อในอีเมลขอ msgid "Please add a valid comment." msgstr "โปรดเพิ่มความคิดเห็นที่ถูกต้อง" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "โปรดขอให้ผู้ดูแลระบบของคุณตรวจสอบการลงทะเบียนของคุณ" @@ -18934,10 +18935,6 @@ 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 "โปรดตรวจสอบค่าตัวกรองที่ตั้งค่าสำหรับแผนภูมิแดชบอร์ด: {}" @@ -18946,7 +18943,7 @@ msgstr "โปรดตรวจสอบค่าตัวกรองที่ 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:1072 msgid "Please check your email for verification" msgstr "โปรดตรวจสอบอีเมลของคุณเพื่อการยืนยัน" @@ -18978,7 +18975,7 @@ 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:631 msgid "Please contact your system manager to install correct version." msgstr "โปรดติดต่อผู้จัดการระบบของคุณเพื่อติดตั้งเวอร์ชันที่ถูกต้อง" @@ -19008,8 +19005,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19048,7 +19045,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 +19082,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 "โปรดเข้าสู่ระบบเพื่อโพสต์ความคิดเห็น" @@ -19101,7 +19099,7 @@ msgstr "โปรดตรวจสอบว่าเอกสารการส msgid "Please refresh to get the latest document." msgstr "โปรดรีเฟรชเพื่อรับเอกสารล่าสุด" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "โปรดลบการแมปเครื่องพิมพ์ในการตั้งค่าเครื่องพิมพ์และลองอีกครั้ง" @@ -19117,7 +19115,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:1711 msgid "Please save the report first" msgstr "โปรดบันทึกรายงานก่อน" @@ -19153,7 +19151,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 +19163,7 @@ msgstr "โปรดเลือกตัวกรองวันที่ที msgid "Please select applicable Doctypes" msgstr "โปรดเลือกประเภทเอกสารที่เกี่ยวข้อง" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "โปรดเลือกอย่างน้อย 1 คอลัมน์จาก {0} เพื่อจัดเรียง/จัดกลุ่ม" @@ -19191,7 +19189,7 @@ msgstr "โปรดเลือก {0}" msgid "Please set Email Address" msgstr "โปรดตั้งค่าที่อยู่อีเมล" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "โปรดตั้งค่าการแมปเครื่องพิมพ์สำหรับรูปแบบการพิมพ์นี้ในการตั้งค่าเครื่องพิมพ์" @@ -19203,7 +19201,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 "โปรดตั้งชื่อเอกสาร" @@ -19239,23 +19237,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 +19274,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 "" @@ -19366,14 +19364,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19379,7 @@ msgstr "" msgid "Precision" msgstr "ความแม่นยำ" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "ความแม่นยำควรอยู่ระหว่าง 1 ถึง 6" @@ -19445,7 +19435,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 "เพิ่มแม่แบบไปยังข้อความอีเมล" @@ -19480,13 +19470,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 +19498,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 @@ -19532,7 +19515,7 @@ msgstr "ก่อนหน้า" 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 +19561,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "พิมพ์" @@ -19608,8 +19591,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19716,7 +19699,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19765,11 +19748,11 @@ msgstr "พิมพ์เอกสาร" msgid "Print with letterhead" msgstr "พิมพ์พร้อมหัวจดหมาย" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "เครื่องพิมพ์" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "การแมปเครื่องพิมพ์" @@ -19779,11 +19762,11 @@ msgstr "การแมปเครื่องพิมพ์" msgid "Printer Name" msgstr "ชื่อเครื่องพิมพ์" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "การตั้งค่าเครื่องพิมพ์" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "ไม่ได้ตั้งค่าการแมปเครื่องพิมพ์" @@ -19845,7 +19828,7 @@ msgstr "ดำเนินการต่อ" msgid "Proceed Anyway" msgstr "ดำเนินการต่ออยู่ดี" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "กำลังประมวลผล" @@ -19871,9 +19854,9 @@ 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,24 +19942,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 +19963,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 +20052,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 "ไพธอน" @@ -20097,7 +20067,7 @@ msgid "QR Code for Login Verification" msgstr "คิวอาร์โค้ดสำหรับการยืนยันการเข้าสู่ระบบ" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20117,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 +20217,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:309 msgid "Quoting must be between 0 and 3" msgstr "การเสนอราคาต้องอยู่ระหว่าง 0 ถึง 3" @@ -20284,12 +20254,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 @@ -20326,7 +20290,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 +20307,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 +20364,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 +20379,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 "" @@ -20482,7 +20441,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 +20452,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 +20492,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 +20509,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" @@ -20804,15 +20776,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "รีเฟรช" @@ -20837,18 +20809,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:534 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:374 #: 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 +20997,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 "เปลี่ยนชื่อไฟล์และแทนที่โค้ดในตัวควบคุมแล้ว โปรดตรวจสอบ!" @@ -21228,7 +21200,7 @@ msgstr "ผู้จัดการรายงาน" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "ชื่อรายงาน" @@ -21266,7 +21238,7 @@ msgstr "มุมมองรายงาน" msgid "Report bug" msgstr "รายงานข้อบกพร่อง" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "ไม่สามารถตั้งค่ารายงานสำหรับประเภทเดี่ยวได้" @@ -21292,20 +21264,20 @@ msgstr "ถึงขีดจำกัดรายงานแล้ว" msgid "Report timed out." msgstr "รายงานหมดเวลา" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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}" @@ -21328,7 +21300,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 "รายงาน" @@ -21458,11 +21430,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21442,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21481,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21547,6 +21519,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 +21529,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 +21587,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 "ข้อจำกัด" @@ -21671,9 +21639,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 +21680,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 +21694,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 @@ -21775,7 +21743,7 @@ msgstr "สิทธิ์บทบาท" msgid "Role Permissions Manager" msgstr "ผู้จัดการสิทธิ์บทบาท" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "ผู้จัดการสิทธิ์บทบาท" @@ -21818,6 +21786,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 +21796,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 +21833,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 +21853,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 +21864,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 @@ -21926,12 +21892,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "แถว # {0}: ผู้ใช้ที่ไม่ใช่ผู้ดูแลระบบไม่สามารถตั้งค่าบทบาท {1} ให้กับประเภทเอกสารที่กำหนดเองได้" @@ -21939,7 +21905,7 @@ msgstr "แถว # {0}: ผู้ใช้ที่ไม่ใช่ผู้ 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 "ต้องการชื่อฟิลด์" @@ -21967,7 +21933,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,25 +21941,25 @@ msgstr "" msgid "Row {0}" msgstr "แถว {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22089,7 +22055,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 +22133,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 +22161,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22183,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:1735 msgid "Save As" msgstr "บันทึกเป็น" @@ -22234,7 +22196,7 @@ msgstr "บันทึกเป็น" msgid "Save Customizations" msgstr "บันทึกการปรับแต่ง" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "บันทึกรายงาน" @@ -22263,7 +22225,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 +22304,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 "" @@ -22510,7 +22472,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 "" @@ -22619,7 +22581,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 +22628,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,12 +22636,12 @@ 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:497 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" @@ -22690,7 +22652,7 @@ msgstr "" 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 "" @@ -22754,12 +22716,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:489 #: 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 "เลือกฟิลด์เพื่อแทรก" @@ -22805,8 +22770,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:598 msgid "Select Network Printer" msgstr "เลือกเครื่องพิมพ์เครือข่าย" @@ -22874,11 +22839,11 @@ msgstr "เลือกฟิลด์เพื่อแก้ไขคุณส msgid "Select a group node first." msgstr "เลือกโหนดกลุ่มก่อน" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "เลือกฟิลด์หัวเรื่องที่ถูกต้องสำหรับการสร้างเอกสารจากอีเมล" @@ -22908,13 +22873,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "เลือกรายการในรายการหลายรายการ" @@ -22948,7 +22913,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 +23097,7 @@ msgstr "อีเมลผู้ส่ง" msgid "Sender Email Field" msgstr "ฟิลด์อีเมลผู้ส่ง" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "ฟิลด์ผู้ส่งควรมีอีเมลในตัวเลือก" @@ -23226,7 +23191,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 "" @@ -23255,7 +23220,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 "" @@ -23360,7 +23325,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:2104 msgid "Set Level" msgstr "ตั้งค่าระดับ" @@ -23414,7 +23379,7 @@ msgstr "ตั้งค่าปริมาณ" msgid "Set Role For" msgstr "ตั้งค่าบทบาทสำหรับ" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "ตั้งค่าสิทธิ์ผู้ใช้" @@ -23555,14 +23520,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 +23538,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "ตั้งค่าอีเมลอัตโนมัติ" @@ -23648,11 +23608,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 +23627,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 +23679,7 @@ msgstr "แสดงเอกสาร" msgid "Show Error" msgstr "แสดงข้อผิดพลาด" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "แสดงชื่อฟิลด์ (คลิกเพื่อคัดลอกไปยังคลิปบอร์ด)" @@ -23857,7 +23807,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:1845 msgid "Show Tags" msgstr "แสดงแท็ก" @@ -23874,7 +23824,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 +23864,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 +23912,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 +23942,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 +23977,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 "" @@ -24091,7 +24037,7 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "เซสชันพร้อมกัน" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "ประเภทเอกสารเดี่ยวไม่สามารถปรับแต่งได้" @@ -24324,11 +24270,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,13 +24305,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24373,6 +24318,10 @@ msgstr "" 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 +24348,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 "ไม่อนุญาตอักขระพิเศษ" @@ -24460,7 +24415,7 @@ msgstr "มาตรฐาน" 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 "ประเภทเอกสารมาตรฐานไม่สามารถมีรูปแบบการพิมพ์เริ่มต้นได้ ใช้การปรับแต่งฟอร์ม" @@ -24516,8 +24471,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 +24480,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 @@ -24598,7 +24553,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 +24609,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 +24634,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 +24642,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 +24680,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:454 msgid "Sticky" msgstr "" @@ -24753,6 +24710,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24847,7 +24808,7 @@ msgstr "หัวข้อ" msgid "Subject Field" msgstr "ฟิลด์หัวข้อ" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "ประเภทฟิลด์หัวข้อควรเป็นข้อมูล, ข้อความ, ข้อความยาว, ข้อความเล็ก, ตัวแก้ไขข้อความ" @@ -24872,7 +24833,7 @@ msgstr "คิวการส่ง" msgid "Submit" msgstr "ส่ง" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "ส่ง" @@ -24882,7 +24843,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "ส่ง" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "ส่ง" @@ -24906,7 +24867,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 +24879,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 +24891,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "ส่งเอกสาร {0} หรือไม่?" @@ -24939,11 +24900,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 +24927,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 +24941,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:1171 #: 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 +24983,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 +25034,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 +25156,7 @@ msgstr "กำลังซิงค์" msgid "Syncing {0} of {1}" msgstr "กำลังซิงค์ {0} จาก {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "ข้อผิดพลาดทางไวยากรณ์" @@ -25324,6 +25279,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 +25362,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 +25436,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 +25445,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,7 +25467,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "" @@ -25556,11 +25513,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 +25586,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25658,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 +25682,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:1193 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,7 +25693,7 @@ 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 "" @@ -25737,7 +25701,7 @@ msgstr "" 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 +25742,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 +25750,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "จำนวนที่แสดงเป็นจำนวนโดยประมาณ คลิกที่นี่เพื่อดูจำนวนที่ถูกต้อง" @@ -25886,11 +25850,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "ลิงก์รีเซ็ตรหัสผ่านถูกใช้ไปแล้วหรือไม่ถูกต้อง" @@ -25927,7 +25891,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} แล้ว" @@ -25976,7 +25940,7 @@ msgstr "" 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,6 +25952,10 @@ 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 "" @@ -26020,11 +25988,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 "เกิดข้อผิดพลาดบางอย่างในการตั้งชื่อ โปรดติดต่อผู้ดูแลระบบ" @@ -26112,7 +26080,7 @@ 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' ก่อนแก้ไขประเภทเอกสารเพื่อหลีกเลี่ยงการสูญเสียการเปลี่ยนแปลง" @@ -26174,7 +26142,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 +26161,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "นี่คือรายงานพื้นหลัง โปรดตั้งค่าตัวกรองที่เหมาะสมแล้วสร้างใหม่" @@ -26217,12 +26185,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 +26203,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:423 msgid "This may get printed on multiple pages" msgstr "สิ่งนี้อาจถูกพิมพ์ในหลายหน้า" @@ -26288,7 +26250,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 +26282,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:1253 msgid "Throttled" msgstr "" @@ -26472,11 +26434,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 "" @@ -26525,9 +26487,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 +26511,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 +26533,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 +26551,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 @@ -26726,7 +26682,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 +26698,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "สลับแถบด้านข้าง" @@ -26792,7 +26748,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 +26764,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "ผู้ใช้จำนวนมากลงทะเบียนเมื่อเร็ว ๆ นี้ ดังนั้นการลงทะเบียนจึงถูกปิดใช้งาน โปรดลองอีกครั้งในหนึ่งชั่วโมง" @@ -26870,10 +26826,10 @@ msgstr "ขวาบน" msgid "Topic" msgstr "หัวข้อ" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "รวม" @@ -26916,18 +26872,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 "แถวรวม" @@ -27026,6 +26982,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 +27001,7 @@ msgstr "การเปลี่ยนผ่าน" msgid "Translatable" msgstr "สามารถแปลได้" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "แปลข้อมูล" @@ -27051,7 +27012,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 +27096,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 "" @@ -27482,8 +27443,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 +27459,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 ที่ไม่ปลอดภัย" @@ -27572,7 +27532,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:427 msgid "Update" msgstr "อัปเดต" @@ -27648,7 +27608,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 +27616,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 "อัปเดตเป็นเวอร์ชันใหม่ 🎉" @@ -27829,7 +27789,7 @@ msgstr "การใช้ฟังก์ชัน {0} ในฟิลด์ถ 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 +27810,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 +27821,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 +27836,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 +27850,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 +27867,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 +27901,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 +27965,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 +27984,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 +28007,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "สิทธิ์ของผู้ใช้" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "สิทธิ์ของผู้ใช้" @@ -28066,7 +28025,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 +28093,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 +28127,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 +28148,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:1382 msgid "User {0} impersonated as {1}" msgstr "ผู้ใช้ {0} ปลอมตัวเป็น {1}" @@ -28212,7 +28177,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 +28261,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 "ข้อผิดพลาดในการตรวจสอบ" @@ -28368,7 +28333,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "ค่าของฟิลด์ {0} ยาวเกินไปใน {1} ความยาวควรน้อยกว่า {2} ตัวอักษร" @@ -28414,7 +28379,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 +28392,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 +28454,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:156 msgid "View Doctype Permissions" msgstr "ดูสิทธิ์ประเภทเอกสาร" @@ -28519,7 +28476,7 @@ msgstr "ดูรายการ" msgid "View Log" msgstr "ดูบันทึก" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "ดูเอกสารที่อนุญาต" @@ -28566,7 +28523,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 "ดูการตอบกลับของคุณ" @@ -28643,7 +28600,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 "คำเตือน: ยังไม่ได้ตั้งชื่อ" @@ -28832,7 +28789,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 +28802,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 +28845,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 +29062,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 "จะเป็นรหัสเข้าสู่ระบบของคุณ" @@ -29206,7 +29154,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 +29180,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 +29192,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,7 +29231,7 @@ 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" @@ -29344,11 +29307,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 "คุณต้องการยกเลิกการเผยแพร่ความคิดเห็นนี้หรือไม่? ซึ่งหมายความว่ามันจะไม่มองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัลอีกต่อไป" @@ -29371,7 +29334,7 @@ msgstr "เขียน" 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,7 +29353,7 @@ 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" @@ -29448,14 +29411,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29532,11 +29496,11 @@ msgstr "คุณไม่ได้รับอนุญาตให้นำอ 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "คุณไม่ได้รับอนุญาตให้อัปเดตเอกสารฟอร์มเว็บนี้" @@ -29560,7 +29524,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 +29550,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 "คุณสามารถเปลี่ยนเอกสารที่ส่งแล้วโดยการยกเลิกและแก้ไข" @@ -29629,7 +29597,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 เท่านั้น" @@ -29659,11 +29627,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "คุณไม่สามารถตั้งค่า 'แปลได้' สำหรับฟิลด์ {0} ได้" @@ -29681,7 +29649,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "คุณไม่สามารถยกเลิกการตั้งค่า 'อ่านอย่างเดียว' สำหรับฟิลด์ {0} ได้" @@ -29732,7 +29700,7 @@ msgstr "คุณไม่มีสิทธิ์เพียงพอที่ msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "คุณไม่มีสิทธิ์เข้าถึง {0}: {1}" @@ -29744,7 +29712,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "คุณไม่มีสิทธิ์เข้าถึงประเภทเอกสาร {0}" @@ -29756,19 +29724,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "คุณถึงขีดจำกัดขนาดแถวในตารางฐานข้อมูล: {0}" @@ -29776,11 +29744,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 +29764,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:501 msgid "You haven't created a {0} yet" msgstr "คุณยังไม่ได้สร้าง {0}" @@ -29817,11 +29781,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:804 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:645 msgid "You must login to submit this form" msgstr "คุณต้องเข้าสู่ระบบเพื่อส่งฟอร์มนี้" @@ -29853,12 +29817,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 @@ -29928,10 +29892,22 @@ msgstr "คุณเลิกติดตามเอกสารนี้" msgid "You viewed this" msgstr "คุณดูสิ่งนี้" -#: frappe/public/js/frappe/desk.js:553 +#: 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 ของคุณกำลังถูกสร้างและจะปรากฏในส่วนไฟล์แนบเมื่อพร้อมใช้งาน นอกจากนี้คุณจะได้รับการแจ้งเตือนเมื่อไฟล์พร้อมให้ดาวน์โหลด" @@ -29985,10 +29961,18 @@ msgstr "คำขอเชื่อมต่อของคุณไปยัง msgid "Your email address" msgstr "ที่อยู่อีเมลของคุณ" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "รหัสเข้าสู่ระบบของคุณคือ" @@ -30093,7 +30077,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 +30222,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 +30284,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 +30299,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 "" @@ -30378,11 +30357,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 +30380,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 "ใหม่" @@ -30594,19 +30568,19 @@ msgstr "แชร์" msgid "short" msgstr "สั้น" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "ตั้งแต่เดือนที่แล้ว" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "ตั้งแต่สัปดาห์ที่แล้ว" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "ตั้งแต่ปีที่แล้ว" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "ตั้งแต่เมื่อวาน" @@ -30659,6 +30633,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 +30664,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 +30678,7 @@ msgstr "ผ่านการนำเข้าข้อมูล" msgid "via Google Meet" msgstr "ผ่าน Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "ผ่านการแจ้งเตือน" @@ -30733,10 +30711,15 @@ msgstr "เมื่อคลิกที่องค์ประกอบ จ msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30747,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 +30777,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:486 +#: 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 +30813,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 "" @@ -30856,7 +30843,6 @@ msgstr "รายงาน {0}" 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 +30867,7 @@ msgstr "พื้นที่ทำงาน {0}" msgid "{0} added" msgstr "เพิ่ม {0}" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} มีอยู่แล้ว เลือกชื่ออื่น" @@ -30960,11 +30946,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 ไม่สามารถอ้างอิงตัวเองได้" @@ -31031,7 +31013,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,7 +31022,7 @@ 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} เป็นฟิลด์ที่จำเป็น" @@ -31048,15 +31030,15 @@ msgstr "{0} เป็นฟิลด์ที่จำเป็น" 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 +31047,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}" @@ -31117,8 +31099,8 @@ msgstr "{0} ไม่ใช่นิพจน์ Cron ที่ถูกต้ 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถูกต้อง" @@ -31126,15 +31108,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:174 msgid "{0} is not a valid Name" msgstr "{0} ไม่ใช่ชื่อที่ถูกต้อง" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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} ไม่ใช่สถานะเวิร์กโฟลว์ที่ถูกต้อง โปรดอัปเดตเวิร์กโฟลว์ของคุณและลองอีกครั้ง" @@ -31154,19 +31136,23 @@ msgstr "{0} ไม่ใช่รูปแบบรายงานที่ถ 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} ไม่ได้ตั้งค่า" @@ -31174,31 +31160,31 @@ msgstr "{0} ไม่ได้ตั้งค่า" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} เป็นสิ่งจำเป็น" -#: 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:1835 msgid "{0} items selected" msgstr "{0} รายการที่เลือก" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} เพิ่งปลอมตัวเป็นคุณ พวกเขาให้เหตุผลนี้: {1}" @@ -31231,7 +31217,7 @@ msgstr "{0} นาทีที่ผ่านมา" msgid "{0} months ago" msgstr "{0} เดือนที่ผ่านมา" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0} ต้องอยู่หลังจาก {1}" @@ -31267,7 +31253,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 +31266,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:1211 msgid "{0} of {1}" msgstr "{0} ของ {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} ของ {1} ({2} แถวที่มีลูก)" @@ -31330,11 +31316,11 @@ msgstr "{0} ลบการมอบหมายของพวกเขา" 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:1795 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} บันทึกสำเร็จ" @@ -31354,11 +31340,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 +31357,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}" @@ -31390,7 +31376,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:254 msgid "{0} updated" msgstr "{0} อัปเดตแล้ว" @@ -31434,7 +31420,7 @@ msgstr "{0} {1} มีอยู่แล้ว" 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} ไม่สามารถเป็นโหนดใบได้เนื่องจากมีลูก" @@ -31466,75 +31452,75 @@ msgstr "{0}/{1} เสร็จสิ้น | โปรดเปิดแท็ 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: ไม่สามารถตั้งค่าแก้ไขได้โดยไม่ยกเลิก" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการแก้ไขได้หากไม่สามารถส่งได้" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการส่งได้หากไม่สามารถส่งได้" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: ไม่สามารถตั้งค่ายกเลิกได้โดยไม่ส่ง" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "{0}: ไม่สามารถตั้งค่านำเข้าได้โดยไม่สร้าง" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: ไม่สามารถตั้งค่าส่ง ยกเลิก แก้ไขได้โดยไม่มีการเขียน" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "{0}: ไม่มีการตั้งค่าสิทธิ์พื้นฐาน" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31528,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:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0}: ต้องตั้งค่าสิทธิ์ที่ระดับ 0 ก่อนที่จะตั้งค่าระดับที่สูงกว่า" @@ -31550,7 +31536,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} ได้" @@ -31567,7 +31553,7 @@ msgstr "{0}: {1} ถูกตั้งค่าเป็นสถานะ {2}" 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 +31577,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 +31585,11 @@ msgstr "{{{0}}} ไม่ใช่รูปแบบชื่อฟิลด์ msgid "{} Complete" msgstr "{} เสร็จสมบูรณ์" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "{} โค้ด Python ไม่ถูกต้องในบรรทัด {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "{} โค้ด Python อาจไม่ถูกต้อง
    {}" diff --git a/frappe/locale/tr.po b/frappe/locale/tr.po index d583e7027f..3a5208d359 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1 = Doğru & 0 = Yanlış" @@ -145,10 +141,6 @@ msgstr "1 Google Takvim Etkinliği senkronize edildi." 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 msgid "1 day ago" msgstr "1 gün önce" @@ -246,6 +238,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" @@ -641,7 +640,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 +730,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,10 +739,6 @@ 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" - #: 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" @@ -761,7 +756,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 +855,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:452 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 +884,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:449 +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 +908,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:459 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 +955,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 "" + +#. 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 "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -1041,7 +1058,7 @@ msgstr "Aksiyon / Rota" msgid "Action Complete" msgstr "Eylem Tamamlandı" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "Eylem Başarısız" @@ -1150,7 +1167,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:501 #: 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 +1178,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:454 msgid "Add / Remove Columns" msgstr "Sütun Ekle / Kaldır" @@ -1173,7 +1190,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" @@ -1206,10 +1223,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1285,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 +1318,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:2145 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" @@ -1433,7 +1450,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}" @@ -1541,7 +1558,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" @@ -1568,11 +1585,11 @@ msgstr "Yönetim" msgid "Administrator" msgstr "Yönetici" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "Yönetici Giriş Yaptı" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 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 +1610,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" @@ -1749,7 +1766,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 +1826,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 +1847,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 +1895,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 +2128,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 +2136,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}" @@ -2308,10 +2320,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 +2396,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 +2409,7 @@ msgstr "Uygulandı" msgid "Apply" msgstr "Uygula" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Arama Kuralı Uygula" @@ -2439,7 +2457,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 +2490,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "Atamaları temizlemek istediğinizen emin misiniz?" @@ -2500,7 +2522,11 @@ 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?" @@ -2576,7 +2602,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:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Ata" @@ -2639,6 +2665,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 +2739,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:696 msgid "At least one column is required to show in the grid." msgstr "Tabloda en az bir sütunun gösterilmesi zorunludur." @@ -2822,7 +2859,7 @@ 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" @@ -2853,6 +2890,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 +2911,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 +3025,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 +3037,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 +3090,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 +3138,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 +3152,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 +3423,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 +3541,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 +3572,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 +3669,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,7 +3726,7 @@ 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:1189 msgid "Bulk Edit {0}" msgstr "Toplu {0} Düzenleme" @@ -3775,7 +3749,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 +3761,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 +3891,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 +3941,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 @@ -4035,7 +3994,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 "" @@ -4061,12 +4020,13 @@ msgstr "{0} mevcut olmadığı için {0} adresini {1} olarak yeniden adlandıram #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "İptal" @@ -4084,16 +4044,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:2205 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 @@ -4143,7 +4105,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}" @@ -4163,11 +4125,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" @@ -4218,7 +4180,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 +4188,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" @@ -4255,7 +4217,7 @@ 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" @@ -4267,11 +4229,11 @@ msgstr "{} dosyası diskte bulunamadı" msgid "Cannot get file contents of a Folder" msgstr "Bir Klasörün dosya içerikleri alınamıyor" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4291,7 +4253,7 @@ msgstr "{0} sütunu herhangi bir alanla eşleştirilemiyor" 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 +4261,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 +4278,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:1129 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "{0} sıraya/gruplamaya göre kullanılamaz" @@ -4434,9 +4396,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 +4466,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 +4499,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 +4507,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}" @@ -4601,7 +4562,7 @@ 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 "" @@ -4654,7 +4615,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 +4627,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:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Atamayı Temizle" @@ -4692,7 +4653,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,7 +4665,11 @@ 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" @@ -4756,7 +4721,7 @@ msgstr "Dinamik Filtreleri Ayarlamak için Tıklayın" msgid "Click to Set Filters" msgstr "Filtreleri Ayarlamak İçin Tıklayın" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "Sıralama Yapmak İçin Tıklayın" @@ -4934,7 +4899,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Tümünü Daralt" @@ -5045,11 +5010,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:454 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:661 msgid "Column width cannot be zero." msgstr "Sütun genişliği sıfır olamaz." @@ -5118,16 +5083,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 +5090,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 +5099,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 +5151,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 @@ -5221,7 +5176,7 @@ msgstr "Şirket Adı" 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ı" @@ -5316,6 +5271,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 +5301,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:406 msgid "Configure Columns" msgstr "Sütunları Yapılandır" @@ -5372,7 +5332,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 {}" @@ -5545,7 +5505,6 @@ msgstr "{0} güvenlik düzeltmesi içerir" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5553,7 +5512,6 @@ msgstr "{0} güvenlik düzeltmesi içerir" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5561,24 +5519,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ü" @@ -5654,12 +5600,16 @@ msgstr "Hatayı Kopyala" msgid "Copy to Clipboard" msgstr "Panoya Kopyala" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "Çekirdek Doctype'lar düzenlenemez." @@ -5667,7 +5617,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:633 msgid "Correct version :" msgstr "Doğru versiyon:" @@ -5688,10 +5638,10 @@ 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" @@ -5828,7 +5778,7 @@ 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:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Yeni Oluştur" @@ -5841,7 +5791,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:276 msgid "Create User Email" msgstr "Kullanıcı E-postası Oluştur" @@ -5853,7 +5803,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,10 +5811,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "Yeni {0} Oluştur" @@ -5881,7 +5831,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:507 msgid "Create your first {0}" msgstr "{0} Oluştur" @@ -5907,7 +5857,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 +5869,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" @@ -6256,14 +6206,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "Özelleştir" @@ -6407,7 +6357,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" @@ -6515,7 +6465,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:615 msgid "Data Too Long" msgstr "Veri Çok Uzun" @@ -6546,7 +6496,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:249 msgid "Database Table Row Size Limit" msgstr "Veritabanı Tablo Satır Boyutu Sınırı" @@ -6684,11 +6634,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "Ondalık Ayırıcı tek bir karakter olmalıdır" @@ -6850,11 +6800,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." @@ -6905,10 +6855,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6916,11 +6866,16 @@ msgstr "Gecikti" msgid "Delete" msgstr "Sil" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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" @@ -6961,7 +6916,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 +6949,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} öğesini kalıcı olarak sil?" @@ -7039,6 +6994,10 @@ msgstr "Silinen İsim" msgid "Deleted all documents successfully" msgstr "Tüm belgeler başarıyla silindi" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Silindi!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "{0} Siliniyor" @@ -7054,8 +7013,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 +7030,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:301 msgid "Delimiter must be a single character" msgstr "Ayırıcı tek bir karakter olmalıdır" @@ -7098,7 +7057,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 +7092,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 +7112,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 +7121,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 +7204,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 +7251,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 +7265,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 +7282,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 +7291,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 +7341,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 +7355,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 +7365,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 +7383,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 +7406,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,16 +7442,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "Şablonda önceden ayarlanmış başlıkları düzenlemeyin" @@ -7600,7 +7545,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 +7592,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 +7605,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 +7638,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 +7652,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,19 +7714,19 @@ 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 "" @@ -7978,7 +7923,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:1955 msgid "Document Unlocked" msgstr "Belge Kilidi Açıldı" @@ -7986,15 +7931,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:1300 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:1299 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:1298 msgid "Document is in draft state" msgstr "Belge taslak durumundadır" @@ -8136,13 +8081,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "İndir" @@ -8364,17 +8309,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:1776 #: 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:350 #: 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 +8327,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:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Düzenle" @@ -8392,7 +8337,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "Düzenle" @@ -8421,7 +8366,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:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "DocType Düzenle" @@ -8524,7 +8469,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 +8478,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" @@ -8580,6 +8525,7 @@ 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' @@ -8593,6 +8539,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 @@ -8633,7 +8580,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" @@ -8764,10 +8711,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 +8779,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:278 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)" @@ -8902,7 +8849,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 +8875,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 +8968,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 +8975,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 +8987,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 +9009,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 +9022,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 +9048,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 +9068,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 +9084,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 +9100,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 +9148,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 +9218,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 +9238,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" @@ -9346,9 +9286,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "Hata Bildirimi" @@ -9368,7 +9308,7 @@ 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:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "{0} Bildirim değerlendirilirken hata oluştu. Lütfen şablonunuzu düzeltin." @@ -9521,7 +9461,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 +9469,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:2123 msgid "Execution Time: {0} sec" msgstr "Oluşturma Süresi: {0} sn" @@ -9555,7 +9495,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Tümünü Genişlet" @@ -9588,7 +9528,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 +9558,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Dışarı Aktar" @@ -9659,7 +9601,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Raporu Dışarı Aktar: {0}" @@ -9668,11 +9610,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?" @@ -9785,7 +9727,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 +9744,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 "" @@ -9815,7 +9757,7 @@ msgstr "Sunucuya bağlanılamadı" 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 "" @@ -9827,8 +9769,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 +9786,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 +9806,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 +9860,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 +9917,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:1870 #: 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 +9940,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" @@ -10060,11 +9996,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:545 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,16 +10018,16 @@ 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:454 #: 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" @@ -10115,11 +10051,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +10078,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 @@ -10191,7 +10127,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10295,7 +10231,7 @@ msgstr "Dosyalar" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10354,7 +10290,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 +10304,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 +10328,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,7 +10345,7 @@ 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ı" @@ -10420,18 +10362,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 +10686,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:2120 +#: 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 +10713,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 +10727,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:1752 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 +10782,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 +10842,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 +10874,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 +10971,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:1831 msgid "From Document Type" msgstr "Belge Türü" @@ -11049,18 +10998,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" @@ -11159,6 +11106,12 @@ 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 msgid "Generate Tracking URL" @@ -11183,7 +11136,7 @@ msgstr "Konum" msgid "Geolocation Settings" msgstr "Coğrafi Konum Ayarları" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "Bugünün Bildirimlerini Getir" @@ -11489,11 +11442,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 +11483,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" @@ -11627,7 +11575,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,7 +11587,6 @@ msgstr "HH:mm:ss" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11802,6 +11748,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 @@ -11936,11 +11888,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 +11967,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:1845 msgid "Hide Tags" msgstr "Etiketleri Gizle" @@ -12034,7 +11981,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 +12030,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 +12119,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12280,7 +12224,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12410,6 +12354,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 +12389,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 +12450,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:1120 msgid "Illegal SQL Query" msgstr "Geçersiz SQL Sorgusu" @@ -12564,11 +12516,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,11 +12542,11 @@ 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:384 msgid "Impersonate" msgstr "Yerine Geçir" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "{0} Gibi Kullan" @@ -12624,7 +12576,7 @@ msgstr "" msgid "Import" msgstr "İçe Aktar" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "İçe Aktar" @@ -12919,7 +12871,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" @@ -12943,7 +12895,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 +12970,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:1876 msgid "Insert After" msgstr "Sonrasına Ekle" @@ -13034,7 +12986,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 +13004,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "{0} Uygulamasını Marketplace aracılığıyla Yükle" @@ -13070,7 +13026,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" @@ -13099,7 +13055,7 @@ msgstr "Raporu silmek için mevcut izinler yetersiz" 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 +13159,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:849 +#: 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" @@ -13229,7 +13185,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,7 +13205,11 @@ 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ı" @@ -13290,7 +13250,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 +13259,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" @@ -13316,11 +13276,11 @@ msgstr "Geçersiz Çıktı Formatı" 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:1239 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" @@ -13339,7 +13299,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ı" @@ -13362,7 +13322,7 @@ 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 "" @@ -13374,6 +13334,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13390,7 +13354,7 @@ msgstr "" 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" @@ -13426,19 +13390,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "Geçersiz alan adı {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'" @@ -13466,12 +13426,20 @@ msgstr "" 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 +13447,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" @@ -13491,6 +13463,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "Geçersiz istek değişkenleri" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13507,7 +13483,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 +13492,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:627 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 +13514,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 "" @@ -13677,7 +13690,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" @@ -13969,12 +13982,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 @@ -14247,7 +14262,7 @@ msgstr "Landscape" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Dil" @@ -14351,6 +14366,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 +14387,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" @@ -14531,7 +14546,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14627,20 +14642,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 +14682,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 +14696,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,6 +14827,10 @@ 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' @@ -14876,7 +14883,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:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Liste Ayarları" @@ -14917,7 +14924,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 +14933,8 @@ msgstr "Listeler" msgid "Load Balancing" msgstr "Yük Dengeleme" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Daha Fazla Yükle" @@ -14945,8 +14951,8 @@ 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 msgid "Loading" @@ -14960,7 +14966,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 +14976,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Yükleniyor..." @@ -15031,7 +15037,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ı" @@ -15171,7 +15177,7 @@ msgstr "" msgid "Logout" msgstr "Çıkış" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "Tüm Oturumlardan Çıkış Yap" @@ -15351,7 +15357,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:509 msgid "Mandatory Information missing:" msgstr "Zorunlu bilgi eksik:" @@ -15371,7 +15377,7 @@ msgstr "Satır#{1} - {0} tablosundaki alanlar zorunlu" msgid "Mandatory fields required in {0}" msgstr "{0} Eklerken Aşağıdaki Alanlar Zorunludur" -#: frappe/public/js/frappe/web_form/web_form.js: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 +15458,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 +15540,7 @@ 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 +#: 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" @@ -15549,16 +15553,11 @@ msgstr "Maksimum" 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}" @@ -15628,7 +15627,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 "" @@ -15694,7 +15693,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 +15725,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" @@ -15883,7 +15874,7 @@ 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" @@ -16150,7 +16141,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." @@ -16224,7 +16215,7 @@ msgstr "Bayan" msgid "Ms" msgstr "Bayan" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16265,7 +16256,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:498 #: 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,7 +16294,7 @@ 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/views/file/file_view.js:97 @@ -16319,7 +16310,7 @@ msgstr "" msgid "Name already taken, please set a new name" msgstr "İsim daha önce alınmış, lütfen yeni bir isim belirleyin" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "İsim, {0} gibi özel karekterler içeremez" @@ -16331,7 +16322,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 +16363,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 +16400,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:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Listede Yukarı git" @@ -16429,7 +16420,7 @@ msgstr "Ana içeriğe git" msgid "Navigation Settings" msgstr "Gezinme Ayarları" -#: 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 "Diğer kullanıcıların özel çalışma alanlarını düzenlemek için Çalışma Alanı Yöneticisi rolü gerekli." @@ -16479,10 +16470,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 +16478,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ı" @@ -16558,12 +16545,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:190 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 +16559,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 +16577,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 +16635,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:411 msgid "New {0}" msgstr "Yeni {0}" @@ -16670,7 +16657,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 +16665,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 +16678,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,12 +16785,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16855,6 +16843,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 +16882,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16898,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:1744 msgid "No Permissions Specified" msgstr "Hiçbir İzin Belirtilmemiş" @@ -16926,11 +16918,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:720 msgid "No Preview Available" msgstr "Önizleme Mevcut Değil" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "Uygun Yazıcı Bulunamadı." @@ -16946,7 +16938,7 @@ 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" @@ -16970,7 +16962,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:232 msgid "No alerts for today" msgstr "Bugün için herhangi bir bildirim yok" @@ -16998,19 +16990,15 @@ 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" @@ -17030,6 +17018,10 @@ 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" @@ -17102,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:947 msgid "No permission to read {0}" msgstr "Okuma {0} izni yok" @@ -17130,7 +17122,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" @@ -17154,7 +17146,7 @@ msgstr "{0} Bulunamadı" msgid "No {0} found" msgstr "{0} bulunamadı." -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Filtrelere uygun {0} bulunamadı. Tüm filtreleri temizleyip tekrar deneyebilirsiniz." @@ -17206,7 +17198,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" @@ -17255,18 +17247,17 @@ msgstr "Boş Bırakılamaz" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17276,9 +17267,9 @@ msgstr "Yayınlanmadı" #: 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/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 +17301,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 +17317,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:637 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,7 +17345,7 @@ 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." @@ -17363,18 +17354,18 @@ msgstr "Geliştirici Modunda değil! site_config.json dosyasına ayarlayın veya #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17400,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:399 msgid "Note: This will be shared with user." msgstr "Not: Bu kullanıcı ile paylaşılacaktır." @@ -17433,10 +17424,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 +17472,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:542 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:528 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:537 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 +17531,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,7 +17589,7 @@ 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 "" @@ -17713,11 +17703,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 +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 "" @@ -17921,7 +17911,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:" @@ -17965,7 +17955,7 @@ msgstr "Yalnızca Rapor Oluşturucu türündeki raporlar silinebilir" 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:129 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." @@ -18039,7 +18029,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 +18047,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 +18055,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Liste Öğesini Aç" @@ -18080,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 "{0} Sayfasına Git" @@ -18095,6 +18085,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 +18104,7 @@ msgstr "Açıldı" msgid "Operation" msgstr "Operasyon" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "" @@ -18136,7 +18130,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 "" @@ -18168,7 +18162,7 @@ msgstr "İsteğe bağlı: Bu ifade doğruysa uyarı gönderilecektir" 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 +18171,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 +18179,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." @@ -18229,8 +18223,8 @@ msgstr "Organizasyon Geçmişi Başlığı" 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" @@ -18309,9 +18303,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:1796 msgid "PDF" msgstr "PDF" @@ -18352,11 +18346,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:629 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:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18528,7 +18522,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ı" @@ -18572,11 +18566,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 +18579,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 +18653,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18664,7 @@ msgstr "Pasif" msgid "Password" msgstr "Şifre" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "Şifre E-postası Gönderildi" @@ -18683,7 +18677,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:896 msgid "Password cannot be filtered" msgstr "Şifre filtrelenemiyor" @@ -18700,6 +18694,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 +18706,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:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "Şifre sıfırlama talimatları {}'in e-postasına gönderildi" @@ -18720,7 +18718,7 @@ msgstr "Şifre ayarlandı" msgid "Password size exceeded the maximum allowed size" msgstr "Şifre boyutu izin verilen maksimum boyutu aştı" -#: frappe/core/doctype/user/user.py: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 +18726,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:210 msgid "Passwords do not match!" msgstr "Şifreler uyuşmuyor!" @@ -18798,10 +18796,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" @@ -18937,16 +18937,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "İzin Hatası" @@ -19034,8 +19034,8 @@ 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/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 +19095,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 +19107,7 @@ msgstr "Lütfen e-postanıza bir konu ekleyin" msgid "Please add a valid comment." msgstr "Lütfen geçerli bir yorum ekleyin." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "Lütfen yöneticinizden kayıt işleminizin doğrulamasını isteyin" @@ -19127,10 +19127,6 @@ 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: {}" @@ -19139,7 +19135,7 @@ msgstr "Lütfen Gösterge Tablosu Grafiği için ayarlanan filtre değerlerini k msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1072 msgid "Please check your email for verification" msgstr "Doğrulama için lütfen e-postanızı kontrol edin" @@ -19171,7 +19167,7 @@ msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki bağlantıya tıkl msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 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." @@ -19201,8 +19197,8 @@ msgstr "Kullanıcı adı/şifre tabanlı girişi devre dışı bırakmadan önce #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19241,7 +19237,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 +19274,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." @@ -19294,7 +19291,7 @@ msgstr "Lütfen Referans İletişim Belgelerinin döngüsel olarak bağlantılı 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:548 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 +19307,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:1711 msgid "Please save the report first" msgstr "Lütfen önce raporu kaydedin." @@ -19346,7 +19343,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 +19355,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:1152 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,7 +19381,7 @@ 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:562 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" @@ -19396,7 +19393,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" @@ -19432,23 +19429,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 +19466,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." @@ -19559,14 +19556,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19582,7 +19571,7 @@ msgstr "" msgid "Precision" msgstr "Kesinlik" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19638,7 +19627,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" @@ -19673,13 +19662,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 +19690,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 @@ -19725,7 +19707,7 @@ msgstr "Önceki" 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 +19753,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Yazdır" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Yazdır" @@ -19801,8 +19783,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19909,7 +19891,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19958,11 +19940,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:843 msgid "Printer" msgstr "Yazıcı" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "Yazıcı Eşlemesi" @@ -19972,11 +19954,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:812 msgid "Printer Settings" msgstr "Yazıcı Ayarları" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "Yazıcı eşlemesi ayarlanmadı." @@ -20038,7 +20020,7 @@ msgstr "Devam Et" msgid "Proceed Anyway" msgstr "Yine de Devam Et" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "İşleme" @@ -20064,9 +20046,9 @@ 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" @@ -20152,24 +20134,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 +20155,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 +20244,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" @@ -20290,7 +20259,7 @@ 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: " +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20340,7 +20309,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 +20409,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20477,12 +20446,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 @@ -20519,7 +20482,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 +20499,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 +20556,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 +20571,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" @@ -20675,7 +20633,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 +20644,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 +20684,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 +20701,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" @@ -20997,15 +20968,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Yenile" @@ -21030,18 +21001,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:534 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:374 #: 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 +21189,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!" @@ -21421,7 +21392,7 @@ msgstr "Rapor Yöneticisi" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "Rapor İsmi" @@ -21459,7 +21430,7 @@ 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:1810 msgid "Report cannot be set for Single types" msgstr "Rapor Tek türler için ayarlanamaz" @@ -21485,20 +21456,20 @@ 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:615 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:1994 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" @@ -21521,7 +21492,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" @@ -21651,11 +21622,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "LDAP Parolasını Sıfırla" @@ -21663,11 +21634,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:235 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:168 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 +21673,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:433 msgid "Reset to default" msgstr "Varsayılana Dön" @@ -21740,6 +21711,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 +21721,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 +21779,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" @@ -21864,9 +21831,7 @@ msgstr "İptal Et" 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" @@ -21907,6 +21872,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 +21886,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 @@ -21968,7 +21935,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:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Rol İzinlerini Yönet" @@ -22011,6 +21978,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 +21988,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 +22025,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 +22045,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 +22056,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 @@ -22119,12 +22084,12 @@ msgstr "Rota: Örnek \"/app\"" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 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" @@ -22132,7 +22097,7 @@ msgstr "Satır # {0}: Yönetici olmayan kullanıcı {1} rolünü özel doctype'a 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" @@ -22160,7 +22125,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,25 +22133,25 @@ 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:353 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:342 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" @@ -22282,7 +22247,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 +22325,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 +22353,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22375,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:1735 msgid "Save As" msgstr "Farklı Kaydet" @@ -22427,7 +22388,7 @@ 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:1951 msgid "Save Report" msgstr "Raporu Kaydet" @@ -22456,7 +22417,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 +22496,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" @@ -22703,7 +22664,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" @@ -22812,7 +22773,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 +22820,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22867,12 +22828,12 @@ 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:497 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" @@ -22883,7 +22844,7 @@ msgstr "Dosya Seçimi" 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ç" @@ -22947,12 +22908,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:489 #: 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" @@ -22998,8 +22962,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:598 msgid "Select Network Printer" msgstr "Ağ Yazıcısını Seçin" @@ -23067,11 +23031,11 @@ msgstr "Düzenlemek için bir alan seçin." msgid "Select a group node first." msgstr "Önce bir grup seçin." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 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 +23065,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Birden Fazla Öğe Seçin" @@ -23141,7 +23105,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 +23289,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:1946 msgid "Sender Field should have Email in options" msgstr "Gönderen Alanı seçeneklerinde E-posta olmalıdır" @@ -23419,7 +23383,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" @@ -23448,7 +23412,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." @@ -23553,7 +23517,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:2104 msgid "Set Level" msgstr "Seviye Ayarla" @@ -23607,7 +23571,7 @@ msgstr "Miktarı Ayarla" msgid "Set Role For" msgstr "Rol Belirle" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Kullanıcı İzinlerini Ayarla" @@ -23772,14 +23736,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 +23754,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "Otomatik E-Postayı Ayarla" @@ -23865,11 +23824,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 +23843,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 +23895,7 @@ msgstr "Belgeyi Göster" msgid "Show Error" msgstr "Hatayı Göster" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -24074,7 +24023,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:1845 msgid "Show Tags" msgstr "Etiketleri Göster" @@ -24091,7 +24040,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 +24080,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 +24128,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 +24158,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 +24193,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ı" @@ -24308,7 +24253,7 @@ msgstr "Basit Python İfadesi, Örnek: status == 'Open' ve type == 'Bug'" msgid "Simultaneous Sessions" msgstr "Eşzamanlı Oturumlar" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "Tek Sayfa DocType'lar özelleştirilemez." @@ -24541,11 +24486,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,13 +24521,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24590,6 +24534,10 @@ msgstr "Sıralama alanı {0} geçerli bir alan adı olmalıdır" 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 +24564,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" @@ -24677,7 +24631,7 @@ msgstr "Standart" 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" @@ -24733,8 +24687,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 +24696,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 @@ -24815,7 +24769,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 +24825,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 +24850,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 +24858,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 +24896,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:454 msgid "Sticky" msgstr "" @@ -24970,6 +24926,10 @@ msgstr "Tabloya Göre Depolama Kullanımı" msgid "Store Attached PDF Document" msgstr "Eklenen PDF Belgesini Sakla" +#: frappe/core/doctype/user/user.js:490 +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." @@ -25064,7 +25024,7 @@ msgstr "Konu" msgid "Subject Field" msgstr "Konu" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -25089,7 +25049,7 @@ msgstr "Gönderim Kuyruğu" msgid "Submit" msgstr "Gönder" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Gönder/İşle" @@ -25099,7 +25059,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:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Gönder/İşle" @@ -25123,7 +25083,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 +25095,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 +25107,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} belge gönderilsin mi?" @@ -25156,11 +25116,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 +25143,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 +25157,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:1171 #: 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 +25199,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 +25250,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 +25372,7 @@ msgstr "Senkronize Ediliyor" msgid "Syncing {0} of {1}" msgstr "Senkronize Ediliyor {0}/{1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "Sözdizimi Hatası" @@ -25541,6 +25495,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 +25578,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 +25652,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 +25661,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,7 +25683,7 @@ 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:1170 msgid "Table updated" msgstr "Tablo güncellendi" @@ -25773,11 +25729,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 +25802,7 @@ msgstr "Şablon Uyarıları" msgid "Templates" msgstr "Şablonlar" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "Geçici Olarak Devre Dışı" @@ -25913,7 +25876,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 +25900,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:1193 msgid "The CSV format is case sensitive" msgstr "CSV formatı büyük/küçük harfe duyarlıdır" @@ -25950,7 +25913,7 @@ 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" @@ -25958,7 +25921,7 @@ msgstr "Koşul '{0}' geçersiz" 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 +25964,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 +25972,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:685 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." @@ -26111,11 +26074,11 @@ msgstr "Google Cloud Console'dan altında elde edilen proje numarası" -#: frappe/core/doctype/user/user.py:993 +#: 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" @@ -26152,7 +26115,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}" @@ -26201,7 +26164,7 @@ msgstr "Aynı filtrelere sahip {0} zaten kuyrukta mevcut:" msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -26213,6 +26176,10 @@ 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." @@ -26245,11 +26212,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" @@ -26337,7 +26304,7 @@ 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 "" @@ -26399,7 +26366,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 +26385,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:2180 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 +26409,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 +26427,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:423 msgid "This may get printed on multiple pages" msgstr "" @@ -26513,7 +26474,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 +26506,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:1253 msgid "Throttled" msgstr "" @@ -26697,11 +26658,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 "" @@ -26750,9 +26711,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 +26735,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 +26757,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 "" @@ -26958,7 +26913,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 +26929,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Kenar Çubuğunu Aç/Kapat" @@ -27024,7 +26979,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 +26995,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:1041 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 +27057,10 @@ msgstr "Sağ Üst" msgid "Topic" msgstr "Konu" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "Toplam" @@ -27148,18 +27103,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" @@ -27260,6 +27215,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 +27234,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:2235 msgid "Translate Data" msgstr "" @@ -27285,7 +27245,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 +27329,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" @@ -27717,8 +27677,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 +27693,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" @@ -27807,7 +27766,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:427 msgid "Update" msgstr "Güncelle" @@ -27883,7 +27842,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 +27850,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 🎉" @@ -28064,7 +28023,7 @@ msgstr "" 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 +28044,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 +28055,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 +28070,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 +28084,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 +28101,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 +28135,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 +28199,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 +28218,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 +28241,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "Kullanıcı İzinleri" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Kullanıcı İzinleri" @@ -28301,7 +28259,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 +28327,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 +28361,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 +28382,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:1382 msgid "User {0} impersonated as {1}" msgstr "{0}, {1} olarak kullanıyor" @@ -28447,7 +28411,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 +28495,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ı" @@ -28603,7 +28567,7 @@ 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:612 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" @@ -28649,7 +28613,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 +28626,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 +28688,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:156 msgid "View Doctype Permissions" msgstr "Doctype İzinlerini Görüntüle" @@ -28754,7 +28710,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:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "İzin Verilen Belgeleri Görüntüle" @@ -28801,7 +28757,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" @@ -28878,7 +28834,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ış" @@ -29067,7 +29023,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 +29036,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 +29079,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 +29296,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" @@ -29441,7 +29388,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 +29414,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 +29426,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,7 +29465,7 @@ 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" @@ -29579,11 +29541,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 "" @@ -29606,7 +29568,7 @@ msgstr "Yazma" 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,7 +29587,7 @@ 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ı" @@ -29683,14 +29645,15 @@ 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/website/doctype/help_article/templates/help_article.html:25 @@ -29767,11 +29730,11 @@ msgstr "{} doctype'ı dışa aktarmanıza izin verilmiyor" msgid "You are not allowed to print this report" msgstr "Bu raporu yazdırmanıza izin verilmiyor" -#: frappe/public/js/frappe/views/communication.js: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:605 msgid "You are not allowed to update this Web Form Document" msgstr "Bu Web Form Belgesini güncelleme izniniz yok" @@ -29795,7 +29758,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 +29784,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." @@ -29864,7 +29831,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." @@ -29894,11 +29861,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "{0} alanı için 'Çevrilebilir' ayarlayamazsınız" @@ -29916,7 +29883,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "{0} alanı için 'Salt Okunur' ayarını değiştiremezsiniz" @@ -29967,7 +29934,7 @@ msgstr "İşlemi tamamlamak için yeterli izniniz yok" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29979,7 +29946,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "{0} isimli DocType erişimi için izniniz yok." @@ -29991,19 +29958,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:245 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 +29978,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 +29998,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:501 msgid "You haven't created a {0} yet" msgstr "Henüz bir {0} oluşturmadınız." @@ -30052,11 +30015,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:804 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:645 msgid "You must login to submit this form" msgstr "Bu formu göndermek için giriş yapmalısınız" @@ -30088,13 +30051,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." @@ -30163,10 +30126,22 @@ 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/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 "" @@ -30220,10 +30195,18 @@ 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/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" @@ -30328,7 +30311,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 +30456,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 +30518,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 +30533,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" @@ -30613,11 +30591,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 +30614,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" @@ -30829,19 +30802,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:301 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:300 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:302 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:299 msgid "since yesterday" msgstr "dünden beri" @@ -30894,6 +30867,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 +30898,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 +30912,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:403 msgid "via Notification" msgstr "Bildirim aracılığıyla" @@ -30968,10 +30945,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:635 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 +30981,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 +31011,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:486 +#: 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 +31047,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" @@ -31091,7 +31077,6 @@ msgstr "{0} Raporu" 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 +31101,7 @@ 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/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} zaten mevcut. Başka bir isim deneyin." @@ -31195,11 +31180,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 "" @@ -31266,7 +31247,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,7 +31256,7 @@ 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" @@ -31283,15 +31264,15 @@ msgstr "{0} zorunlu bir alandır" msgid "{0} is a not a valid zip file" msgstr "{0} geçerli bir zip dosyası değil" -#: frappe/core/doctype/doctype/doctype.py: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 +31281,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" @@ -31352,8 +31333,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} geçerli bir E-Posta Adresi değil." @@ -31361,15 +31342,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:174 msgid "{0} is not a valid Name" msgstr "{0} geçerli bir İsim değil" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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." @@ -31389,19 +31370,23 @@ msgstr "{0} geçerli bir rapor biçimi değil. Rapor biçimi aşağıdakilerden 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ış" @@ -31409,31 +31394,31 @@ msgstr "{0} ayarlanmamış" msgid "{0} is now default print format for {1} doctype" msgstr "{0} artık {1} belge türü için varsayılan yazdırma biçimidir" -#: frappe/public/js/frappe/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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} içerir" -#: 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:1835 msgid "{0} items selected" msgstr "{0} Kayıt Seçildi" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31466,7 +31451,7 @@ msgstr "{0} dakika önce" msgid "{0} months ago" msgstr "{0} ay önce" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "" @@ -31502,7 +31487,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 +31500,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:1211 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:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31565,11 +31550,11 @@ msgstr "{0} atamalarını kaldırdı." msgid "{0} role does not have permission on any doctype" msgstr "{0} rolünün herhangi bir DocType üzerinde izni yok." -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} satır #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" +msgstr "{0} satır #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0} başarıyla kaydedildi" @@ -31589,11 +31574,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 +31591,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" @@ -31625,7 +31610,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:254 msgid "{0} updated" msgstr "{0} Güncellendi" @@ -31669,7 +31654,7 @@ msgstr "{0} {1} zaten mevcut." 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 "" @@ -31701,75 +31686,75 @@ msgstr "" 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 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:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "{0}: Basit izinler ayarlanamadı" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31762,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:1785 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 +31770,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 "" @@ -31802,7 +31787,7 @@ msgstr "" 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 +31811,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 +31819,11 @@ msgstr "" msgid "{} Complete" msgstr "{} Tamamlandı" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "{} Muhtemelen geçersiz python kodu.
    {}" diff --git a/frappe/locale/vi.po b/frappe/locale/vi.po index 58a5454180..d7f20aaa7b 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:29\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,19 @@ 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:363 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:259 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 +98,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 +118,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:892 msgid "1 = True & 0 = False" msgstr "" @@ -144,10 +140,6 @@ msgstr "" msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - #: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -245,6 +237,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 "" @@ -479,7 +478,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 +545,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,10 +554,6 @@ 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 "" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -576,7 +571,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 +670,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:452 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 +699,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:449 +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 +723,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:459 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 +770,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 @@ -856,7 +873,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "" @@ -965,7 +982,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:501 #: 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 +993,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1005,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,10 +1038,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1100,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 +1133,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "" @@ -1248,7 +1265,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 "" @@ -1356,7 +1373,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,11 +1400,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1425,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 "" @@ -1564,7 +1581,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 +1641,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 +1662,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 +1710,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 +1942,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 +1950,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 "" @@ -2122,10 +2134,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 +2210,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 +2223,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2271,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 +2304,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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,7 +2336,11 @@ 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 "" @@ -2390,7 +2416,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2479,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 +2553,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:696 msgid "At least one column is required to show in the grid." msgstr "" @@ -2636,7 +2673,7 @@ 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 "" @@ -2667,6 +2704,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 +2725,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 +2839,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 +2851,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 +2904,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 +2952,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 +2966,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 +3237,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 +3355,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 +3386,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 +3482,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,7 +3539,7 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "" @@ -3588,7 +3562,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 +3574,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 +3704,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 +3754,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 @@ -3848,7 +3807,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 "" @@ -3874,12 +3833,13 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3857,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -3956,7 +3918,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 "" @@ -3976,11 +3938,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,7 +3993,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 +4001,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 "" @@ -4068,7 +4030,7 @@ 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 "" @@ -4080,11 +4042,11 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "" @@ -4104,7 +4066,7 @@ msgstr "" 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 +4074,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 +4091,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:1129 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4247,7 +4209,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 +4279,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 +4312,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 +4320,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,7 +4375,7 @@ 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 "" @@ -4466,7 +4428,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 +4440,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4466,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,7 +4478,11 @@ 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 "" @@ -4568,7 +4534,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4712,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4857,11 +4823,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:454 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "" @@ -4930,16 +4896,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 +4903,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 +4912,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 "" @@ -5033,7 +4989,7 @@ msgstr "" 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 "" @@ -5128,6 +5084,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 +5114,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:406 msgid "Configure Columns" msgstr "" @@ -5182,7 +5143,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5162,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5189,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 "" @@ -5355,7 +5316,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5363,7 +5323,6 @@ msgstr "" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5371,24 +5330,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 "" @@ -5464,12 +5411,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5428,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:633 msgid "Correct version :" msgstr "" @@ -5498,10 +5449,10 @@ 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 "" @@ -5638,7 +5589,7 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" @@ -5651,7 +5602,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "" @@ -5663,7 +5614,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,10 +5622,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5642,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:507 msgid "Create your first {0}" msgstr "" @@ -5717,7 +5668,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 +5680,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 "" @@ -6066,14 +6017,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6217,7 +6168,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 "" @@ -6325,7 +6276,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "" @@ -6356,7 +6307,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:249 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6445,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6611,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 "" @@ -6715,10 +6666,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6726,11 +6677,16 @@ msgstr "" msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "" @@ -6771,7 +6727,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 +6760,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6849,6 +6805,10 @@ msgstr "" msgid "Deleted all documents successfully" msgstr "" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "" @@ -6864,7 +6824,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 +6841,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:301 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6868,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 +6903,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 +6923,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 +6932,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 +7015,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 +7076,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 +7093,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 +7102,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 +7152,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 +7166,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 +7176,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 +7194,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 +7217,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,16 +7253,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "" @@ -7410,7 +7356,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 +7403,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 +7416,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 +7449,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 +7463,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,19 +7525,19 @@ 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 "" @@ -7788,7 +7734,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:1955 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7742,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:1300 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7892,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "" @@ -8174,17 +8120,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:1776 #: 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:350 #: 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 +8138,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8148,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8177,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8334,7 +8280,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 +8289,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 "" @@ -8390,6 +8336,7 @@ 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' @@ -8403,6 +8350,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 @@ -8443,7 +8391,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 "" @@ -8574,9 +8522,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 +8590,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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 "" @@ -8712,7 +8660,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 +8686,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 +8779,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 +8786,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 +8798,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 +8820,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 +8833,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 +8859,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 +8879,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 +8895,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 +8911,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 +8959,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 +9029,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 +9049,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 "" @@ -9156,9 +9097,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "" @@ -9178,7 +9119,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" @@ -9331,7 +9272,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 +9280,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,7 +9306,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" @@ -9398,7 +9339,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 +9369,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9412,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9421,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 "" @@ -9595,7 +9538,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 +9555,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 "" @@ -9625,7 +9568,7 @@ msgstr "" 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 "" @@ -9637,8 +9580,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 +9597,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 +9617,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 +9671,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 +9728,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:1870 #: 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 +9751,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9870,11 +9807,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,16 +9829,16 @@ 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:454 #: 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 "" @@ -9925,11 +9862,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1908 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 +9889,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 @@ -10001,7 +9938,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10105,7 +10042,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10164,7 +10101,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 +10115,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 +10139,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,7 +10156,7 @@ 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 "" @@ -10230,18 +10173,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 "" @@ -10329,11 +10272,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 "" @@ -10495,7 +10438,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 +10496,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:2120 +#: 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 +10523,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 +10537,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10592,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 +10652,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 +10684,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 +10781,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:1831 msgid "From Document Type" msgstr "" @@ -10858,18 +10808,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 "" @@ -10968,6 +10916,12 @@ 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 msgid "Generate Tracking URL" @@ -10992,7 +10946,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "" @@ -11298,11 +11252,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" @@ -11436,7 +11385,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 @@ -11449,7 +11397,6 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11611,6 +11558,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 @@ -11745,11 +11698,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 +11777,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "" @@ -11843,7 +11791,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 +11840,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 +11929,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,7 +12034,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12219,6 +12164,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 +12199,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 +12260,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:1120 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12326,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,11 +12352,11 @@ 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:384 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "" @@ -12433,7 +12386,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12728,7 +12681,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12752,7 +12705,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 +12780,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:1876 msgid "Insert After" msgstr "" @@ -12843,7 +12796,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 +12814,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12836,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 "" @@ -12908,7 +12865,7 @@ msgstr "" 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 +12969,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:849 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13038,7 +12995,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,7 +13015,11 @@ 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 "" @@ -13099,7 +13060,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 +13069,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 "" @@ -13125,11 +13086,11 @@ msgstr "" 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:1239 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" @@ -13148,7 +13109,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 "" @@ -13171,7 +13132,7 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" @@ -13183,6 +13144,10 @@ msgstr "" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13199,7 +13164,7 @@ msgstr "" 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 "" @@ -13235,19 +13200,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13275,12 +13236,20 @@ msgstr "" 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 +13257,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 "" @@ -13300,6 +13273,10 @@ msgstr "" msgid "Invalid request arguments" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13316,7 +13293,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 +13302,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:627 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 +13324,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 "" @@ -13486,7 +13500,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 "" @@ -13778,12 +13792,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 @@ -14056,7 +14072,7 @@ msgstr "" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14160,6 +14176,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 +14197,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" @@ -14340,7 +14356,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14436,20 +14452,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 +14492,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 +14506,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,6 +14637,10 @@ 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' @@ -14685,7 +14693,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14734,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 +14743,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,8 +14761,8 @@ 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 msgid "Loading" @@ -14769,7 +14776,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 +14786,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14847,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14980,7 +14987,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "" @@ -15160,7 +15167,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:509 msgid "Mandatory Information missing:" msgstr "" @@ -15180,7 +15187,7 @@ msgstr "" 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 +15268,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 +15350,7 @@ msgstr "" msgid "Max auto email report per user" 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 "" @@ -15358,16 +15363,11 @@ msgstr "" 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 "" @@ -15437,7 +15437,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 "" @@ -15503,7 +15503,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 +15535,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 "" @@ -15692,7 +15684,7 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" @@ -15959,7 +15951,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 "" @@ -16033,7 +16025,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16074,7 +16066,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:498 #: 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,7 +16104,7 @@ 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/views/file/file_view.js:97 @@ -16128,7 +16120,7 @@ msgstr "" 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 +16132,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 +16171,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16208,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16228,7 @@ msgstr "" msgid "Navigation Settings" 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 "" @@ -16286,10 +16278,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 +16286,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 "" @@ -16365,12 +16353,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:190 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 +16367,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 +16385,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 +16443,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:411 msgid "New {0}" msgstr "" @@ -16477,7 +16465,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 +16473,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 +16486,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,12 +16593,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16662,6 +16651,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 +16690,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16706,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16726,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "" @@ -16753,7 +16746,7 @@ 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 "" @@ -16777,7 +16770,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "" @@ -16805,19 +16798,15 @@ 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 "" @@ -16837,6 +16826,10 @@ 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 "" @@ -16909,7 +16902,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:947 msgid "No permission to read {0}" msgstr "" @@ -16937,7 +16930,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16961,7 +16954,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17013,7 +17006,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 "" @@ -17062,18 +17055,17 @@ msgstr "" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17083,9 +17075,9 @@ msgstr "" #: 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/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 +17109,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 +17125,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17153,7 @@ 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 "" @@ -17170,18 +17162,18 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17208,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:399 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17232,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 +17280,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17339,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,7 +17397,7 @@ 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 "" @@ -17520,11 +17511,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 +17634,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 "" @@ -17728,7 +17719,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 "" @@ -17772,7 +17763,7 @@ msgstr "" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" @@ -17846,7 +17837,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 +17855,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 +17863,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17878,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 +17893,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 +17912,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +17938,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 "" @@ -17975,7 +17970,7 @@ msgstr "" 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 +17979,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 +17987,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 "" @@ -18036,8 +18031,8 @@ msgstr "" 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 "" @@ -18116,9 +18111,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:1796 msgid "PDF" msgstr "" @@ -18159,11 +18154,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:629 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18330,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 "" @@ -18379,11 +18374,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 +18387,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 +18461,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18472,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18485,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:896 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18502,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 +18514,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18527,7 +18526,7 @@ msgstr "" 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 +18534,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18604,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 "" @@ -18744,16 +18745,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "" @@ -18841,8 +18842,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +18903,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 +18915,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18934,10 +18935,6 @@ 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 "" @@ -18946,7 +18943,7 @@ msgstr "" 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:1072 msgid "Please check your email for verification" msgstr "" @@ -18978,7 +18975,7 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:631 msgid "Please contact your system manager to install correct version." msgstr "" @@ -19008,8 +19005,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19048,7 +19045,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 +19082,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 "" @@ -19101,7 +19099,7 @@ msgstr "" msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19115,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:1711 msgid "Please save the report first" msgstr "" @@ -19153,7 +19151,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 +19163,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,7 +19189,7 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" @@ -19203,7 +19201,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 "" @@ -19239,23 +19237,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 +19274,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 "" @@ -19366,14 +19364,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19379,7 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19445,7 +19435,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 "" @@ -19480,13 +19470,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 +19498,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 @@ -19532,7 +19515,7 @@ msgstr "" 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 +19561,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19591,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19716,7 +19699,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19765,11 +19748,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19762,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "" @@ -19845,7 +19828,7 @@ msgstr "" msgid "Proceed Anyway" msgstr "" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "" @@ -19871,9 +19854,9 @@ 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,24 +19942,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 +19963,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 +20052,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 "" @@ -20097,7 +20067,7 @@ msgid "QR Code for Login Verification" msgstr "" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20117,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 +20217,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:309 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20254,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 @@ -20326,7 +20290,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 +20307,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 +20364,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 +20379,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 "" @@ -20482,7 +20441,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 +20452,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 +20492,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 +20509,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" @@ -20804,15 +20776,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20837,18 +20809,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:534 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:374 #: 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 +20997,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 "" @@ -21228,7 +21200,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "" @@ -21266,7 +21238,7 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "" @@ -21292,20 +21264,20 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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 "" @@ -21328,7 +21300,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 "" @@ -21458,11 +21430,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21442,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21481,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "" @@ -21547,6 +21519,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 +21529,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 +21587,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 "" @@ -21671,9 +21639,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 +21680,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 +21694,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 @@ -21775,7 +21743,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21786,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 +21796,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 +21833,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 +21853,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 +21864,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 @@ -21926,12 +21892,12 @@ msgstr "" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -21939,7 +21905,7 @@ msgstr "" msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21967,7 +21933,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,25 +21941,25 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "" @@ -22089,7 +22055,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 +22133,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 +22161,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22183,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:1735 msgid "Save As" msgstr "" @@ -22234,7 +22196,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "" @@ -22263,7 +22225,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 +22304,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 "" @@ -22510,7 +22472,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 "" @@ -22619,7 +22581,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 +22628,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,12 +22636,12 @@ 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:497 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" @@ -22690,7 +22652,7 @@ msgstr "" 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 "" @@ -22754,12 +22716,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:489 #: 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 "" @@ -22805,8 +22770,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:598 msgid "Select Network Printer" msgstr "" @@ -22874,11 +22839,11 @@ msgstr "" msgid "Select a group node first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +22873,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +22913,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 +23097,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23191,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 "" @@ -23255,7 +23220,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 "" @@ -23360,7 +23325,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:2104 msgid "Set Level" msgstr "" @@ -23414,7 +23379,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23555,14 +23520,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 +23538,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23608,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 +23627,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 +23679,7 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23807,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:1845 msgid "Show Tags" msgstr "" @@ -23874,7 +23824,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 +23864,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 +23912,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 +23942,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 +23977,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 "" @@ -24091,7 +24037,7 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "" @@ -24324,11 +24270,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,13 +24305,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24373,6 +24318,10 @@ msgstr "" 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 +24348,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 "" @@ -24460,7 +24415,7 @@ msgstr "" 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 "" @@ -24516,8 +24471,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 +24480,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 @@ -24598,7 +24553,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 +24609,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 +24634,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 +24642,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 +24680,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:454 msgid "Sticky" msgstr "" @@ -24753,6 +24710,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:490 +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." @@ -24847,7 +24808,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24872,7 +24833,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,7 +24843,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,7 +24867,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 +24879,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 +24891,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +24900,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 +24927,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 +24941,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:1171 #: 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 +24983,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 +25034,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 +25156,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "" @@ -25324,6 +25279,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 +25362,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 +25436,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 +25445,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,7 +25467,7 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "" @@ -25556,11 +25513,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 +25586,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25658,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 +25682,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:1193 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,7 +25693,7 @@ 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 "" @@ -25737,7 +25701,7 @@ msgstr "" 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 +25742,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 +25750,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25886,11 +25850,11 @@ msgid "The project number obtained from Google Cloud Console under " 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 "" @@ -25927,7 +25891,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 "" @@ -25976,7 +25940,7 @@ msgstr "" 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,6 +25952,10 @@ 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 "" @@ -26020,11 +25988,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 "" @@ -26112,7 +26080,7 @@ 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 "" @@ -26174,7 +26142,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 +26161,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26185,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 +26203,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:423 msgid "This may get printed on multiple pages" msgstr "" @@ -26288,7 +26250,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 +26282,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:1253 msgid "Throttled" msgstr "" @@ -26472,11 +26434,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 "" @@ -26525,9 +26487,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 +26511,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 +26533,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 "" @@ -26726,7 +26682,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 +26698,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26748,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 +26764,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26826,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +26872,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 "" @@ -27026,6 +26982,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 +27001,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "" @@ -27051,7 +27012,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 +27096,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 "" @@ -27482,8 +27443,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 +27459,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27572,7 +27532,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:427 msgid "Update" msgstr "" @@ -27648,7 +27608,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 +27616,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 "" @@ -27829,7 +27789,7 @@ msgstr "" 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 +27810,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 +27821,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 +27836,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 +27850,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 +27867,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 +27901,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 +27965,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 +27984,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 +28007,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28025,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 +28093,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 +28127,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 +28148,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1382 msgid "User {0} impersonated as {1}" msgstr "" @@ -28212,7 +28177,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 +28261,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 "" @@ -28368,7 +28333,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" @@ -28414,7 +28379,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 +28392,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 +28454,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:156 msgid "View Doctype Permissions" msgstr "" @@ -28519,7 +28476,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28523,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 "" @@ -28643,7 +28600,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 "" @@ -28832,7 +28789,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 +28802,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 +28845,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 +29062,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 "" @@ -29206,7 +29154,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 +29180,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 +29192,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,7 +29231,7 @@ 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" @@ -29344,11 +29307,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 "" @@ -29371,7 +29334,7 @@ msgstr "" 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,7 +29353,7 @@ 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 "" @@ -29448,14 +29411,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29532,11 +29496,11 @@ msgstr "" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29524,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 +29550,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 "" @@ -29629,7 +29597,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 "" @@ -29659,11 +29627,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29649,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29732,7 +29700,7 @@ msgstr "" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,7 +29712,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "" @@ -29756,19 +29724,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29744,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 +29764,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:501 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29781,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:804 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:645 msgid "You must login to submit this form" msgstr "" @@ -29853,12 +29817,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 @@ -29928,10 +29892,22 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -29985,10 +29961,18 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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 "" @@ -30093,7 +30077,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 +30222,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 +30284,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 +30299,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 "" @@ -30378,11 +30357,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 +30380,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 "" @@ -30594,19 +30568,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "" @@ -30659,6 +30633,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 +30664,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 +30678,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "" @@ -30733,10 +30711,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30747,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 +30777,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:486 +#: 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 +30813,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 +30843,6 @@ msgstr "" 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 +30867,7 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30960,11 +30946,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 "" @@ -31031,7 +31013,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,7 +31022,7 @@ 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 "" @@ -31048,15 +31030,15 @@ msgstr "" 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 +31047,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 "" @@ -31117,8 +31099,8 @@ msgstr "" 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:206 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31108,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:174 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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 "" @@ -31154,19 +31136,23 @@ msgstr "" 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 "" @@ -31174,31 +31160,31 @@ msgstr "" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" -#: 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:1835 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,7 +31217,7 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "" @@ -31267,7 +31253,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 +31266,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:1211 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31330,11 +31316,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1795 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31340,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 +31357,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 "" @@ -31390,7 +31376,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:254 msgid "{0} updated" msgstr "" @@ -31434,7 +31420,7 @@ msgstr "" 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 "" @@ -31466,75 +31452,75 @@ msgstr "" 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31528,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31536,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 "" @@ -31567,7 +31553,7 @@ msgstr "" 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 +31577,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 +31585,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "" diff --git a/frappe/locale/zh.po b/frappe/locale/zh.po index 674e5bbe47..64d513cae9 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-08-31 09:33+0000\n" +"PO-Revision-Date: 2025-09-01 16:28\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,19 @@ 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:363 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:259 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 +98,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 +118,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:892 msgid "1 = True & 0 = False" msgstr "1=真 & 0=假" @@ -145,10 +141,6 @@ msgstr "已同步1个Google日历事件" 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 msgid "1 day ago" msgstr "1天前" @@ -246,6 +238,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" @@ -641,7 +640,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 +730,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,10 +739,6 @@ 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 "推荐文章必须包含封面图片" - #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "字段{0}已在{1}中存在" @@ -761,7 +756,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 +855,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:452 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 +884,10 @@ msgstr "与中继服务器交互的API密钥和密钥。当从本站点安装的 msgid "API Key cannot be regenerated" msgstr "无法重新生成API密钥" +#: frappe/core/doctype/user/user.js:449 +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 +908,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:459 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 +955,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 @@ -1041,7 +1058,7 @@ msgstr "操作 / 网址路径" msgid "Action Complete" msgstr "操作完成" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1884 msgid "Action Failed" msgstr "操作失败" @@ -1150,7 +1167,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:501 #: 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 +1178,7 @@ msgstr "用户操作日志" msgid "Add" msgstr "添加" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:454 msgid "Add / Remove Columns" msgstr "添加/移除列" @@ -1173,7 +1190,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 "添加附件" @@ -1206,10 +1223,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:1823 +#: frappe/public/js/frappe/views/reports/query_report.js:1826 +#: 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 +1285,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 +1318,12 @@ msgstr "添加订阅者" msgid "Add Tags" msgstr "添加标签" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2145 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 "新建模板" @@ -1433,7 +1450,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}" @@ -1541,7 +1558,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 "系统管理" @@ -1568,11 +1585,11 @@ msgstr "系统管理" msgid "Administrator" msgstr "管理员" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1224 msgid "Administrator Logged In" msgstr "管理员登录" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1218 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "管理员访问{0}在{1}通过IP地址{2}。" @@ -1593,8 +1610,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 "高级搜索" @@ -1749,7 +1766,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 +1826,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 +1847,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 +1895,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 +2128,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 +2136,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}" @@ -2308,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" @@ -2382,6 +2396,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 +2409,7 @@ msgstr "应用于" msgid "Apply" msgstr "应用" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2130 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "应用分配规则" @@ -2439,7 +2457,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 +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:2109 msgid "Are you sure you want to clear the assignments?" msgstr "确定要清除分配吗?" @@ -2500,7 +2522,11 @@ 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 "确定要放弃更改吗?" @@ -2576,7 +2602,7 @@ msgstr "分派条件" msgid "Assign To" msgstr "执行人" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2091 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "分配给" @@ -2639,6 +2665,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 +2739,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:696 msgid "At least one column is required to show in the grid." msgstr "网格中需要至少显示一列。" @@ -2822,7 +2859,7 @@ 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 "附件" @@ -2853,6 +2890,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 +2911,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 +3025,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 +3037,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 +3090,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 +3138,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 +3152,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 +3423,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 +3541,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 +3572,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 +3669,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,7 +3726,7 @@ msgstr "批量删除" msgid "Bulk Edit" msgstr "批量修改" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1189 msgid "Bulk Edit {0}" msgstr "批量编辑{0}" @@ -3775,7 +3749,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 +3761,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 +3891,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 +3941,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 @@ -4035,7 +3994,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 "仅在单据类型无数据时修改自增编号" @@ -4061,12 +4020,13 @@ msgstr "无法将{0}重命名为{1},因为{0}不存在。" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype_list.js:130 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/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:2200 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "取消" @@ -4084,16 +4044,18 @@ msgstr "全部取消" msgid "Cancel All Documents" msgstr "取消所有单据" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2205 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 @@ -4143,7 +4105,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}" @@ -4163,11 +4125,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 "定制表单不支持修改自增编号" @@ -4218,7 +4180,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 +4188,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 "无法编辑标准通知。要进行编辑,请勾选禁用然后复制它" @@ -4255,7 +4217,7 @@ 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}" @@ -4267,11 +4229,11 @@ msgstr "无法在磁盘上找到文件{}" msgid "Cannot get file contents of a Folder" msgstr "无法获取文件夹内容" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:857 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:1133 msgid "Cannot import table with more than 5000 rows." msgstr "无法导入超过5000行的表格。" @@ -4291,7 +4253,7 @@ msgstr "上传文件中的字段{0}无法匹配目标单据字段" 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 +4261,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 +4278,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:1129 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1157 msgid "Cannot use {0} in order/group by" msgstr "不能在order/group by中使用{0}" @@ -4434,9 +4396,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 +4466,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 +4499,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 +4507,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}" @@ -4601,7 +4562,7 @@ 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}" @@ -4654,7 +4615,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 +4627,7 @@ msgstr "清除并添加模板" msgid "Clear All" msgstr "清空全部" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2106 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "清除分配" @@ -4692,7 +4653,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,7 +4665,11 @@ 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 "点击此处" @@ -4756,7 +4721,7 @@ msgstr "点击设置动态筛选器" msgid "Click to Set Filters" msgstr "单击设置过滤条件" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:739 msgid "Click to sort by {0}" msgstr "点击按{0}排序" @@ -4934,7 +4899,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:2104 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "全部折叠" @@ -5045,11 +5010,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:454 msgid "Column Width" msgstr "列宽" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:661 msgid "Column width cannot be zero." msgstr "列宽不能为零。" @@ -5118,16 +5083,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 +5090,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 +5099,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 "评论不能包含链接或电子邮件地址" @@ -5221,7 +5176,7 @@ msgstr "公司名" 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 "编译警告" @@ -5316,6 +5271,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 +5301,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:406 msgid "Configure Columns" msgstr "列设置" @@ -5372,7 +5332,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:412 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "确认" @@ -5391,7 +5351,7 @@ msgstr "确认访问" msgid "Confirm Deletion of Account" msgstr "确认删除账户" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:196 msgid "Confirm New Password" msgstr "确认新密码" @@ -5418,7 +5378,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 "连接到{}" @@ -5545,7 +5505,6 @@ msgstr "包含{0}个安全修复" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the 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' @@ -5553,7 +5512,6 @@ msgstr "包含{0}个安全修复" #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json @@ -5561,24 +5519,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 "内容类型" @@ -5654,12 +5600,16 @@ msgstr "将出错日志复制到剪贴板" msgid "Copy to Clipboard" msgstr "复制到剪贴板" +#: frappe/core/doctype/user/user.js:480 +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:123 msgid "Core DocTypes cannot be customized." msgstr "不能定制系统核心单据类型。" @@ -5667,7 +5617,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:633 msgid "Correct version :" msgstr "正确版本:" @@ -5688,10 +5638,10 @@ 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 "不能保存,请检查输入的数据" @@ -5828,7 +5778,7 @@ msgstr "创建日志" msgid "Create New" msgstr "新建" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:512 msgctxt "Create a new document from list view" msgid "Create New" msgstr "新建" @@ -5841,7 +5791,7 @@ msgstr "创建新单据类型" msgid "Create New Kanban Board" msgstr "新建看板面板" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:276 msgid "Create User Email" msgstr "创建用户电子邮件" @@ -5853,7 +5803,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,10 +5811,10 @@ 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/list/list_view.js:504 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "新建{0}" @@ -5881,7 +5831,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:507 msgid "Create your first {0}" msgstr "新建 {0}" @@ -5907,7 +5857,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 +5869,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}" @@ -6256,14 +6206,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:1943 msgctxt "Button in list view menu" msgid "Customize" msgstr "自定义" @@ -6407,7 +6357,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 "数据面板" @@ -6515,7 +6465,7 @@ msgstr "数据导入日志" msgid "Data Import Template" msgstr "数据导入模板" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:615 msgid "Data Too Long" msgstr "数据过长" @@ -6546,7 +6496,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:249 msgid "Database Table Row Size Limit" msgstr "数据库表行大小限制" @@ -6684,11 +6634,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:313 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:305 msgid "Decimal Separator must be a single character" msgstr "小数分隔符必须为单个字符" @@ -6850,11 +6800,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}的默认值必须在选项列表中。" @@ -6905,10 +6855,10 @@ 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:1742 #: frappe/public/js/frappe/views/treeview.js:329 #: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 @@ -6916,11 +6866,16 @@ msgstr "已逾期" msgid "Delete" msgstr "删除" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2168 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 "删除账户" @@ -6961,7 +6916,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 +6949,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:2173 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:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "永久删除 {0} 项?" @@ -7039,6 +6994,10 @@ msgstr "删除名称" msgid "Deleted all documents successfully" msgstr "已成功删除选择的单据" +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "已删除!" + #: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "删除{0}" @@ -7054,8 +7013,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 +7030,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:301 msgid "Delimiter must be a single character" msgstr "分隔符必须为单个字符" @@ -7098,7 +7057,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 +7092,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 +7112,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 +7121,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 +7204,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 +7265,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 +7282,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 +7291,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 +7341,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 +7355,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 +7365,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 +7383,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 +7406,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,16 +7442,16 @@ 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:1194 msgid "Do not edit headers which are preset in the template" msgstr "不要编辑模板中预设的标题" @@ -7603,7 +7548,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 +7595,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 +7608,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 +7641,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 +7655,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,19 +7717,19 @@ 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} 行:内部链接必须指定表字段名" @@ -7981,7 +7926,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:1955 msgid "Document Unlocked" msgstr "文档已解锁" @@ -7989,15 +7934,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:1300 msgid "Document has been cancelled" msgstr "文档已取消" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1299 msgid "Document has been submitted" msgstr "文档已提交" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1298 msgid "Document is in draft state" msgstr "文档处于草稿状态" @@ -8139,13 +8084,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:467 #: 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:242 msgctxt "Export report" msgid "Download" msgstr "下载" @@ -8367,17 +8312,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:1776 #: 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:350 #: 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 +8330,7 @@ msgstr "退出" msgid "Edit" msgstr "编辑" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2254 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "编辑" @@ -8395,7 +8340,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:349 msgctxt "Edit grid row" msgid "Edit" msgstr "编辑" @@ -8424,7 +8369,7 @@ msgstr "编辑自定义HTML" msgid "Edit DocType" msgstr "修改单据类型" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1970 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "编辑文档类型" @@ -8527,7 +8472,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 +8481,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}" @@ -8583,6 +8528,7 @@ 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' @@ -8596,6 +8542,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 @@ -8636,7 +8583,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 "电子邮箱帐号已被多次添加" @@ -8767,10 +8714,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 +8782,11 @@ msgstr "电子邮件已被标记为垃圾邮件" msgid "Email has been moved to trash" msgstr "电子邮件已被移至垃圾桶" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:278 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}(退订/禁用)" @@ -8905,7 +8852,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 +8878,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 +8971,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 +8978,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 +8990,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 +9013,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 +9026,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 +9052,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 +9072,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 +9088,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 +9104,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 +9152,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 +9222,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 +9242,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 "错误" @@ -9350,9 +9290,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:640 +#: frappe/email/doctype/notification/notification.py:780 +#: frappe/email/doctype/notification/notification.py:786 msgid "Error in Notification" msgstr "通知错误" @@ -9372,7 +9312,7 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "连接到电子邮箱帐号{0}时出错" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:777 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "评估通知{0}时出错。请修复您的模板。" @@ -9525,7 +9465,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 +9473,7 @@ msgstr "" msgid "Executing..." msgstr "正在执行..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2123 msgid "Execution Time: {0} sec" msgstr "运行时间:{0}秒" @@ -9559,7 +9499,7 @@ 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:2104 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "全部展开" @@ -9592,7 +9532,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 +9562,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:1811 +#: 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:2276 msgctxt "Button in list view actions menu" msgid "Export" msgstr "导出" @@ -9663,7 +9605,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:240 msgctxt "Export report" msgid "Export Report: {0}" msgstr "导出报告:{0}" @@ -9672,11 +9614,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}行?" @@ -9789,7 +9731,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 +9748,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 "计算请求正文失败:{}" @@ -9819,7 +9761,7 @@ msgstr "无法连接服务器" 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}失败" @@ -9831,8 +9773,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 +9790,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 +9810,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 +9864,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 +9921,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:1870 #: 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 +9944,7 @@ msgstr "字段值必填。请指定值进行更新" msgid "Field Description" msgstr "字段说明" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "缺失字段" @@ -10064,11 +10000,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:545 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "文档{1}的字段{0}既不是手机号码字段,也不是客户或用户链接字段" @@ -10086,16 +10022,16 @@ 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:454 #: 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}的字段才能启用自动命名" @@ -10119,11 +10055,11 @@ msgstr "字段名{0}重复出现" 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:1908 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 +10082,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 @@ -10195,7 +10131,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:589 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "第{2}行中的字段类型不能从{0}更改为{1}" @@ -10299,7 +10235,7 @@ msgstr "文件" #: frappe/desk/doctype/number_card/number_card.js:205 #: frappe/desk/doctype/number_card/number_card.js:336 #: frappe/email/doctype/auto_email_report/auto_email_report.js:93 -#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/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" @@ -10358,7 +10294,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 +10308,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 +10332,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,7 +10349,7 @@ 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}" @@ -10424,18 +10366,18 @@ msgstr "过滤器可通过filters访问。

    发送输出为" msgstr "页脚可能不可见,因为{0}选项已禁用" @@ -10747,8 +10689,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:2120 +#: 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 +10716,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 +10730,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:1752 msgid "For {0} at level {1} in {2} in row {3}" msgstr "对行{3},{2}中级别{1}的{0}" @@ -10849,7 +10785,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 +10845,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 +10877,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 +10974,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:1831 msgid "From Document Type" msgstr "单据类型" @@ -11052,18 +11001,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 "全屏显示" @@ -11162,6 +11109,12 @@ 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 msgid "Generate Tracking URL" @@ -11186,7 +11139,7 @@ msgstr "地理位置" msgid "Geolocation Settings" msgstr "地理位置设置" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:222 msgid "Get Alerts for Today" msgstr "获取今天的预警通知" @@ -11492,11 +11445,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" @@ -11630,7 +11578,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 @@ -11643,7 +11590,6 @@ msgstr "时:分:秒" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11805,6 +11751,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 @@ -11939,11 +11891,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 +11970,7 @@ msgstr "隐藏左边栏,菜单及评论" msgid "Hide Standard Menu" msgstr "隐藏标准菜单" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1845 msgid "Hide Tags" msgstr "隐藏标签" @@ -12037,7 +11984,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 +12033,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 +12122,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/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "标识符" @@ -12283,7 +12227,7 @@ 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:1764 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" @@ -12413,6 +12357,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 +12392,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 +12453,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:1120 msgid "Illegal SQL Query" msgstr "非法SQL查询" @@ -12567,11 +12519,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,11 +12545,11 @@ 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:384 msgid "Impersonate" msgstr "用其它用户身份登录" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:411 msgid "Impersonate as {0}" msgstr "被模拟的用户" @@ -12627,7 +12579,7 @@ msgstr "隐式" msgid "Import" msgstr "导入" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1907 msgctxt "Button in list view menu" msgid "Import" msgstr "导入" @@ -12922,7 +12874,7 @@ msgstr "配置错误" msgid "Incorrect URL" msgstr "URL错误" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "不正确的用户或密码" @@ -12946,7 +12898,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 +12973,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:1876 msgid "Insert After" msgstr "在后边插入" @@ -13037,7 +12989,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 +13007,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:674 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:675 msgid "Install {0} from Marketplace" msgstr "从应用市场安装{0}" @@ -13073,7 +13029,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 "已安装应用" @@ -13102,7 +13058,7 @@ msgstr "删除报表权限不足" 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 +13162,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:849 +#: 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”表达式无效" @@ -13232,7 +13188,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,7 +13208,11 @@ 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 "字段名无效" @@ -13293,7 +13253,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 +13262,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 "错误选项" @@ -13319,11 +13279,11 @@ msgstr "无效的输出格式" 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:1239 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" @@ -13342,7 +13302,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 "表字段名无效" @@ -13365,7 +13325,7 @@ 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密钥无效" @@ -13377,6 +13337,10 @@ msgstr "无效聚合函数" 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:1468 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" @@ -13393,7 +13357,7 @@ msgstr "" 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 "无效列" @@ -13429,19 +13393,15 @@ msgstr "" msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2199 msgid "Invalid field name {0}" msgstr "字段名称{0}无效" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - #: frappe/database/query.py:668 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "编号规则中字段名“{0}”无效" @@ -13469,12 +13429,20 @@ msgstr "" 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 +13450,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 "导入内容无效或损坏" @@ -13494,6 +13466,10 @@ msgstr "第{}行重定向正则表达式无效:{}" msgid "Invalid request arguments" msgstr "请求参数无效" +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + #: frappe/database/query.py:410 msgid "Invalid simple filter format: {0}" msgstr "" @@ -13510,7 +13486,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 +13495,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:627 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 +13517,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 "是" @@ -13680,7 +13693,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 "已发布字段必须是有效字段" @@ -13972,12 +13985,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 @@ -14250,7 +14265,7 @@ msgstr "横向打印" #: 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/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "语言" @@ -14354,6 +14369,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 +14390,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" @@ -14534,7 +14549,7 @@ msgstr "信" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 +#: frappe/printing/page/print/print.js:140 #: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 @@ -14630,20 +14645,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 +14685,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 +14699,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,6 +14830,10 @@ 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' @@ -14879,7 +14886,7 @@ msgstr "列表过滤条件" msgid "List Settings" msgstr "列表设置" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view menu" msgid "List Settings" msgstr "列表设置" @@ -14920,7 +14927,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 +14936,8 @@ msgstr "列表" msgid "Load Balancing" msgstr "均衡分派" -#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/list/base_list.js:399 #: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "加载更多" @@ -14948,8 +14954,8 @@ 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 msgid "Loading" @@ -14963,7 +14969,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 +14979,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:179 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "载入中..." @@ -15034,7 +15040,7 @@ msgstr "请登录后访问该网页" msgid "Log out" msgstr "退出系统" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "登出" @@ -15174,7 +15180,7 @@ msgstr "" msgid "Logout" msgstr "注销" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:202 msgid "Logout All Sessions" msgstr "退出所有会话" @@ -15354,7 +15360,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:509 msgid "Mandatory Information missing:" msgstr "必填字段信息缺失:" @@ -15374,7 +15380,7 @@ msgstr "表{0}第{1}行有必填字段," 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 +15461,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 +15543,7 @@ msgstr "最大附件尺寸" msgid "Max auto email report per user" 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 "行{0}中,货币类型的最大宽度是100像素" @@ -15552,16 +15556,11 @@ msgstr "最大值" 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}行" @@ -15631,7 +15630,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 "只有组和组,叶节点和叶节点之间能合并" @@ -15697,7 +15696,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 +15728,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 "元标题" @@ -15886,7 +15877,7 @@ msgstr "小姐" msgid "Missing DocType" msgstr "缺失文档类型" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "缺失字段" @@ -16153,7 +16144,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 "很可能是密码过长导致" @@ -16227,7 +16218,7 @@ msgstr "太太" msgid "Ms" msgstr "女士" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "不允许多个根节点。" @@ -16268,7 +16259,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:498 #: 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,7 +16297,7 @@ 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/views/file/file_view.js:97 @@ -16322,7 +16313,7 @@ msgstr "名称(文档名)" 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 +16325,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 +16366,7 @@ msgstr "编号规则" msgid "Naming Series" msgstr "单据编号模板" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "单据编号模板是必填字段" @@ -16412,12 +16403,12 @@ msgstr "导航栏模板" msgid "Navbar Template Values" msgstr "导航栏模板值" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1378 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:1385 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "向上导航列表" @@ -16432,7 +16423,7 @@ msgstr "跳转到主要内容" msgid "Navigation Settings" 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 "需具备工作区管理员角色才能编辑其他用户的私有工作区" @@ -16482,10 +16473,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 +16481,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 "新自定义打印格式" @@ -16561,12 +16548,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:190 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 +16562,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 +16580,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 +16638,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:411 msgid "New {0}" msgstr "新建 {0}" @@ -16673,7 +16660,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 +16668,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 +16681,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,12 +16788,13 @@ 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/website/doctype/help_article/templates/help_article.html:26 @@ -16858,6 +16846,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 +16885,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:716 +#: frappe/printing/page/print/print.js:797 #: 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 +16901,7 @@ msgstr "{0}未指定名称" msgid "No New notifications" msgstr "暂无新通知" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1744 msgid "No Permissions Specified" msgstr "未指定权限" @@ -16929,11 +16921,11 @@ msgstr "该仪表盘无可用图表" msgid "No Preview" msgstr "无预览" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:720 msgid "No Preview Available" msgstr "预览不可用" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:875 msgid "No Printer is Available." msgstr "没有可用打印机。" @@ -16949,7 +16941,7 @@ 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 "未分派角色" @@ -16973,7 +16965,7 @@ msgstr "无未处理事项" msgid "No address added yet." msgstr "未添加地址。" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:232 msgid "No alerts for today" msgstr "今天无预警通知" @@ -17001,19 +16993,15 @@ 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 "文档未关联联系人" @@ -17033,6 +17021,10 @@ 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 "无出错信息" @@ -17105,7 +17097,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:947 msgid "No permission to read {0}" msgstr "没有读取{0}的权限" @@ -17133,7 +17125,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,7 +17149,7 @@ msgstr "未找到{0}" msgid "No {0} found" msgstr "没有找到{0}" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:497 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "未找到匹配当前筛选条件的{0},请清除筛选条件后查看全部{0}" @@ -17209,7 +17201,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 "不允许" @@ -17258,18 +17250,17 @@ msgstr "不可为空" #: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:747 #: 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:560 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" @@ -17279,9 +17270,9 @@ msgstr "未发布" #: 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/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 +17304,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 +17320,11 @@ msgstr "非活动" msgid "Not allowed for {0}: {1}" msgstr "不允许{0}:{1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:637 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,7 +17348,7 @@ 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中设置或创建一个自定义单据类型" @@ -17366,18 +17357,18 @@ msgstr "未开启开发模式!请在site_config.json中设置或创建一个 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:760 #: 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 +17403,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:399 msgid "Note: This will be shared with user." msgstr "此登录行为将通知对应用户" @@ -17436,10 +17427,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 +17475,15 @@ msgstr "订阅通知的文档" msgid "Notification sent to" msgstr "通知已发送至" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:542 msgid "Notification: customer {0} has no Mobile number set" msgstr "通知:客户{0}未设置手机号码" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:528 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:537 msgid "Notification: user {0} has no Mobile number set" msgstr "通知:用户{0}未设置手机号码" @@ -17544,7 +17534,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,7 +17592,7 @@ 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 "附件字段数超过{},限制已更新为{}。" @@ -17716,11 +17706,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 +17829,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}写道:" @@ -17924,7 +17914,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 "数据字段仅允许以下选项:" @@ -17968,7 +17958,7 @@ msgstr "仅报表生成器类型的报告可删除" 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:129 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "只允许从“定制表单”定制标准DocType。" @@ -18042,7 +18032,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 +18050,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 +18058,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:1431 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "打开列表项" @@ -18083,13 +18073,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 +18088,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 +18107,7 @@ msgstr "开业" msgid "Operation" msgstr "工序" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2130 msgid "Operator must be one of {0}" msgstr "运算符必须是{0}" @@ -18139,7 +18133,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}未被定义为是子表" @@ -18171,7 +18165,7 @@ msgstr "可选:在这个表达式为真时发送通知" 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 +18174,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 +18182,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}的选项。" @@ -18232,8 +18226,8 @@ msgstr "公司发展历程标题" 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 "原值" @@ -18312,9 +18306,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:1796 msgid "PDF" msgstr "PDF" @@ -18355,11 +18349,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:629 msgid "PDF generation may not work as expected." msgstr "PDF生成可能无法按预期工作。" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:547 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "不支持通过 \"原始打印 \"进行 PDF 打印。" @@ -18531,7 +18525,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}页" @@ -18575,11 +18569,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 +18582,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 +18656,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:177 frappe/core/doctype/user/user.js:224 +#: frappe/core/doctype/user/user.js:244 #: 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 +18667,7 @@ msgstr "已创建" msgid "Password" msgstr "密码" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1092 msgid "Password Email Sent" msgstr "密码邮件已发送" @@ -18686,7 +18680,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:896 msgid "Password cannot be filtered" msgstr "密码不可被过滤" @@ -18703,6 +18697,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 +18709,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:1091 msgid "Password reset instructions have been sent to {}'s email" msgstr "密码重置说明已发送至{}的邮箱" @@ -18723,7 +18721,7 @@ msgstr "密码已设置" 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 +18729,7 @@ msgstr "密码长度超过允许最大值" msgid "Passwords do not match" msgstr "密码不匹配" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:210 msgid "Passwords do not match!" msgstr "密码不匹配!" @@ -18801,10 +18799,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 "待处理" @@ -18940,16 +18940,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:143 frappe/core/doctype/user/user.js:152 +#: frappe/core/doctype/user/user.js:161 #: 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:1835 +#: frappe/core/doctype/doctype/doctype.py:1845 msgid "Permissions Error" msgstr "权限错误" @@ -19037,8 +19037,8 @@ 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/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "选择报表输出字段" @@ -19098,11 +19098,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 +19110,7 @@ msgstr "请在您的电子邮件中添加主题" msgid "Please add a valid comment." msgstr "请添加有效评论" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1074 msgid "Please ask your administrator to verify your sign-up" msgstr "请联络管理员确认您的注册" @@ -19130,10 +19130,6 @@ 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 "请检查仪表板图表设置的过滤值:{}" @@ -19142,7 +19138,7 @@ msgstr "请检查仪表板图表设置的过滤值:{}" 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:1072 msgid "Please check your email for verification" msgstr "请在您的电子邮件中查看验证码" @@ -19174,7 +19170,7 @@ 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:631 msgid "Please contact your system manager to install correct version." msgstr "请联系系统管理员安装正确版本" @@ -19204,8 +19200,8 @@ 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:651 +#: frappe/printing/page/print/print.js:681 #: frappe/public/js/frappe/list/bulk_operations.js:161 #: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" @@ -19244,7 +19240,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 +19277,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,7 +19294,7 @@ msgstr "请确保参考通信单据未被递归引用。" msgid "Please refresh to get the latest document." msgstr "请刷新获取最新数据。" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:548 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "请在打印机设置中移除打印机映射后重试" @@ -19313,7 +19310,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:1711 msgid "Please save the report first" msgstr "请先保存报表" @@ -19349,7 +19346,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 +19358,7 @@ msgstr "请选择有效日期过滤器" msgid "Please select applicable Doctypes" msgstr "请选择单据类型" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1152 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "请选择从{0}进行排序/组ATLEAST 1柱" @@ -19387,7 +19384,7 @@ msgstr "请选择{0}" msgid "Please set Email Address" msgstr "请设置电子邮件地址" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:562 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "请在“打印机设置”中为此打印格式设置打印机映射" @@ -19399,7 +19396,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 "请设置文档名称" @@ -19435,23 +19432,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 +19469,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" @@ -19562,14 +19559,6 @@ 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 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19585,7 +19574,7 @@ msgstr "" msgid "Precision" msgstr "精度" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "精度应为1和6之间" @@ -19641,7 +19630,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 "将模板内容追加到邮件正文(消息)" @@ -19676,13 +19665,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 +19693,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 @@ -19728,7 +19710,7 @@ msgstr "上一条" 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 +19756,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/reports/query_report.js:1782 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 #: frappe/public/js/frappe/views/treeview.js:490 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:2160 msgctxt "Button in list view actions menu" msgid "Print" msgstr "打印" @@ -19804,8 +19786,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:834 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19912,7 +19894,7 @@ 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/printing/page/print/print.js:173 #: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" @@ -19961,11 +19943,11 @@ msgstr "打印单据" msgid "Print with letterhead" msgstr "打印表头" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:843 msgid "Printer" msgstr "打印机" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:820 msgid "Printer Mapping" msgstr "打印机映射" @@ -19975,11 +19957,11 @@ msgstr "打印机映射" msgid "Printer Name" msgstr "打印机名称" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:812 msgid "Printer Settings" msgstr "打印机设置" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:561 msgid "Printer mapping not set." msgstr "未设置打印机映射" @@ -20041,7 +20023,7 @@ msgstr "继续" msgid "Proceed Anyway" msgstr "仍然继续" -#: frappe/public/js/frappe/form/controls/table.js:104 +#: frappe/public/js/frappe/form/controls/table.js:119 msgid "Processing" msgstr "处理" @@ -20067,9 +20049,9 @@ 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 "属性" @@ -20155,24 +20137,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 +20158,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 +20247,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" @@ -20293,8 +20262,8 @@ msgid "QR Code for Login Verification" msgstr "用于登录验证的QR码" #: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "QZ托盘失败: " +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 +20312,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 +20412,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:309 msgid "Quoting must be between 0 and 3" msgstr "引用级别须在0至3之间" @@ -20480,12 +20449,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 @@ -20522,7 +20485,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 +20502,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 +20559,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 +20574,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 "查阅文档以了解更多" @@ -20678,7 +20636,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 +20647,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 +20687,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 +20704,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" @@ -21000,15 +20971,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/reports/query_report.js:1771 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 -#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:343 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "刷新" @@ -21033,18 +21004,18 @@ msgstr "刷新Google表格" msgid "Refresh Token" msgstr "刷新令牌" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:534 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:374 #: 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 +21192,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 "已变更文件名并替换了控制器类中的代码,请检查!" @@ -21424,7 +21395,7 @@ msgstr "报表管理" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1956 msgid "Report Name" msgstr "报表名称" @@ -21462,7 +21433,7 @@ msgstr "报表视图" msgid "Report bug" msgstr "报告缺陷" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1810 msgid "Report cannot be set for Single types" msgstr "报表不能单类型设置" @@ -21488,20 +21459,20 @@ msgstr "达到报表限制" msgid "Report timed out." msgstr "报表超时" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:615 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:1994 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}" @@ -21524,7 +21495,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 "报表" @@ -21654,11 +21625,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:184 frappe/core/doctype/user/user.js:187 msgid "Reset LDAP Password" msgstr "重置LDAP密码" @@ -21666,11 +21637,11 @@ msgstr "重置LDAP密码" msgid "Reset Layout" msgstr "重置" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:235 msgid "Reset OTP Secret" msgstr "重置一次性密码" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:168 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 +21676,7 @@ msgstr "重置为默认" msgid "Reset sorting" msgstr "重置排序" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:433 msgid "Reset to default" msgstr "恢复默认设置" @@ -21743,6 +21714,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 +21724,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 +21782,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 "限制条件" @@ -21867,9 +21834,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 +21875,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 +21889,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 @@ -21971,7 +21938,7 @@ msgstr "角色权限" msgid "Role Permissions Manager" msgstr "角色权限管理" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1929 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "角色权限管理器" @@ -22014,6 +21981,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 +21991,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 +22028,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 +22048,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 +22059,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,12 +22087,12 @@ msgstr "路径: 例如 \"/app\"" 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:1832 +#: frappe/core/doctype/doctype/doctype.py:1842 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "行号{0}:非管理员用户无法为自定义文档类型设置角色{1}" @@ -22135,7 +22100,7 @@ msgstr "行号{0}:非管理员用户无法为自定义文档类型设置角色 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 "行号{}:字段名必填" @@ -22163,7 +22128,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,25 +22136,25 @@ msgstr "明细表变更" msgid "Row {0}" msgstr "第{0}行" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:353 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:342 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 "已删除行" @@ -22285,7 +22250,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 +22328,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 +22356,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:871 #: 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/reports/query_report.js:1948 +#: frappe/public/js/frappe/views/reports/report_view.js:1728 #: 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 +22378,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:1735 msgid "Save As" msgstr "另存为" @@ -22430,7 +22391,7 @@ msgstr "另存为" msgid "Save Customizations" msgstr "保存自定义" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1951 msgid "Save Report" msgstr "保存报表" @@ -22459,7 +22420,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 +22499,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}的计划执行已更新" @@ -22706,7 +22667,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}无效" @@ -22815,7 +22776,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 +22823,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:615 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22870,12 +22831,12 @@ 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:497 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" @@ -22886,7 +22847,7 @@ msgstr "选择附件" 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 "选择列" @@ -22950,12 +22911,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:489 #: 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 "选择字段" @@ -23001,8 +22965,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:598 msgid "Select Network Printer" msgstr "选择网络打印机" @@ -23070,11 +23034,11 @@ msgstr "选择字段在此编辑属性" msgid "Select a group node first." msgstr "请先选择一个组节点。" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1943 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:1927 msgid "Select a valid Subject field for creating documents from Email" msgstr "选择有效的主旨字段以从邮件创建文档" @@ -23104,13 +23068,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:1445 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:1397 +#: frappe/public/js/frappe/list/list_view.js:1413 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "选择多个列表项" @@ -23144,7 +23108,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 +23292,7 @@ msgstr "发件人电子邮箱" msgid "Sender Email Field" msgstr "发件人邮箱字段" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1946 msgid "Sender Field should have Email in options" msgstr "发件人字段选项中应包含邮箱" @@ -23422,7 +23386,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}使用" @@ -23451,7 +23415,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 启用" @@ -23556,7 +23520,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:2104 msgid "Set Level" msgstr "设置层级" @@ -23610,7 +23574,7 @@ msgstr "设置数量" msgid "Set Role For" msgstr "权限对象" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:136 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "设置用户权限限制" @@ -23775,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 "设置" @@ -23798,8 +23757,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:1817 +#: frappe/public/js/frappe/views/reports/report_view.js:1706 msgid "Setup Auto Email" msgstr "设置电子邮件自动发送" @@ -23868,11 +23827,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 +23846,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 +23898,7 @@ msgstr "显示文档" msgid "Show Error" msgstr "显示错误" -#: frappe/public/js/frappe/form/layout.js:579 +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "显示字段名(点击复制到剪贴板)" @@ -24077,7 +24026,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:1845 msgid "Show Tags" msgstr "显示标签" @@ -24094,7 +24043,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 +24083,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 +24131,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 +24161,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 +24196,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 "禁止注册" @@ -24311,7 +24256,7 @@ msgstr "简单的Python表达式,例如:status =='Open'并输入==&# msgid "Simultaneous Sessions" msgstr "并发会话" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:126 msgid "Single DocTypes cannot be customized." msgstr "不支持定制单笔记录单据类型" @@ -24544,11 +24489,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,13 +24524,12 @@ 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/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json @@ -24593,6 +24537,10 @@ msgstr "排序字段{0}必须是有效的字段名" 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 +24567,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 "不能使用特殊字符" @@ -24680,7 +24634,7 @@ msgstr "标准" 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设置默认打印格式,请使用定制表单功能" @@ -24736,8 +24690,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 +24699,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 @@ -24818,7 +24772,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 +24828,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 +24853,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 +24861,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 +24899,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:454 msgid "Sticky" msgstr "置顶" @@ -24973,6 +24929,10 @@ msgstr "按表的存储使用量" msgid "Store Attached PDF Document" msgstr "存储PDF附件" +#: frappe/core/doctype/user/user.js:490 +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." @@ -25067,7 +25027,7 @@ msgstr "主题" msgid "Subject Field" msgstr "主题字段" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1936 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "主题字段类型应为数据、文本、长文本、短文本或文本编辑器" @@ -25092,7 +25052,7 @@ msgstr "提交队列" msgid "Submit" msgstr "提交" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2227 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "提交" @@ -25102,7 +25062,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "提交" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:63 msgctxt "Primary action in dialog" msgid "Submit" msgstr "提交" @@ -25126,7 +25086,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 +25098,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 +25110,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:2232 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "是否提交{0}个文档?" @@ -25159,11 +25119,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 +25146,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 +25160,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:1171 #: 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 +25202,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 +25253,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 +25375,7 @@ msgstr "同步" msgid "Syncing {0} of {1}" msgstr "正在同步{1}中的{0}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2531 msgid "Syntax Error" msgstr "语法错误" @@ -25544,6 +25498,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 +25581,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 +25655,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 +25664,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,7 +25686,7 @@ msgstr "表-多选" msgid "Table Trimmed" msgstr "表格已截断" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1170 msgid "Table updated" msgstr "表更新" @@ -25776,11 +25732,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 +25805,7 @@ msgstr "模板警告" msgid "Templates" msgstr "模板" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1040 msgid "Temporarily Disabled" msgstr "暂时禁用" @@ -25916,7 +25879,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 +25903,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:1193 msgid "The CSV format is case sensitive" msgstr "CSV格式区分大小写" @@ -25953,7 +25916,7 @@ 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}”无效" @@ -25961,7 +25924,7 @@ msgstr "条件“{0}”无效" 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 +25967,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 +25975,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:685 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "显示数量为估算值。点击此处查看精确数量。" @@ -26114,11 +26077,11 @@ msgstr "从\n" "\"IAM & Admin\" > \"Settings\"\n" "下的 Google Cloud Console 获取的项目编号" -#: 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 "重置密码链接已被使用或无效" @@ -26155,7 +26118,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}" @@ -26204,7 +26167,7 @@ msgstr "队列中已有{0}条相同筛选条件的记录:" 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,6 +26179,10 @@ 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 "暂无可显示新消息" @@ -26248,11 +26215,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 "设置名称时出现错误,请与管理员联系" @@ -26340,7 +26307,7 @@ 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'以避免丢失更改。" @@ -26406,7 +26373,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 +26392,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:2180 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "此报表是后台运行报表,请设置恰当的过滤条件并点击右上角生成新报表按钮获取报表结果" @@ -26449,12 +26416,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 +26434,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:423 msgid "This may get printed on multiple pages" msgstr "可能会打印多页" @@ -26520,7 +26481,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 +26513,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:1253 msgid "Throttled" msgstr "节流" @@ -26704,11 +26665,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 "时间线字段必须是有效的字段名" @@ -26757,9 +26718,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 +26742,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 +26764,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 "标题字段必须是有效的字段名" @@ -26964,7 +26919,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 +26935,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:1960 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "切换侧边栏" @@ -27030,7 +26985,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 +27001,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:1041 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "最近有太多用户注册,导致注册功能被自动临时禁用了,请一个小时后重试。" @@ -27108,10 +27063,10 @@ msgstr "顶部右侧" msgid "Topic" msgstr "主题" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:551 #: 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/report_view.js:1553 msgid "Total" msgstr "总计" @@ -27154,18 +27109,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 "总计行" @@ -27266,6 +27221,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 +27240,7 @@ msgstr "状态转换" msgid "Translatable" msgstr "可翻译" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2235 msgid "Translate Data" msgstr "翻译数据" @@ -27291,7 +27251,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 +27335,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 "试用新版打印设计器" @@ -27723,8 +27683,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 +27699,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查询" @@ -27813,7 +27772,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:427 msgid "Update" msgstr "更新" @@ -27889,7 +27848,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 +27856,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 "已更新至新版本🎉" @@ -28070,7 +28029,7 @@ msgstr "字段中函数{0}的使用受限" 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 +28050,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 +28061,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 +28076,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 +28090,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 +28107,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 +28141,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 +28205,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 +28224,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 +28247,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:1935 +#: frappe/public/js/frappe/views/reports/report_view.js:1754 msgid "User Permissions" msgstr "用户权限限制" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1918 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "用户权限" @@ -28307,7 +28265,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 +28333,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 +28367,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 +28388,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:1382 msgid "User {0} impersonated as {1}" msgstr "用户 {0} 以 {1} 身份登录" @@ -28453,7 +28417,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 +28501,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 "验证错误" @@ -28609,7 +28573,7 @@ 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:612 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "{1} 中的字段 {0} 值太长,长度应该小于 {2}" @@ -28655,7 +28619,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 +28632,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 +28694,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:156 msgid "View Doctype Permissions" msgstr "查看文档类型权限" @@ -28760,7 +28716,7 @@ msgstr "查看列表" msgid "View Log" msgstr "查看日志" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:147 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "查看被授权单据" @@ -28807,7 +28763,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 "查看您的响应" @@ -28884,7 +28840,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 "警告:未设置命名规则" @@ -29073,7 +29029,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 +29042,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 +29085,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 +29302,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" @@ -29447,7 +29394,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 +29420,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 +29432,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,7 +29471,7 @@ 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" @@ -29585,11 +29547,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 "是否确认取消发布本评论?取消后网站/门户用户将不可见。" @@ -29612,7 +29574,7 @@ msgstr "写" 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,7 +29593,7 @@ 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轴字段" @@ -29689,14 +29651,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: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/website/doctype/help_article/templates/help_article.html:25 @@ -29773,11 +29736,11 @@ msgstr "未被授权导出单据类型{}" 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:605 msgid "You are not allowed to update this Web Form Document" msgstr "你不允许更新此Web表单" @@ -29801,7 +29764,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 +29790,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 "您可以通过撤销已提交的文件,然后再修订单据。" @@ -29870,7 +29837,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文档" @@ -29900,11 +29867,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:390 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:394 msgid "You can't set 'Translatable' for field {0}" msgstr "您无法为字段{0}设置“可翻译”" @@ -29922,7 +29889,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:386 msgid "You cannot unset 'Read Only' for field {0}" msgstr "你不能为字段{0}取消“只读”设置" @@ -29973,7 +29940,7 @@ msgstr "您未被授权完成此操作" msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:878 msgid "You do not have permission to access {0}: {1}." msgstr "您无权访问{0}:{1}。" @@ -29985,7 +29952,7 @@ 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:808 msgid "You don't have permission to access the {0} DocType." msgstr "您无权访问{0}文档类型" @@ -29997,19 +29964,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:245 msgid "You have hit the row size limit on database table: {0}" msgstr "已达到数据库表{0}的行大小限制" @@ -30017,11 +29984,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 +30004,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:501 msgid "You haven't created a {0} yet" msgstr "暂无数据 {0}" @@ -30058,11 +30021,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:804 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:645 msgid "You must login to submit this form" msgstr "您必须登录才能提交此表单" @@ -30094,13 +30057,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." @@ -30169,10 +30132,22 @@ msgstr "您取消了对该单据的关注" msgid "You viewed this" msgstr "您查看了此内容" -#: frappe/public/js/frappe/desk.js:553 +#: 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 "" @@ -30226,10 +30201,18 @@ msgstr "您的Google日历连接请求已成功接受" msgid "Your email address" msgstr "您的电子邮件地址" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: 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是" @@ -30334,7 +30317,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 +30462,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 +30524,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 +30539,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" @@ -30619,11 +30597,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 +30620,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 "新建" @@ -30835,19 +30808,19 @@ msgstr "分享" msgid "short" msgstr "短整型" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:301 msgid "since last month" msgstr "自上个月" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:300 msgid "since last week" msgstr "自上周" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:302 msgid "since last year" msgstr "自去年" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since yesterday" msgstr "自昨天" @@ -30900,6 +30873,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 +30904,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 +30918,7 @@ msgstr "通过数据导入" msgid "via Google Meet" msgstr "通过Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:403 msgid "via Notification" msgstr "通过通知" @@ -30974,10 +30951,15 @@ msgstr "点击元素时如果存在弹出框将获得焦点" msgid "wkhtmltopdf" msgstr "wkhtmltopdf工具" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:635 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 +30987,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 +31017,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:486 +#: 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 +31053,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} 月" @@ -31097,7 +31083,6 @@ msgstr "{0}报表" 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 +31107,7 @@ msgstr "{0}工作空间" msgid "{0} added" msgstr "{0} 成功添加" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0}已存在。选择其他名称" @@ -31201,11 +31186,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表达式,不能自我引用" @@ -31272,7 +31253,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,7 +31262,7 @@ 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}是必填字段" @@ -31289,15 +31270,15 @@ msgstr "{0}是必填字段" 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 +31287,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}" @@ -31358,8 +31339,8 @@ msgstr "{0}不是有效的Cron表达式" 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:206 msgid "{0} is not a valid Email Address" msgstr "{0} 不是有效的邮箱地址" @@ -31367,15 +31348,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:174 msgid "{0} is not a valid Name" msgstr "{0}不是有效的名称" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:153 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}不是有效的工作流状态。请更新您的工作流,然后重试。" @@ -31395,19 +31376,23 @@ msgstr "{0}不是有效的报告格式。报告格式应为以下之一:{1}" 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}未设置" @@ -31415,31 +31400,31 @@ msgstr "{0}未设置" 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/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0}是必填项" -#: 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:1835 msgid "{0} items selected" msgstr "已选{0}条记录" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1391 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} 因为 {1} 原因以你的帐号登录了系统" @@ -31472,7 +31457,7 @@ msgstr "{0}分钟前" msgid "{0} months ago" msgstr "{0}个月前" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1804 msgid "{0} must be after {1}" msgstr "{0}必须在{1}之后" @@ -31508,7 +31493,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 +31506,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:1211 msgid "{0} of {1}" msgstr "第{0}项 / 共{1}项" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} / {1} ({2} 行有子记录)" @@ -31571,11 +31556,11 @@ msgstr "{0}移除了其分配" 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:1795 +msgid "{0} row #{1}:" +msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/desk/query_report.py:630 msgid "{0} saved successfully" msgstr "{0}已成功保存" @@ -31595,11 +31580,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 +31597,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}新增用户" @@ -31631,7 +31616,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:254 msgid "{0} updated" msgstr "{0}已更新" @@ -31675,7 +31660,7 @@ msgstr "{0} {1}已经存在" 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}不能是一个叶节点,因为它有下级" @@ -31707,75 +31692,75 @@ msgstr "已完成{0}/{1} | 请保持此标签页开启直至完成" 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:1801 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0} :没有“取消”的情况下不能设置“修订”" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1819 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0} :没有“提交”的情况下不能分派“修订”" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1817 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0} :没有“提交”的情况下不能分派“提交”" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1796 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0} :没有“提交”的情况下不能分派“取消”" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1803 msgid "{0}: Cannot set Import without Create" msgstr "{0} :没有“创建”的情况下不能分派“导入”" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1799 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0} :没有写入的情况下不能设置“提交”,“取消”,“修订”" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1823 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:1756 msgid "{0}: No basic permissions set" msgstr "{0} :基本权限未设置" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1770 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 +31768,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:1785 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0} :更高级别的权限设置前请先设置0级权限" @@ -31791,7 +31776,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}" @@ -31808,7 +31793,7 @@ msgstr "{0}:{1} 状态已变更为 {2}" 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 +31817,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 +31825,11 @@ msgstr "{{{0}}}是不是一个有效的字段名模式。它应该是{{FIELD_NAM msgid "{} Complete" msgstr "已完成{}" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2525 msgid "{} Invalid python code on line {}" msgstr "第{}行存在无效Python代码" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2534 msgid "{} Possibly invalid python code.
    {}" msgstr "可能存在无效Python代码:
    {}" 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 aa22772b9b..427ff2a334 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -993,6 +993,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 +1032,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 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 1180fd1332..615e7e195a 100644 --- a/frappe/model/db_query.py +++ b/frappe/model/db_query.py @@ -662,7 +662,6 @@ from {tables} if self.flags.ignore_permissions: return - asterisk_fields = [] permitted_fields = set( get_permitted_fields( doctype=self.doctype, @@ -674,7 +673,10 @@ from {tables} 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' @@ -684,9 +686,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 @@ -741,12 +744,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: diff --git a/frappe/model/document.py b/frappe/model/document.py index 1825543ff2..cc9e8ca1ab 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -801,7 +801,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) @@ -1805,9 +1805,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/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..b9c0f8f10f 100644 --- a/frappe/model/rename_doc.py +++ b/frappe/model/rename_doc.py @@ -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/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/print_format/print_format.js b/frappe/printing/doctype/print_format/print_format.js index f2dea7ff24..fcc5178630 100644 --- a/frappe/printing/doctype/print_format/print_format.js +++ b/frappe/printing/doctype/print_format/print_format.js @@ -23,7 +23,7 @@ frappe.ui.form.on("Print Format", { }, render_buttons: function (frm) { frm.page.clear_inner_toolbar(); - if (!frm.is_new() && 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) { diff --git a/frappe/public/js/frappe/file_uploader/FileUploader.vue b/frappe/public/js/frappe/file_uploader/FileUploader.vue index b94b964876..61276ba379 100644 --- a/frappe/public/js/frappe/file_uploader/FileUploader.vue +++ b/frappe/public/js/frappe/file_uploader/FileUploader.vue @@ -163,6 +163,23 @@
    {{ __("Google Drive") }}
    +
    {{ upload_notes }} @@ -291,6 +308,9 @@ const props = defineProps({ allow_google_drive: { default: true, }, + additional_upload_handlers: { + default: [], + }, }); // variables @@ -645,7 +665,9 @@ function upload_file(file, i) { if (file.file_url) { form_data.append("file_url", file.file_url); } - + if (file.file_size) { + form_data.append("file_size", file.file_size); + } if (file.file_name) { form_data.append("file_name", file.file_name); } @@ -762,6 +784,7 @@ watch( defineExpose({ files, add_files, + upload_file, upload_files, toggle_all_private, wrapper_ready, diff --git a/frappe/public/js/frappe/file_uploader/file_uploader.bundle.js b/frappe/public/js/frappe/file_uploader/file_uploader.bundle.js index c9734f7d6c..9b356e7aa5 100644 --- a/frappe/public/js/frappe/file_uploader/file_uploader.bundle.js +++ b/frappe/public/js/frappe/file_uploader/file_uploader.bundle.js @@ -3,6 +3,7 @@ import FileUploaderComponent from "./FileUploader.vue"; import { watch } from "vue"; class FileUploader { + static UploadOptions = []; constructor({ wrapper, method, @@ -65,6 +66,17 @@ class FileUploader { allow_toggle_private, allow_toggle_optimize, allow_google_drive, + additional_upload_handlers: this.constructor.UploadOptions.map((k) => ({ + ...k, + wrappedAction: () => + k.action({ + dialog: this.dialog, + uploader: this.uploader, + doctype, + docname, + fieldname, + }), + })), }); SetVueGlobals(app); this.uploader = app.mount(this.wrapper); diff --git a/frappe/public/js/frappe/form/column.js b/frappe/public/js/frappe/form/column.js index 1bb8a86c25..92ec3d8917 100644 --- a/frappe/public/js/frappe/form/column.js +++ b/frappe/public/js/frappe/form/column.js @@ -22,7 +22,7 @@ export default class Column { if (this.df.description) { $(`

    - ${__(this.df.description)} + ${__(this.df.description, null, this.df.parent)}

    `).prependTo(this.wrapper); } diff --git a/frappe/public/js/frappe/form/controls/base_input.js b/frappe/public/js/frappe/form/controls/base_input.js index 0eb185cdb6..152a04ac0a 100644 --- a/frappe/public/js/frappe/form/controls/base_input.js +++ b/frappe/public/js/frappe/form/controls/base_input.js @@ -206,7 +206,7 @@ frappe.ui.form.ControlInput = class ControlInput extends frappe.ui.form.Control return; } if (this.df.description) { - this.$wrapper.find(".help-box").html(__(this.df.description)); + this.$wrapper.find(".help-box").html(__(this.df.description, null, this.df.parent)); this.toggle_description(true); } else { this.set_empty_description(); diff --git a/frappe/public/js/frappe/form/controls/data.js b/frappe/public/js/frappe/form/controls/data.js index a66aaa30b8..6b3a501eb8 100644 --- a/frappe/public/js/frappe/form/controls/data.js +++ b/frappe/public/js/frappe/form/controls/data.js @@ -70,10 +70,12 @@ frappe.ui.form.ControlData = class ControlData extends frappe.ui.form.ControlInp if (this.df.options == "URL") { this.setup_url_field(); } - if (this.df.options == "Barcode") { this.setup_barcode_field(); } + if (this.df.options == "IBAN") { + this.setup_iban_field(); + } } setup_url_field() { @@ -119,6 +121,12 @@ frappe.ui.form.ControlData = class ControlData extends frappe.ui.form.ControlInp }); } + setup_iban_field() { + this.$input.on("blur", () => { + this.set_formatted_input(this.get_input_value()); + }); + } + setup_copy_button() { if (this.df.with_copy_button) { this.$wrapper @@ -148,6 +156,9 @@ frappe.ui.form.ControlData = class ControlData extends frappe.ui.form.ControlInp this.$scan_btn.toggle(true); const me = this; + $(document).on("frappe.ui.Dialog:shown", function () { + me.$scan_btn.toggle(true); + }); this.$scan_btn.on("click", "a", () => { new frappe.ui.Scanner({ dialog: true, @@ -255,8 +266,17 @@ frappe.ui.form.ControlData = class ControlData extends frappe.ui.form.ControlInp return this.$input ? this.$input.val() : undefined; } format_for_input(val) { + if (this.df.options == "IBAN" && val) { + return frappe.utils.get_formatted_iban(val); + } return val == null ? "" : val; } + parse(value) { + if (this.df.options == "IBAN" && value) { + return value.replaceAll(" ", ""); + } + return value; + } validate(v) { if (!v) { return ""; diff --git a/frappe/public/js/frappe/form/controls/datetime.js b/frappe/public/js/frappe/form/controls/datetime.js index d3fe0c612d..1782b3e6dc 100644 --- a/frappe/public/js/frappe/form/controls/datetime.js +++ b/frappe/public/js/frappe/form/controls/datetime.js @@ -1,5 +1,6 @@ frappe.ui.form.ControlDatetime = class ControlDatetime extends frappe.ui.form.ControlDate { set_formatted_input(value) { + this.datetime_format = "DD-MM-YYYY HH:mm:ss"; if (this.timepicker_only) return; if (!this.datepicker) return; if (!value) { @@ -13,6 +14,18 @@ frappe.ui.form.ControlDatetime = class ControlDatetime extends frappe.ui.form.Co let should_refresh = this.last_value && this.last_value !== value; value = this.format_for_input(value); this.$input && this.$input.val(value); + if (!should_refresh) { + if (this.datepicker.selectedDates.length > 0) { + // if date is selected but different from value, refresh + const selected_date = moment(this.datepicker.selectedDates[0]).format( + this.datetime_format + ); + should_refresh = selected_date !== value; + } else { + // if datepicker has no selected date, refresh + should_refresh = true; + } + } if (should_refresh) { this.datepicker.selectDate(frappe.datetime.user_to_obj(value)); } diff --git a/frappe/public/js/frappe/form/controls/link.js b/frappe/public/js/frappe/form/controls/link.js index 41b89f1453..4f516b22e6 100644 --- a/frappe/public/js/frappe/form/controls/link.js +++ b/frappe/public/js/frappe/form/controls/link.js @@ -14,7 +14,7 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat $(`