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 = $("
{{ data.comment }}
{% endif %} +{% const getEscapedValue = (v) => v === null ? "null" : frappe.utils.escape_html(v) %} {% if data.changed && data.changed.length %}| {{ 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]) }} | {% 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 "
doc.get_formatted(\"[fieldname]\", [parent_doc]) | \n"
+"\t\t\tGet document value formatted as Date, Currency, etc. Pass parent doc for currency type fields. | \n"
+"\t\t
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
+"\t\t\tGet value from another document. | \n" +"\t\t
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 "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"
+"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n" +"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n" +msgstr "" + +#. Content of the 'html_5' (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "<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\"" +msgstr "" + +#. Content of the 'html_7' (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "
doc.due_date==nowdate()
doc.total > 40000\n" +"
Condition Examples:
\n" +"doc.status==\"Open\"\n" +msgstr "" + +#. Content of the 'Condition description' (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "
doc.due_date==nowdate()
doc.total > 40000\n" +"
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"
+"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" +"
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./.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. {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.filters. 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 -/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"
+"https://frappe.io), or * to accept all.\n"
+"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: \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. New {{ doc.doctype }} #{{ doc.name }}{{ doc.name }} Delivered{ \"id\": \"{{ doc.name }}\" }\n"
+"\n"
+"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"
+"Condition Examples:
\n" "doc.status==\"Open\"" -msgstr "
doc.due_date==nowdate()
doc.total > 40000\n" "
Bedingungsbeispiele:
\n" -"doc.status==\"Öffnen\"" msgstr "crwdns127946:0crwdne127946:0" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "
doc.due_date==nowdate()
doc.total > 40000\n\n" +msgstr "Beispiel für eine Bedingung:
\n" +"doc.status==\"Open\"" #. Content of the 'html_7' (HTML) field in DocType 'Notification' @@ -606,8 +605,8 @@ msgstr "
doc.due_date==nowdate()
doc.total > 40000\n\n" "Bedingungsbeispiele:
\n" msgid "Condition Examples:
\n" "doc.status==\"Open\"\n" -msgstr "
doc.due_date==nowdate()
doc.total > 40000\n" "Bedingungsbeispiele:
\n" -"doc.status==\"Öffnen\"" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "
doc.due_date==nowdate()
doc.total > 40000\n" +msgstr "Beispiel für eine Bedingung:
\n" +"doc.status==\"Open\"\n" #. Content of the 'Condition description' (HTML) field in DocType 'Web Form' @@ -615,9 +614,8 @@ msgstr "
doc.due_date==nowdate()
doc.total > 40000\n" "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" "
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 überfilterszugä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 "
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.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.filters. 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.فیلترها قابل دست
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. 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.filters .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.filters. 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 "Megjegyzések:
\n\n" +"data-fieldtype és data-fieldnamevalue osztályértéket adnak megsection-break osztálya van.column-break osztálya van.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 "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.
A formázáshoz a Boostrap CSS keretrendszer van biztosítva, és az osztályok teljes skáláját élvezheti.
\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"
+"doc.get_formatted(\"[fieldname]\", [parent_doc]) | \n"
+"\t\t\tA 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. | \n"
+"\t\t
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
+"\t\t\tÉrték kinyerése egy másik dokumentumból. | \n" +"\t\t
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 "The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n" "Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n" -msgstr "" +msgstr "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"
+"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" +"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 "<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\"" -msgstr "" +msgstr "
doc.due_date==nowdate()
doc.total > 40000\n" "
Állapot Példák:
\n" +"doc.status==\"Open\"" #. Content of the 'html_7' (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "
doc.due_date==nowdate()
doc.total > 40000\n" +"
Condition Examples:
\n" "doc.status==\"Open\"\n" -msgstr "" +msgstr "
doc.due_date==nowdate()
doc.total > 40000\n" "
Állapot Példák:
\n" +"doc.status==\"Open\"\n" #. Content of the 'Condition description' (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "
doc.due_date==nowdate()
doc.total > 40000\n" +"
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"
"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"
+"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"
"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" +"
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.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.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 "Note:
\n\n" +"data-fieldtype e data-fieldnamevaluesection-breakcolumn-break1. 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 "I formati di stampa vengono elaborati lato server usando il linguaggio di template Jinja. Tutti i moduli possono accedere all'oggetto doc che contiene le informazioni del documento che si sta formattando. Puoi anche accedere a utilità comuni tramite il modulo frappe.
Per la stilizzazione, è fornito il framework CSS Bootstrap e puoi usufruire dell'intera gamma di classi.
\n" +"<h3>{{ doc.select_print_heading or \"Invoice\" }}</h3>\n"
+"<div class=\"row\">\n"
+"\t<div class=\"col-md-3 text-right\">Nome Cliente</div>\n"
+"\t<div class=\"col-md-9\">{{ doc.customer_name }}</div>\n"
+"</div>\n"
+"<div class=\"row\">\n"
+"\t<div class=\"col-md-3 text-right\">Data</div>\n"
+"\t<div class=\"col-md-9\">{{ doc.get_formatted(\"invoice_date\") }}</div>\n"
+"</div>\n"
+"<table class=\"table table-bordered\">\n"
+"\t<tbody>\n"
+"\t\t<tr>\n"
+"\t\t\t<th>Sr</th>\n"
+"\t\t\t<th>Item Name</th>\n"
+"\t\t\t<th>Description</th>\n"
+"\t\t\t<th class=\"text-right\">Qty</th>\n"
+"\t\t\t<th class=\"text-right\">Rate</th>\n"
+"\t\t\t<th class=\"text-right\">Amount</th>\n"
+"\t\t</tr>\n"
+"\t\t{%- for row in doc.items -%}\n"
+"\t\t<tr>\n"
+"\t\t\t<td style=\"width: 3%;\">{{ row.idx }}</td>\n"
+"\t\t\t<td style=\"width: 20%;\">\n"
+"\t\t\t\t{{ row.item_name }}\n"
+"\t\t\t\t{% if row.item_code != row.item_name -%}\n"
+"\t\t\t\t<br>Item Code: {{ row.item_code}}\n"
+"\t\t\t\t{%- endif %}\n"
+"\t\t\t</td>\n"
+"\t\t\t<td style=\"width: 37%;\">\n"
+"\t\t\t\t<div style=\"border: 0px;\">{{ row.description }}</div></td>\n"
+"\t\t\t<td style=\"width: 10%; text-align: right;\">{{ row.qty }} {{ row.uom or row.stock_uom }}</td>\n"
+"\t\t\t<td style=\"width: 15%; text-align: right;\">{{\n"
+"\t\t\t\trow.get_formatted(\"rate\", doc) }}</td>\n"
+"\t\t\t<td style=\"width: 15%; text-align: right;\">{{\n"
+"\t\t\t\trow.get_formatted(\"amount\", doc) }}</td>\n"
+"\t\t</tr>\n"
+"\t\t{%- endfor -%}\n"
+"\t</tbody>\n"
+"</table>\n"
+"doc.get_formatted(\"[fieldname]\", [parent_doc]) | \n"
+"\t\t\tOttieni il valore del documento formattato come Data, Valuta, ecc. Passa il doc padre per i campi di tipo valuta. | \n"
+"\t\t
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
+"\t\t\tRecupera il valore da un altro documento. | \n" +"\t\t
The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n" "Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n" -msgstr "" +msgstr "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"
+"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" +"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./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: 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..YYYY. - Year in 4 digits.YY. - Year in 2 digits.MM. - Month.DD. - Day of month.WW. - Week of the year.{fieldname}. - fieldname on the document e.g.\n"
+" branch\n"
+" .FY. - Fiscal Year (requires ERPNext to be installed).ABBR. - Company Abbreviation (requires ERPNext to be installed).YYYY. - År med 4 sifre.YY. - År med 2 sifre.MM. - Måned.DD. - Dag i måneden.WW. - Uke i året.{fieldname}. - feltnavn på dokumentet, f.eks.\n"
+" gren\n"
+" .FY. - Regnskapsår (krever at ERPNext er installert).ABBR. - Firmaforkortelse (krever at ERPNext er installert)Notes:
\n\n" +"data-fieldtype and data-fieldnamevaluesection-breakcolumn-break1. 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 "Merknader:
\n\n" +"datafelttype og datafeltnavnverdiseksjonsskiftkolonneskift1. 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 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.
For styling, the Boostrap CSS framework is provided and you can enjoy the full range of classes.
\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"
+"doc.get_formatted(\"[fieldname]\", [parent_doc]) | \n"
+"\t\t\tGet document value formatted as Date, Currency, etc. Pass parent doc for currency type fields. | \n"
+"\t\t
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
+"\t\t\tGet value from another document. | \n" +"\t\t
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.
For styling er Boostrap CSS-rammeverket tilgjengelig, og du kan benytte deg av hele spekteret av klasser.
\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"
+"doc.get_formatted(\"[feltnavn]\", [parent_doc]) | \n"
+"\t\t\tHenter dokumentverdi formatert som dato, valuta osv. Overfør overordnet dokument for felt av valutatypen. | \n"
+"\t\t
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
+"\t\t\tHent verdi fra et annet dokument. | \n" +"\t\t
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 "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 "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"
+"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n" +"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n" +msgstr "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"
+"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 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 "<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 "<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\"" +msgstr "
doc.due_date==nowdate()
doc.total > 40000\n" +"
Eksempler på betingelser:
\n" +"doc.status==\"Åpen\"" + +#. Content of the 'html_7' (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "
doc.due_date==nowdate()
doc.total > 40000\n" +"
Condition Examples:
\n" +"doc.status==\"Open\"\n" +msgstr "
doc.due_date==nowdate()
doc.total > 40000\n" +"
Eksempler på betingelser:
\n" +"doc.status==\"Åpen\"\n" + +#. Content of the 'Condition description' (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "
doc.due_date==nowdate()
doc.total > 40000\n" +"
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"
+"Angi kontekst før du gjengir en mal. Eksempel:
\n" +"
\n"
+"context.project = frappe.get_doc(\"Prosjekt\", frappe.form_dict.name)\n"
+"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" +"
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" +"
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./.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. {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.filters. result = [result], or for old style data = [columns], [result]"
+msgstr "Filtre vil være tilgjengelige via filtre. 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 -/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"
+"https://frappe.io), or * to accept all.\n"
+"https://frappe.io), eller * for å godta alle.\n"
+"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: \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. New {{ doc.doctype }} #{{ doc.name }}Ny {{ doc.doctype }} #{{ doc.name }}{{ doc.name }} Delivered{ \"id\": \"{{ doc.name }}\" }\n"
+"\n"
+"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"
+"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.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.filters .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.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.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.За интеракцију са горе наведеним 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.филт
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.filters .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.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.filtreleriaracılığıyla erişilebilir. 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.要与上述 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.filters访问。- ${__(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 $(`${__("Open Source Applications for the Web")}
-- ${__("Website")}: - https://frappeframework.com
-- ${__("Source")}: - https://github.com/frappe
-- Frappe School: https://frappe.school
-- Linkedin: https://linkedin.com/company/frappe-tech
-- Twitter: https://twitter.com/frappetech
-- YouTube: https://www.youtube.com/@frappetech
-- - - ${__("Dependencies & Licenses")} - - -
-${__("© Frappe Technologies Pvt. Ltd. and contributors")}
-{0}: v{1} ({2})
{0}: v{1}
${__("Open Source Applications for the Web")}
+ ++ + ${__("Website")}: + https://frappe.io/ +
+ ++ + ${__("Source Code")}: + https://github.com/frappe +
+ ++ + ${__("Frappe Blog")}: + https://frappe.io/blog +
+ ++ + ${__("Frappe Forum")}: + https://discuss.frappe.io +
+ ++ + ${__("LinkedIn")}: + https://linkedin.com/company/frappe-tech +
+ ++ + X: + https://x.com/frappetech +
+ ++ + ${__("YouTube")}: + https://www.youtube.com/@frappetech +
+ ++ + ${__("Instagram")}: + https://www.instagram.com/frappetech +
+ ++ + + ${__("Dependencies & Licenses")} + + +
+ +${__("© Frappe Technologies Pvt. Ltd. and contributors")}
++ ${app.title}: ${get_version_text(app)} +
`; + $(text).appendTo($wrap); + } + + frappe.versions = versions; + + if (frappe.versions) { + $(dialog.body).find("#copy-apps-info").removeClass("hidden"); + } + }; + + const code_block = (snippet, lang = "") => "```" + lang + "\n" + snippet + "\n```"; + + // Listener for copying installed apps info + $(dialog.body).on("click", "#copy-apps-info", function () { + if (!frappe.versions) return; + + const versions = Object.entries(frappe.versions).reduce((acc, [key, app]) => { + acc[key] = app.branch_version || app.version; + return acc; + }, {}); + + frappe.utils.copy_to_clipboard(code_block(JSON.stringify(versions, null, "\t"), "json")); + }); + + // Listener for copy app version + $(dialog.body).on("click", ".app-version", function () { + const title = $(this).attr("title"); + if (title) { + frappe.utils.copy_to_clipboard(title); + } + }); + frappe.ui.misc.about_dialog.show(); }; diff --git a/frappe/public/js/frappe/ui/toolbar/search_utils.js b/frappe/public/js/frappe/ui/toolbar/search_utils.js index 1a03faf384..1a93a3cd36 100644 --- a/frappe/public/js/frappe/ui/toolbar/search_utils.js +++ b/frappe/public/js/frappe/ui/toolbar/search_utils.js @@ -5,7 +5,7 @@ frappe.search.utils = { setup_recent: function () { this.recent = JSON.parse(frappe.boot.user.recent || "[]") || []; }, - + results_to_hide: [], get_recent_pages: function (keywords) { if (keywords === null) keywords = ""; var me = this, @@ -105,10 +105,19 @@ frappe.search.utils = { out.index = 80; return out; }); - + this.hide_results(options); return options; }, - + hide_results(options) { + if (this.results_to_hide.length == 0) return; + this.results_to_hide.forEach((v, i) => { + options.forEach((o, j) => { + if (o.value == v) { + options.splice(j, 1); + } + }); + }); + }, get_frequent_links() { let options = []; frappe.boot.frequently_visited_links.forEach((link) => { diff --git a/frappe/public/js/frappe/utils/utils.js b/frappe/public/js/frappe/utils/utils.js index 367540869e..24956b54d8 100644 --- a/frappe/public/js/frappe/utils/utils.js +++ b/frappe/public/js/frappe/utils/utils.js @@ -1134,6 +1134,14 @@ Object.assign(frappe.utils, { return duration; }, + get_formatted_iban(value) { + if (!value || ["BI", "SV", "EG", "LY"].some((country) => value.startsWith(country))) { + return value; + } + + return value.replaceAll(" ", "").replace(/(.{4})(?=.)/g, "$1 "); + }, + seconds_to_duration(seconds, duration_options) { const round = seconds > 0 ? Math.floor : Math.ceil; const total_duration = { @@ -1807,4 +1815,19 @@ Object.assign(frappe.utils, { return false; }, + + /** + * Masks passwords in an object by replacing the values of keys containing + * "password" or "passphrase" with "*****". + * + * @param {Object} obj - The object to mask passwords in. + */ + mask_passwords(obj) { + const KEYWORDS_TO_MASK = ["password", "passphrase"]; + for (const key of Object.keys(obj)) { + if (KEYWORDS_TO_MASK.some((keyword) => key.includes(keyword)) && obj[key]) { + obj[key] = "*****"; + } + } + }, }); diff --git a/frappe/public/js/frappe/views/communication.js b/frappe/public/js/frappe/views/communication.js index 22eeae3728..12ab9da505 100755 --- a/frappe/public/js/frappe/views/communication.js +++ b/frappe/public/js/frappe/views/communication.js @@ -344,8 +344,11 @@ frappe.views.CommunicationComposer = class { if (this.last_email.sender == this.sender) { this.recipients = this.last_email.recipients; } - this.cc = this.last_email.cc; - this.bcc = this.last_email.bcc; + + if (this.reply_all) { + this.cc = this.last_email.cc; + this.bcc = this.last_email.bcc; + } } if (!this.forward && !this.recipients) { diff --git a/frappe/public/js/frappe/views/file/file_view.js b/frappe/public/js/frappe/views/file/file_view.js index 1ab1f1769a..ef718189e9 100644 --- a/frappe/public/js/frappe/views/file/file_view.js +++ b/frappe/public/js/frappe/views/file/file_view.js @@ -263,25 +263,41 @@ frappe.views.FileView = class FileView extends frappe.views.ListView { } render_grid_view() { + const base_url = frappe.urllib.get_base_url(); let html = this.data .map((d) => { const icon_class = d.icon_class + "-large"; + const align_file_body_class = + d._type == "image" ? "align-flex-start" : "align-center"; + const file_url = frappe.utils.escape_html(d.file_url); + const absolute_file_url = base_url + file_url; let file_body_html = d._type == "image" - ? `- {{_("You can also copy-paste this ")}} {{_("Download Link")}}{{_(" to your browser")}} + {{_("You can also copy-paste this")}} {{_("Download Link")}} {{_("to your browser")}}
\ No newline at end of file diff --git a/frappe/templates/emails/file_backup_notification.html b/frappe/templates/emails/file_backup_notification.html index a66799f3bc..e5c2cb812c 100644 --- a/frappe/templates/emails/file_backup_notification.html +++ b/frappe/templates/emails/file_backup_notification.html @@ -1,6 +1,6 @@ Hello,{{ _("Please use following links to download file backup.")
-{{ _("Public Files Backup:") {{ backup_path_files }}
-{{ _("Private Files Backup:") {{ backup_path_private_files }}
+{{ _("Please use following links to download file backup.") }}
+{{ _("Public Files Backup:") }} {{ backup_path_files }}
+{{ _("Private Files Backup:") }} {{ backup_path_private_files }}
diff --git a/frappe/templates/emails/new_message.html b/frappe/templates/emails/new_message.html index bbcfc9c23b..790b5b0d48 100644 --- a/frappe/templates/emails/new_message.html +++ b/frappe/templates/emails/new_message.html @@ -1,4 +1,4 @@ -{{ _("You have a new message from: ") }}{{ from }}
+{{ _("You have a new message from:") }} {{ from }}
{{ message }}
{{ _("No comments yet. ") }} +
{{ _("No comments yet.") }} {{ _("Login to start a new discussion") }} diff --git a/frappe/templates/includes/login/login.js b/frappe/templates/includes/login/login.js index b6f6c066aa..7b1d102215 100644 --- a/frappe/templates/includes/login/login.js +++ b/frappe/templates/includes/login/login.js @@ -17,7 +17,7 @@ login.bind_events = function () { event.preventDefault(); var args = {}; args.cmd = "login"; - args.usr = frappe.utils.xss_sanitise(($("#login_email").val() || "").trim()); + args.usr = ($("#login_email").val() || "").trim(); args.pwd = $("#login_password").val(); if (!args.usr || !args.pwd) { {# striptags is used to remove newlines, e is used for escaping #} diff --git a/frappe/tests/test_project_meta.py b/frappe/tests/test_project_meta.py index f38837a02e..eb7c7af938 100644 --- a/frappe/tests/test_project_meta.py +++ b/frappe/tests/test_project_meta.py @@ -17,7 +17,7 @@ class TestProjectMeta(IntegrationTestCase): Don't try to delete or bypass this test. """ - baseline = 1600 # as of 11th July Dec 2026 + baseline = 1605 # as of 11th July Dec 2026 init_py_size = len(Path(frappe.__file__).read_text().splitlines()) diff --git a/frappe/tests/test_utils.py b/frappe/tests/test_utils.py index 5f57550e64..78acfaf17a 100644 --- a/frappe/tests/test_utils.py +++ b/frappe/tests/test_utils.py @@ -34,6 +34,7 @@ from frappe.utils import ( get_site_info, get_sites, get_url, + is_valid_iban, money_in_words, parse_and_map_trackers_from_url, parse_timedelta, @@ -479,6 +480,26 @@ class TestValidationUtils(IntegrationTestCase): for name in invalid_names: self.assertRaises(frappe.InvalidNameError, validate_name, name, True) + def test_validate_iban(self): + valid_ibans = [ + "GB82 WEST 1234 5698 7654 32", + "DE91 1000 0000 0123 4567 89", + "FR76 3000 6000 0112 3456 7890 189", + ] + + invalid_ibans = [ + # wrong checksum (3rd place) + "GB72 WEST 1234 5698 7654 32", + "DE81 1000 0000 0123 4567 89", + "FR66 3000 6000 0112 3456 7890 189", + ] + + for iban in valid_ibans: + self.assertTrue(is_valid_iban(iban)) + + for not_iban in invalid_ibans: + self.assertFalse(is_valid_iban(not_iban)) + class TestImage(IntegrationTestCase): def test_strip_exif_data(self): diff --git a/frappe/utils/__init__.py b/frappe/utils/__init__.py index c1362bb33b..0279fb9c85 100644 --- a/frappe/utils/__init__.py +++ b/frappe/utils/__init__.py @@ -261,6 +261,44 @@ def validate_url( return is_valid +def validate_iban(iban: str, throw: bool = False) -> bool: + from frappe import _ + + valid = is_valid_iban(iban) + if not valid and throw: + frappe.throw(frappe._("'{0}' is not a valid IBAN").format(frappe.bold(iban))) + + return valid + + +def is_valid_iban(iban: str) -> bool: + """ + Algorithm: https://en.wikipedia.org/wiki/International_Bank_Account_Number#Validating_the_IBAN + """ + if not iban: + return False + + def encode_char(c): + # Position in the alphabet (A=1, B=2, ...) plus nine + return str(9 + ord(c) - 64) + + # remove whitespaces, upper case to get the right number from ord() + iban = iban.replace(" ", "").upper() + + # Move country code and checksum from the start to the end + flipped = iban[4:] + iban[:4] + + # Encode characters as numbers + encoded = [encode_char(c) if ord(c) >= 65 and ord(c) <= 90 else c for c in flipped] + + try: + to_check = int("".join(encoded)) + except ValueError: + return False + + return to_check % 97 == 1 + + def random_string(length: int) -> str: """generate a random string""" import string diff --git a/frappe/utils/file_manager.py b/frappe/utils/file_manager.py index ac6a705353..7867b612a1 100644 --- a/frappe/utils/file_manager.py +++ b/frappe/utils/file_manager.py @@ -417,7 +417,7 @@ def add_attachments(doctype, name, attachments): def is_safe_path(path: str) -> bool: - if path.startswith(("http://", "https://")): + if path.startswith(("http://", "https://", "/api/method/")): return True basedir = frappe.get_site_path() diff --git a/frappe/utils/fixtures.py b/frappe/utils/fixtures.py index fc24072949..bba938e3d1 100644 --- a/frappe/utils/fixtures.py +++ b/frappe/utils/fixtures.py @@ -30,7 +30,7 @@ def import_fixtures(app): if not os.path.exists(fixtures_path): return - fixture_files = os.listdir(fixtures_path) + fixture_files = sorted(os.listdir(fixtures_path)) for fname in fixture_files: if not fname.endswith(".json"): diff --git a/frappe/utils/nestedset.py b/frappe/utils/nestedset.py index bb211bc5ae..0c85788ac1 100644 --- a/frappe/utils/nestedset.py +++ b/frappe/utils/nestedset.py @@ -261,6 +261,19 @@ class NestedSet(Document): if self.meta.get("nsm_parent_field"): self.nsm_parent_field = self.meta.nsm_parent_field + def after_insert(self): + if ( + frappe.flags.in_import + or frappe.flags.in_patch + or frappe.flags.in_migrate + or frappe.flags.in_install + ): + return + + # Clear user permissions cache, otherwise user can't access the new document + if frappe.db.exists("User Permission", {"user": frappe.session.user, "allow": self.doctype}): + frappe.cache.hdel("user_permissions", frappe.session.user) + def on_update(self): update_nsm(self) self.validate_ledger() diff --git a/frappe/utils/safe_exec.py b/frappe/utils/safe_exec.py index 4a6ac7b551..9a61e2a78e 100644 --- a/frappe/utils/safe_exec.py +++ b/frappe/utils/safe_exec.py @@ -13,6 +13,7 @@ from typing import TYPE_CHECKING, Any import orjson import RestrictedPython.Guards +from AccessControl.ZopeGuards import protected_inplacevar from RestrictedPython import PrintCollector, compile_restricted, safe_globals from RestrictedPython.transformer import RestrictingNodeTransformer @@ -313,6 +314,7 @@ def get_safe_globals(): # allow iterators and list comprehension out._getiter_ = iter out._iter_unpack_sequence_ = RestrictedPython.Guards.guarded_iter_unpack_sequence + out._inplacevar_ = protected_inplacevar # add common python builtins out.update(get_python_builtins()) @@ -729,6 +731,7 @@ WHITELISTED_SAFE_EVAL_GLOBALS = { "_getitem_": _getitem, "_getiter_": iter, "_iter_unpack_sequence_": RestrictedPython.Guards.guarded_iter_unpack_sequence, + "_inplacevar_": protected_inplacevar, } SAFE_ORJSON = NamespaceDict(loads=orjson.loads, dumps=orjson.dumps) diff --git a/frappe/utils/xlsxutils.py b/frappe/utils/xlsxutils.py index 3104734343..0dc01f09ab 100644 --- a/frappe/utils/xlsxutils.py +++ b/frappe/utils/xlsxutils.py @@ -1,11 +1,13 @@ # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors # License: MIT. See LICENSE +import datetime import re from io import BytesIO import openpyxl import xlrd from openpyxl import load_workbook +from openpyxl.cell import WriteOnlyCell from openpyxl.styles import Font from openpyxl.utils import get_column_letter from openpyxl.workbook.child import INVALID_TITLE_REGEX @@ -18,6 +20,16 @@ ILLEGAL_CHARACTERS_RE = re.compile( ) +def get_excel_date_format(): + date_format = frappe.get_system_settings("date_format") + time_format = frappe.get_system_settings("time_format") + + # Excel-compatible format + date_format = date_format.replace("mm", "MM") + + return date_format, time_format + + # return xlsx file object def make_xlsx(data, sheet_name, wb=None, column_widths=None): column_widths = column_widths or [] @@ -34,6 +46,8 @@ def make_xlsx(data, sheet_name, wb=None, column_widths=None): row1 = ws.row_dimensions[1] row1.font = Font(name="Calibri", bold=True) + date_format, time_format = get_excel_date_format() + for row in data: clean_row = [] for item in row: @@ -46,7 +60,16 @@ def make_xlsx(data, sheet_name, wb=None, column_widths=None): # Remove illegal characters from the string value = ILLEGAL_CHARACTERS_RE.sub("", value) - clean_row.append(value) + if isinstance(value, datetime.date | datetime.datetime): + number_format = date_format + if isinstance(value, datetime.datetime): + number_format = f"{date_format} {time_format}" + + cell = WriteOnlyCell(ws, value=value) + cell.number_format = number_format + clean_row.append(cell) + else: + clean_row.append(value) ws.append(clean_row) diff --git a/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json b/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json index c6acceb763..27636a9d71 100644 --- a/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +++ b/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -40,7 +40,7 @@ { "fieldname": "deletion_steps", "fieldtype": "Table", - "label": "Deletion Steps ", + "label": "Deletion Steps", "options": "Personal Data Deletion Step" } ], diff --git a/frappe/website/doctype/web_form/templates/web_form.html b/frappe/website/doctype/web_form/templates/web_form.html index 876e3d280b..e3dff6f815 100644 --- a/frappe/website/doctype/web_form/templates/web_form.html +++ b/frappe/website/doctype/web_form/templates/web_form.html @@ -46,6 +46,13 @@ {% endif %} + {% if has_delete_permission %} + + + {% endif %} +
-
{{ _("Authentication Apps you can use are: ") }} +
{{ _("Authentication Apps you can use are:") }} FreeOTP, Google Authenticator, Lastpass Authenticator, Authy and Duo Mobile.