From 533b80651bf77f8d79e7c5cd38b94262c6f474ec Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Tue, 16 May 2023 10:38:07 +0530 Subject: [PATCH 01/93] feat: `What's New` --- frappe/hooks.py | 9 +++ .../frappe/ui/notifications/notifications.js | 57 +++++++++++++++++++ .../public/js/frappe/ui/toolbar/navbar.html | 1 + frappe/utils/change_log.py | 12 ++++ 4 files changed, 79 insertions(+) diff --git a/frappe/hooks.py b/frappe/hooks.py index a1aa2713c3..2e2da857eb 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -424,3 +424,12 @@ after_job = [ extend_bootinfo = [ "frappe.utils.telemetry.add_bootinfo", ] + +get_changelog_feed = [ + { + "title": "Spid", + "creation": "2023-04-03 16:56:51.436456", + "app_name": "Frappe Framework", + "link": "https://frappe.io/wiki", + } +] diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index a0c0257f1d..e02f62a62e 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -15,6 +15,7 @@ frappe.ui.Notifications = class Notifications { this.body = this.dropdown_list.find(".notification-list-body"); this.panel_events = this.dropdown_list.find(".panel-events"); this.panel_notifications = this.dropdown_list.find(".panel-notifications"); + this.panel_changelog_feed = this.dropdown_list.find(".panel-changelog-feed"); this.user = frappe.session.user; @@ -57,6 +58,12 @@ frappe.ui.Notifications = class Notifications { view: EventsView, el: this.panel_events, }, + { + label: __("What's New"), + id: "changelog_feed", + view: ChangelogFeedView, + el: this.panel_changelog_feed, + }, ]; let get_headers_html = (item) => { @@ -438,3 +445,53 @@ class EventsView extends BaseNotificationsView { this.container.html(html); } } + +class ChangelogFeedView extends BaseNotificationsView { + make() { + frappe + .xcall("frappe.utils.change_log.get_changelog_feed_items", {}) + .then((changelog_feed_list) => { + this.render_changelog_feed_html(changelog_feed_list); + }); + } + + render_changelog_feed_html(changelog_feed_list) { + let html = ""; + if (changelog_feed_list.length) { + this.container.empty(); + const get_changelog_feed_html = (changelog_feed_item) => { + const timestamp = frappe.datetime.comment_when(changelog_feed_item.creation); + const message_html = `
+
${changelog_feed_item.title}
+
+ ${changelog_feed_item.app_name} | ${timestamp} +
+
`; + + const item_html = ` +
+ ${message_html} +
+ +
`; + + return item_html; + }; + html = changelog_feed_list.map(get_changelog_feed_html).join(""); + } else { + html = ` +
+
+ Generic Empty State +
${__("Nothing New")}
+
+ ${__("There is nothing new for you.")} +
+ `; + } + this.container.html(html); + } +} diff --git a/frappe/public/js/frappe/ui/toolbar/navbar.html b/frappe/public/js/frappe/ui/toolbar/navbar.html index 451a4e7099..45d3055889 100644 --- a/frappe/public/js/frappe/ui/toolbar/navbar.html +++ b/frappe/public/js/frappe/ui/toolbar/navbar.html @@ -48,6 +48,7 @@
+
diff --git a/frappe/utils/change_log.py b/frappe/utils/change_log.py index a4b56686c2..378c796e24 100644 --- a/frappe/utils/change_log.py +++ b/frappe/utils/change_log.py @@ -309,3 +309,15 @@ def show_update_popup(): if update_message: frappe.msgprint(update_message, title=_("New updates are available"), indicator="green") cache.srem("update-user-set", user) + + +@frappe.whitelist() +def get_changelog_feed_items(): + """Returns a list of all fetched changelog feed items""" + + changelog_feed_items = frappe.cache().get_value("changelog_feed") + if not changelog_feed_items: + changelog_feed_items = frappe.get_hooks("get_changelog_feed") + frappe.cache().set_value("changelog_feed", changelog_feed_items, expires_in_sec=60 * 60) + + return changelog_feed_items From b9bac1d6ad8228ea07f43b182baa5431a1ab9f86 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Tue, 16 May 2023 11:51:12 +0530 Subject: [PATCH 02/93] refactor: `app_name` -> `app_title` and run functions from hooks --- frappe/hooks.py | 26 +++++++++++++------ .../frappe/ui/notifications/notifications.js | 2 +- frappe/utils/change_log.py | 5 +++- 3 files changed, 23 insertions(+), 10 deletions(-) diff --git a/frappe/hooks.py b/frappe/hooks.py index 2e2da857eb..75f93b0ad5 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -425,11 +425,21 @@ extend_bootinfo = [ "frappe.utils.telemetry.add_bootinfo", ] -get_changelog_feed = [ - { - "title": "Spid", - "creation": "2023-04-03 16:56:51.436456", - "app_name": "Frappe Framework", - "link": "https://frappe.io/wiki", - } -] +get_changelog_feed = "frappe.hooks.get_feed" + + +def get_feed(): + return [ + { + "title": "Spid", + "creation": "2023-04-03 16:56:51.436456", + "app_title": app_title, + "link": "https://frappe.io/wiki", + }, + { + "title": "Stable something something", + "creation": "2023-05-03 16:56:51.436456", + "app_title": "HRMS", + "link": "https://frappe.io/blog", + }, + ] diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index e02f62a62e..24c93c438b 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -464,7 +464,7 @@ class ChangelogFeedView extends BaseNotificationsView { const message_html = `
${changelog_feed_item.title}
- ${changelog_feed_item.app_name} | ${timestamp} + ${changelog_feed_item.app_title} | ${timestamp}
`; diff --git a/frappe/utils/change_log.py b/frappe/utils/change_log.py index 378c796e24..f9227c9ecf 100644 --- a/frappe/utils/change_log.py +++ b/frappe/utils/change_log.py @@ -317,7 +317,10 @@ def get_changelog_feed_items(): changelog_feed_items = frappe.cache().get_value("changelog_feed") if not changelog_feed_items: - changelog_feed_items = frappe.get_hooks("get_changelog_feed") + changelog_feed_items = [] + for fn in frappe.get_hooks("get_changelog_feed"): + changelog_feed_items += frappe.get_attr(fn)() + frappe.cache().set_value("changelog_feed", changelog_feed_items, expires_in_sec=60 * 60) return changelog_feed_items From fe79183295a60cd9445fd3bf6f21bcd541ee503e Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Tue, 16 May 2023 11:52:06 +0530 Subject: [PATCH 03/93] feat: sort changelog feed by time --- frappe/utils/change_log.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/utils/change_log.py b/frappe/utils/change_log.py index f9227c9ecf..67e529c0f0 100644 --- a/frappe/utils/change_log.py +++ b/frappe/utils/change_log.py @@ -321,6 +321,7 @@ def get_changelog_feed_items(): for fn in frappe.get_hooks("get_changelog_feed"): changelog_feed_items += frappe.get_attr(fn)() + changelog_feed_items = sorted(changelog_feed_items, key=lambda x: x["creation"], reverse=True) frappe.cache().set_value("changelog_feed", changelog_feed_items, expires_in_sec=60 * 60) return changelog_feed_items From 440b0bdf1c0bcfb2b7dd64f1d513d4e32d284751 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Mon, 22 May 2023 10:18:35 +0530 Subject: [PATCH 04/93] refactor: use `Changelog Feed` doctype to store feed items --- .../desk/doctype/changelog_feed/__init__.py | 0 .../doctype/changelog_feed/changelog_feed.js | 8 +++ .../changelog_feed/changelog_feed.json | 66 +++++++++++++++++++ .../doctype/changelog_feed/changelog_feed.py | 66 +++++++++++++++++++ .../changelog_feed/test_changelog_feed.py | 9 +++ frappe/hooks.py | 20 +----- .../frappe/ui/notifications/notifications.js | 11 +++- frappe/utils/change_log.py | 16 ----- 8 files changed, 159 insertions(+), 37 deletions(-) create mode 100644 frappe/desk/doctype/changelog_feed/__init__.py create mode 100644 frappe/desk/doctype/changelog_feed/changelog_feed.js create mode 100644 frappe/desk/doctype/changelog_feed/changelog_feed.json create mode 100644 frappe/desk/doctype/changelog_feed/changelog_feed.py create mode 100644 frappe/desk/doctype/changelog_feed/test_changelog_feed.py diff --git a/frappe/desk/doctype/changelog_feed/__init__.py b/frappe/desk/doctype/changelog_feed/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.js b/frappe/desk/doctype/changelog_feed/changelog_feed.js new file mode 100644 index 0000000000..44fa5ce24f --- /dev/null +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.js @@ -0,0 +1,8 @@ +// Copyright (c) 2023, Frappe Technologies and contributors +// For license information, please see license.txt + +// frappe.ui.form.on("Changelog Feed", { +// refresh(frm) { + +// }, +// }); diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.json b/frappe/desk/doctype/changelog_feed/changelog_feed.json new file mode 100644 index 0000000000..c4798bd476 --- /dev/null +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.json @@ -0,0 +1,66 @@ +{ + "actions": [], + "allow_rename": 1, + "creation": "2023-05-16 19:37:51.047664", + "default_view": "List", + "doctype": "DocType", + "editable_grid": 1, + "engine": "InnoDB", + "field_order": [ + "title", + "app_name", + "link", + "creation_of_feed_item" + ], + "fields": [ + { + "fieldname": "title", + "fieldtype": "Data", + "in_list_view": 1, + "label": "Title", + "reqd": 1 + }, + { + "fieldname": "app_name", + "fieldtype": "Data", + "label": "App Name" + }, + { + "fieldname": "link", + "fieldtype": "Data", + "in_list_view": 1, + "label": "Link", + "reqd": 1 + }, + { + "fieldname": "creation_of_feed_item", + "fieldtype": "Datetime", + "label": "Creation of Feed Item", + "reqd": 1 + } + ], + "index_web_pages_for_search": 1, + "links": [], + "modified": "2023-05-22 10:04:52.980692", + "modified_by": "Administrator", + "module": "Desk", + "name": "Changelog Feed", + "owner": "Administrator", + "permissions": [ + { + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "share": 1, + "write": 1 + } + ], + "sort_field": "modified", + "sort_order": "DESC", + "states": [] +} \ No newline at end of file diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py new file mode 100644 index 0000000000..df0bfef7dd --- /dev/null +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -0,0 +1,66 @@ +# Copyright (c) 2023, Frappe Technologies and contributors +# For license information, please see license.txt + +import frappe +from frappe.hooks import app_title +from frappe.model.document import Document + + +class ChangelogFeed(Document): + pass + + +def get_feed(): + return [ + { + "title": "Spid", + "creation": "2023-04-03 16:56:51.436456", + "app_name": app_title, + "link": "https://frappe.io/wiki", + }, + { + "title": "Stable something something", + "creation": "2023-05-03 16:56:51.436456", + "app_name": "HRMS", + "link": "https://frappe.io/blog", + }, + ] + + +def fetch_changelog_feed_items_from_source(): + """Fetches changelog feed items from source using + `get_changelog_feed` hook and stores in the db""" + + changelog_feed_items = [] + for fn in frappe.get_hooks("get_changelog_feed"): + changelog_feed_items += frappe.get_attr(fn)() + + changelog_feed_items = sorted(changelog_feed_items, key=lambda x: x["creation"], reverse=True) + for changelog_feed_item in changelog_feed_items: + change_log_feed_item_dict = { + "doctype": "Changelog Feed", + "title": changelog_feed_item["title"], + "app_name": changelog_feed_item["app_name"], + "link": changelog_feed_item["link"], + "creation_of_feed_item": changelog_feed_item["creation"], + } + if not frappe.db.exists(change_log_feed_item_dict): + feed_doc = frappe.get_doc(change_log_feed_item_dict) + feed_doc.insert() + + +@frappe.whitelist() +def get_changelog_feed_items(): + """Returns a list of latest 10 changelog feed items""" + changelog_feed_items = frappe.cache().get_value("changelog_feed") + if not changelog_feed_items or frappe.conf.developer_mode: + fetch_changelog_feed_items_from_source() + changelog_feed_items = frappe.get_list( + "Changelog Feed", + fields=["title", "app_name", "link", "creation_of_feed_item"], + order_by="modified desc", + limit=10, + ) + frappe.cache().set_value("changelog_feed", changelog_feed_items, expires_in_sec=24 * 60 * 60) + + return changelog_feed_items diff --git a/frappe/desk/doctype/changelog_feed/test_changelog_feed.py b/frappe/desk/doctype/changelog_feed/test_changelog_feed.py new file mode 100644 index 0000000000..9427051f10 --- /dev/null +++ b/frappe/desk/doctype/changelog_feed/test_changelog_feed.py @@ -0,0 +1,9 @@ +# Copyright (c) 2023, Frappe Technologies and Contributors +# See license.txt + +# import frappe +from frappe.tests.utils import FrappeTestCase + + +class TestChangelogFeed(FrappeTestCase): + pass diff --git a/frappe/hooks.py b/frappe/hooks.py index 75f93b0ad5..4bffbec8eb 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -236,6 +236,7 @@ scheduler_events = { "frappe.integrations.doctype.s3_backup_settings.s3_backup_settings.take_backups_daily", "frappe.email.doctype.auto_email_report.auto_email_report.send_daily", "frappe.integrations.doctype.google_drive.google_drive.daily_backup", + "frappe.desk.doctype.changelog_feed.changelog_feed.fetch_changelog_feed_items_from_source", ], "weekly_long": [ "frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backups_weekly", @@ -425,21 +426,4 @@ extend_bootinfo = [ "frappe.utils.telemetry.add_bootinfo", ] -get_changelog_feed = "frappe.hooks.get_feed" - - -def get_feed(): - return [ - { - "title": "Spid", - "creation": "2023-04-03 16:56:51.436456", - "app_title": app_title, - "link": "https://frappe.io/wiki", - }, - { - "title": "Stable something something", - "creation": "2023-05-03 16:56:51.436456", - "app_title": "HRMS", - "link": "https://frappe.io/blog", - }, - ] +get_changelog_feed = "frappe.desk.doctype.changelog_feed.changelog_feed.get_feed" diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index 24c93c438b..2bead8a765 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -449,7 +449,10 @@ class EventsView extends BaseNotificationsView { class ChangelogFeedView extends BaseNotificationsView { make() { frappe - .xcall("frappe.utils.change_log.get_changelog_feed_items", {}) + .xcall( + "frappe.desk.doctype.changelog_feed.changelog_feed.get_changelog_feed_items", + {} + ) .then((changelog_feed_list) => { this.render_changelog_feed_html(changelog_feed_list); }); @@ -460,11 +463,13 @@ class ChangelogFeedView extends BaseNotificationsView { if (changelog_feed_list.length) { this.container.empty(); const get_changelog_feed_html = (changelog_feed_item) => { - const timestamp = frappe.datetime.comment_when(changelog_feed_item.creation); + const timestamp = frappe.datetime.comment_when( + changelog_feed_item.creation_of_feed_item + ); const message_html = `
${changelog_feed_item.title}
- ${changelog_feed_item.app_title} | ${timestamp} + ${changelog_feed_item.app_name} | ${timestamp}
`; diff --git a/frappe/utils/change_log.py b/frappe/utils/change_log.py index 67e529c0f0..a4b56686c2 100644 --- a/frappe/utils/change_log.py +++ b/frappe/utils/change_log.py @@ -309,19 +309,3 @@ def show_update_popup(): if update_message: frappe.msgprint(update_message, title=_("New updates are available"), indicator="green") cache.srem("update-user-set", user) - - -@frappe.whitelist() -def get_changelog_feed_items(): - """Returns a list of all fetched changelog feed items""" - - changelog_feed_items = frappe.cache().get_value("changelog_feed") - if not changelog_feed_items: - changelog_feed_items = [] - for fn in frappe.get_hooks("get_changelog_feed"): - changelog_feed_items += frappe.get_attr(fn)() - - changelog_feed_items = sorted(changelog_feed_items, key=lambda x: x["creation"], reverse=True) - frappe.cache().set_value("changelog_feed", changelog_feed_items, expires_in_sec=60 * 60) - - return changelog_feed_items From e130bca6c975ae7c85c426da489915957aeed4d9 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Mon, 22 May 2023 10:33:53 +0530 Subject: [PATCH 05/93] feat: clear cache after inserting feed items --- frappe/desk/doctype/changelog_feed/changelog_feed.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index df0bfef7dd..2d399ee24f 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -47,6 +47,7 @@ def fetch_changelog_feed_items_from_source(): if not frappe.db.exists(change_log_feed_item_dict): feed_doc = frappe.get_doc(change_log_feed_item_dict) feed_doc.insert() + frappe.cache().delete_value("changelog_feed") @frappe.whitelist() From a02c7ba1bd47955cde86bd458361f6d232b2b0e2 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Mon, 22 May 2023 10:40:04 +0530 Subject: [PATCH 06/93] feat: add `utm_source` to link --- frappe/public/js/frappe/ui/notifications/notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index 2bead8a765..0b5927357c 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -474,7 +474,7 @@ class ChangelogFeedView extends BaseNotificationsView { `; const item_html = `
From 68cca6014c81ec445a44f7a7f88d9e8cad0160c0 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Mon, 22 May 2023 11:07:32 +0530 Subject: [PATCH 07/93] chore: don't call fn that's supposed to be run by cron --- frappe/desk/doctype/changelog_feed/changelog_feed.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index 2d399ee24f..99554d3e83 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -55,7 +55,6 @@ def get_changelog_feed_items(): """Returns a list of latest 10 changelog feed items""" changelog_feed_items = frappe.cache().get_value("changelog_feed") if not changelog_feed_items or frappe.conf.developer_mode: - fetch_changelog_feed_items_from_source() changelog_feed_items = frappe.get_list( "Changelog Feed", fields=["title", "app_name", "link", "creation_of_feed_item"], From 56cb9a2bbce789abb35062de444f24ed8ea2fc95 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Mon, 22 May 2023 11:07:40 +0530 Subject: [PATCH 08/93] refactor: `comment_when` -> `prettyDate` --- frappe/public/js/frappe/ui/notifications/notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index 0b5927357c..5fe5024b0c 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -463,7 +463,7 @@ class ChangelogFeedView extends BaseNotificationsView { if (changelog_feed_list.length) { this.container.empty(); const get_changelog_feed_html = (changelog_feed_item) => { - const timestamp = frappe.datetime.comment_when( + const timestamp = frappe.datetime.prettyDate( changelog_feed_item.creation_of_feed_item ); const message_html = `
From c80e4cb5fa5b578325769d606e5c67fff33bb098 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Mon, 22 May 2023 15:27:06 +0530 Subject: [PATCH 09/93] fix: order feed item by feed's creation time --- frappe/desk/doctype/changelog_feed/changelog_feed.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index 99554d3e83..5fefc08979 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -35,7 +35,6 @@ def fetch_changelog_feed_items_from_source(): for fn in frappe.get_hooks("get_changelog_feed"): changelog_feed_items += frappe.get_attr(fn)() - changelog_feed_items = sorted(changelog_feed_items, key=lambda x: x["creation"], reverse=True) for changelog_feed_item in changelog_feed_items: change_log_feed_item_dict = { "doctype": "Changelog Feed", @@ -58,7 +57,7 @@ def get_changelog_feed_items(): changelog_feed_items = frappe.get_list( "Changelog Feed", fields=["title", "app_name", "link", "creation_of_feed_item"], - order_by="modified desc", + order_by="creation_of_feed_item desc", limit=10, ) frappe.cache().set_value("changelog_feed", changelog_feed_items, expires_in_sec=24 * 60 * 60) From 91fc17b758cdf3f38e51d719296e8dd369ada520 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Mon, 22 May 2023 15:28:13 +0530 Subject: [PATCH 10/93] refactor: `frappe.get_attr` -> `frappe.call` `frappe.call` supports plumbing args to the called fn. --- frappe/desk/doctype/changelog_feed/changelog_feed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index 5fefc08979..b93337de5b 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -33,7 +33,7 @@ def fetch_changelog_feed_items_from_source(): changelog_feed_items = [] for fn in frappe.get_hooks("get_changelog_feed"): - changelog_feed_items += frappe.get_attr(fn)() + changelog_feed_items += frappe.call(fn) for changelog_feed_item in changelog_feed_items: change_log_feed_item_dict = { From c9bc1e326f8c9370d31396f880d14bd57519cb77 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Mon, 22 May 2023 15:47:24 +0530 Subject: [PATCH 11/93] chore: pass in latest feed item's date while fetching feed --- .../desk/doctype/changelog_feed/changelog_feed.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index b93337de5b..94eed22635 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -10,7 +10,7 @@ class ChangelogFeed(Document): pass -def get_feed(): +def get_feed(latest_date): return [ { "title": "Spid", @@ -31,9 +31,15 @@ def fetch_changelog_feed_items_from_source(): """Fetches changelog feed items from source using `get_changelog_feed` hook and stores in the db""" + latest_feed_item_date = frappe.db.get_value( + "Changelog Feed", + filters={}, + fieldname="creation_of_feed_item", + order_by="creation_of_feed_item desc", + ) changelog_feed_items = [] for fn in frappe.get_hooks("get_changelog_feed"): - changelog_feed_items += frappe.call(fn) + changelog_feed_items += frappe.call(fn, latest_feed_item_date) for changelog_feed_item in changelog_feed_items: change_log_feed_item_dict = { @@ -54,6 +60,9 @@ def get_changelog_feed_items(): """Returns a list of latest 10 changelog feed items""" changelog_feed_items = frappe.cache().get_value("changelog_feed") if not changelog_feed_items or frappe.conf.developer_mode: + + # running this here while dev instead of waiting for a whole day + # fetch_changelog_feed_items_from_source() changelog_feed_items = frappe.get_list( "Changelog Feed", fields=["title", "app_name", "link", "creation_of_feed_item"], From 36d80387103b55e06afe80df8996445f21dcc39c Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Mon, 22 May 2023 16:02:36 +0530 Subject: [PATCH 12/93] refactor: fetching and saving feed items --- .../doctype/changelog_feed/changelog_feed.py | 27 +++++++++---------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index 94eed22635..36ca7a0a41 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -37,21 +37,20 @@ def fetch_changelog_feed_items_from_source(): fieldname="creation_of_feed_item", order_by="creation_of_feed_item desc", ) - changelog_feed_items = [] - for fn in frappe.get_hooks("get_changelog_feed"): - changelog_feed_items += frappe.call(fn, latest_feed_item_date) - for changelog_feed_item in changelog_feed_items: - change_log_feed_item_dict = { - "doctype": "Changelog Feed", - "title": changelog_feed_item["title"], - "app_name": changelog_feed_item["app_name"], - "link": changelog_feed_item["link"], - "creation_of_feed_item": changelog_feed_item["creation"], - } - if not frappe.db.exists(change_log_feed_item_dict): - feed_doc = frappe.get_doc(change_log_feed_item_dict) - feed_doc.insert() + for fn in frappe.get_hooks("get_changelog_feed"): + for changelog_feed_item in frappe.call(fn, latest_feed_item_date): + change_log_feed_item_dict = { + "doctype": "Changelog Feed", + "title": changelog_feed_item["title"], + "app_name": changelog_feed_item["app_name"], + "link": changelog_feed_item["link"], + "creation_of_feed_item": changelog_feed_item["creation"], + } + if not frappe.db.exists(change_log_feed_item_dict): + feed_doc = frappe.get_doc(change_log_feed_item_dict) + feed_doc.insert() + frappe.cache().delete_value("changelog_feed") From f2abf6117ea4d8ef149b55c2134833a2ec129d70 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Wed, 24 May 2023 15:33:37 +0530 Subject: [PATCH 13/93] refactor: support longer links --- frappe/desk/doctype/changelog_feed/changelog_feed.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.json b/frappe/desk/doctype/changelog_feed/changelog_feed.json index c4798bd476..4843383362 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.json +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.json @@ -27,7 +27,7 @@ }, { "fieldname": "link", - "fieldtype": "Data", + "fieldtype": "Long Text", "in_list_view": 1, "label": "Link", "reqd": 1 @@ -41,7 +41,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-05-22 10:04:52.980692", + "modified": "2023-05-24 15:26:39.211363", "modified_by": "Administrator", "module": "Desk", "name": "Changelog Feed", From 1774dfcd0be312359901de818e465006ac8b201b Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Wed, 24 May 2023 15:34:11 +0530 Subject: [PATCH 14/93] refactor: open changelog feed in new tab --- frappe/public/js/frappe/ui/notifications/notifications.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index 5fe5024b0c..1eace08098 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -476,6 +476,7 @@ class ChangelogFeedView extends BaseNotificationsView { const item_html = `
${message_html} From b5e265ad9aa33de8fec6e0ad5369e2cbcaebccb9 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Mon, 29 May 2023 12:16:50 +0530 Subject: [PATCH 15/93] feat: setup changelog feed for framework --- .../doctype/changelog_feed/changelog_feed.py | 29 ++++++++++--------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index 36ca7a0a41..1cdb93c253 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -1,6 +1,10 @@ # Copyright (c) 2023, Frappe Technologies and contributors # For license information, please see license.txt +from json import loads + +import requests + import frappe from frappe.hooks import app_title from frappe.model.document import Document @@ -11,20 +15,17 @@ class ChangelogFeed(Document): def get_feed(latest_date): - return [ - { - "title": "Spid", - "creation": "2023-04-03 16:56:51.436456", - "app_name": app_title, - "link": "https://frappe.io/wiki", - }, - { - "title": "Stable something something", - "creation": "2023-05-03 16:56:51.436456", - "app_name": "HRMS", - "link": "https://frappe.io/blog", - }, - ] + source_site = "https://frappe.io" + + r = requests.get(f"{source_site}/api/method/fetch_fw_changelog") + response = loads(r.content) + + changelog_posts = response["changelog_posts"] + for post in changelog_posts: + post["link"] = f"{source_site}/{post['route']}" + post["app_name"] = app_title + + return changelog_posts def fetch_changelog_feed_items_from_source(): From 7d4c2d9214004f31c668e635c55b8193ce23cd30 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Mon, 29 May 2023 12:23:39 +0530 Subject: [PATCH 16/93] chore: cleanup --- frappe/desk/doctype/changelog_feed/changelog_feed.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index 1cdb93c253..dd32473db1 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -61,8 +61,6 @@ def get_changelog_feed_items(): changelog_feed_items = frappe.cache().get_value("changelog_feed") if not changelog_feed_items or frappe.conf.developer_mode: - # running this here while dev instead of waiting for a whole day - # fetch_changelog_feed_items_from_source() changelog_feed_items = frappe.get_list( "Changelog Feed", fields=["title", "app_name", "link", "creation_of_feed_item"], From 1c25d583433ae6297e0522ce5b91956f32473eb1 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Thu, 1 Jun 2023 11:35:56 +0530 Subject: [PATCH 17/93] fix: fetch changelog feed comparing with latest feed instead of a cron job --- frappe/desk/doctype/changelog_feed/changelog_feed.py | 8 ++++++++ frappe/hooks.py | 1 - 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index dd32473db1..d771fbc1ee 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -58,8 +58,16 @@ def fetch_changelog_feed_items_from_source(): @frappe.whitelist() def get_changelog_feed_items(): """Returns a list of latest 10 changelog feed items""" + changelog_feed_items = frappe.cache().get_value("changelog_feed") if not changelog_feed_items or frappe.conf.developer_mode: + latest_changelogs = frappe.get_list("Changelog Feed", limit=1, fields=["creation"]) + if ( + not latest_changelogs + or frappe.utils.time_diff_in_seconds(frappe.utils.now_datetime(), latest_changelogs[0].creation) + > 60 + ): + fetch_changelog_feed_items_from_source() changelog_feed_items = frappe.get_list( "Changelog Feed", diff --git a/frappe/hooks.py b/frappe/hooks.py index 4bffbec8eb..8a33f74770 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -236,7 +236,6 @@ scheduler_events = { "frappe.integrations.doctype.s3_backup_settings.s3_backup_settings.take_backups_daily", "frappe.email.doctype.auto_email_report.auto_email_report.send_daily", "frappe.integrations.doctype.google_drive.google_drive.daily_backup", - "frappe.desk.doctype.changelog_feed.changelog_feed.fetch_changelog_feed_items_from_source", ], "weekly_long": [ "frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backups_weekly", From 9736755e5e7dc0a55d52a63d543dacc88d6bf9e9 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Thu, 8 Jun 2023 14:05:29 +0530 Subject: [PATCH 18/93] feat: don't run in dev setup to reduce the amount of requests --- frappe/desk/doctype/changelog_feed/changelog_feed.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index d771fbc1ee..bfb9ba5ac5 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -59,8 +59,12 @@ def fetch_changelog_feed_items_from_source(): def get_changelog_feed_items(): """Returns a list of latest 10 changelog feed items""" + # don't run in developer mode to avoid unnecessary requests + if frappe.conf.developer_mode: + return [] + changelog_feed_items = frappe.cache().get_value("changelog_feed") - if not changelog_feed_items or frappe.conf.developer_mode: + if not changelog_feed_items: latest_changelogs = frappe.get_list("Changelog Feed", limit=1, fields=["creation"]) if ( not latest_changelogs From 1b7e3c6af511c8d8659375984574b204a3c4418b Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Sun, 25 Jun 2023 11:16:20 +0530 Subject: [PATCH 19/93] feat: control what's new settings from notification settings --- .../notification_settings.json | 12 ++- .../frappe/ui/notifications/notifications.js | 92 +++++++++++-------- 2 files changed, 65 insertions(+), 39 deletions(-) diff --git a/frappe/desk/doctype/notification_settings/notification_settings.json b/frappe/desk/doctype/notification_settings/notification_settings.json index 1a6efd5a0d..4f3e623f8c 100644 --- a/frappe/desk/doctype/notification_settings/notification_settings.json +++ b/frappe/desk/doctype/notification_settings/notification_settings.json @@ -18,7 +18,8 @@ "user", "seen", "system_notifications_section", - "energy_points_system_notifications" + "energy_points_system_notifications", + "whats_new_notifications" ], "fields": [ { @@ -105,12 +106,18 @@ "fieldname": "enable_email_event_reminders", "fieldtype": "Check", "label": "Event Reminders" + }, + { + "default": "1", + "fieldname": "whats_new_notifications", + "fieldtype": "Check", + "label": "What's New" } ], "in_create": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2021-11-24 14:45:31.931154", + "modified": "2023-06-25 11:02:58.776676", "modified_by": "Administrator", "module": "Desk", "name": "Notification Settings", @@ -132,5 +139,6 @@ "read_only": 1, "sort_field": "modified", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index 1eace08098..7449d0806c 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -459,45 +459,63 @@ class ChangelogFeedView extends BaseNotificationsView { } render_changelog_feed_html(changelog_feed_list) { - let html = ""; - if (changelog_feed_list.length) { - this.container.empty(); - const get_changelog_feed_html = (changelog_feed_item) => { - const timestamp = frappe.datetime.prettyDate( - changelog_feed_item.creation_of_feed_item - ); - const message_html = ` - `; + const item_html = ` +
+ ${message_html} +
+
+ `; - return item_html; - }; - html = changelog_feed_list.map(get_changelog_feed_html).join(""); - } else { - html = ` -
-
- Generic Empty State -
${__("Nothing New")}
-
- ${__("There is nothing new for you.")} -
- `; - } - this.container.html(html); + return item_html; + }; + html = changelog_feed_list.map(get_changelog_feed_html).join(""); + } else { + html = ` +
+
+ Generic Empty State +
${__("Nothing New")}
+
+ ${__("There is nothing new to show you right now.")} +
+
+
+ `; + } + this.container.html(html); + }); } } From dde3cb158907a77b8dd9f307bca5491def02faf7 Mon Sep 17 00:00:00 2001 From: Bread Genie Date: Sun, 25 Jun 2023 14:15:32 +0530 Subject: [PATCH 20/93] refactor: use `frappe.new_doc`to create a new changelog feed doc --- frappe/desk/doctype/changelog_feed/changelog_feed.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index bfb9ba5ac5..966629b681 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -49,7 +49,8 @@ def fetch_changelog_feed_items_from_source(): "creation_of_feed_item": changelog_feed_item["creation"], } if not frappe.db.exists(change_log_feed_item_dict): - feed_doc = frappe.get_doc(change_log_feed_item_dict) + feed_doc = frappe.new_doc("Changelog Feed") + feed_doc.update(change_log_feed_item_dict) feed_doc.insert() frappe.cache().delete_value("changelog_feed") From a307ec6c881106e5b14ebde2a3f5c91c708b1f9f Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Mon, 8 Jan 2024 17:51:25 +0100 Subject: [PATCH 21/93] feat: auto-generated attribution page --- frappe/www/attribution.html | 42 ++++++++++++++++++++ frappe/www/attribution.py | 78 +++++++++++++++++++++++++++++++++++++ 2 files changed, 120 insertions(+) create mode 100644 frappe/www/attribution.html create mode 100644 frappe/www/attribution.py diff --git a/frappe/www/attribution.html b/frappe/www/attribution.html new file mode 100644 index 0000000000..efeed6024c --- /dev/null +++ b/frappe/www/attribution.html @@ -0,0 +1,42 @@ +{% extends "templates/web.html" %} + +{% block page_content %} + +

{{ _("Attribution") }}

+

+ {{ _("This software is built on top of many open source packages. We would like to thank the authors of these packages for their contribution.") }} +

+ +{% for app, packages in packages_by_app.items() %} +
+

{{ app }}

+ + + + + + + + + + + {% for package in packages %} + + + + + + + {% endfor %} + +
{{ _("Package") }}{{ _("Version") }}{{ _("License") }}{{ _("Author") }}
+ {% if package.homepage %} + {{ package.name | e }} + {% else %} + {{ package.name | e }} + {% endif %} + {{ package.version | e }}{{ (package.license | e) or _("Unknown") }}{{ (package.author | e) or _("Unknown") }}
+
+{% endfor %} + +{% endblock %} \ No newline at end of file diff --git a/frappe/www/attribution.py b/frappe/www/attribution.py new file mode 100644 index 0000000000..bfc8f2eda7 --- /dev/null +++ b/frappe/www/attribution.py @@ -0,0 +1,78 @@ +import json +import re +import tomllib + +import requests + +import frappe + + +def get_context(context): + packages_by_app = {} + for app in frappe.get_installed_apps(): + packages_by_app[app] = get_app_deps(app) + + context.packages_by_app = packages_by_app + + +def get_app_deps(app: str): + dependencies = [] + + app_info = get_pyproject_info(app) + for requirement in app_info.get("dependencies", []): + name, version = parse_pip_requirement(requirement) + info = get_py_registry_info(name) + info["name"] = name + info["version"] = version + dependencies.append(info) + + for name, version in get_js_deps(app).items(): + info = get_js_registry_info(name) + info["name"] = name + info["version"] = version + dependencies.append(info) + + return dependencies + + +def get_js_deps(app: str): + package_json = frappe.get_app_path(app, "..", "package.json") + with open(package_json) as f: + package = json.load(f) + + return package.get("dependencies", {}) + + +def get_js_registry_info(package): + registry_url = f"https://registry.npmjs.org/{package}" + registry_info = requests.get(registry_url).json() + return { + "license": registry_info.get("license"), + "author": registry_info.get("author", {}).get("name"), + "homepage": registry_info.get("homepage"), + } + + +def get_pyproject_info(app: str) -> list[str]: + pyproject_toml = frappe.get_app_path(app, "..", "pyproject.toml") + with open(pyproject_toml, "rb") as f: + pyproject = tomllib.load(f) + + return pyproject.get("project", {}) + + +def get_py_registry_info(package): + registry_url = f"https://pypi.org/pypi/{package}/json" + registry_info = requests.get(registry_url).json().get("info", {}) + return { + "license": registry_info.get("license"), + "author": registry_info.get("author"), + "homepage": registry_info.get("home_page"), + } + + +def parse_pip_requirement(requirement: str) -> tuple[str, str]: + """Parse pip requirement string to package name and version""" + match = re.match(r"^([A-Za-z0-9_\-\[\]]+)(.*)$", requirement) + + return (match[1], match[2]) if match else (requirement, "") From 5a4b5789fe51b51102c3700f9448dfd04071c995 Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Mon, 8 Jan 2024 18:02:56 +0100 Subject: [PATCH 22/93] feat: cache app info --- frappe/www/attribution.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/www/attribution.py b/frappe/www/attribution.py index bfc8f2eda7..823575cc9c 100644 --- a/frappe/www/attribution.py +++ b/frappe/www/attribution.py @@ -5,6 +5,7 @@ import tomllib import requests import frappe +from frappe.utils.caching import redis_cache def get_context(context): @@ -15,6 +16,7 @@ def get_context(context): context.packages_by_app = packages_by_app +@redis_cache(ttl=60 * 60 * 24 * 7) def get_app_deps(app: str): dependencies = [] From 9412ef4e76606b74633a62e680ede4f9a8938661 Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Mon, 8 Jan 2024 18:03:21 +0100 Subject: [PATCH 23/93] fix: only show attribution to authenticated users --- frappe/www/attribution.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/www/attribution.py b/frappe/www/attribution.py index 823575cc9c..22a7edaa69 100644 --- a/frappe/www/attribution.py +++ b/frappe/www/attribution.py @@ -9,6 +9,9 @@ from frappe.utils.caching import redis_cache def get_context(context): + if frappe.session.user == "Guest": + frappe.throw("You need to be logged in to access this page.", frappe.PermissionError) + packages_by_app = {} for app in frappe.get_installed_apps(): packages_by_app[app] = get_app_deps(app) From a1e1a32ea1466b2c31a7a6842725dee295789f6f Mon Sep 17 00:00:00 2001 From: Marco Aurelio Date: Mon, 15 Jan 2024 18:09:18 -0300 Subject: [PATCH 24/93] fix: copy paste from Excel (issue #24371) --- frappe/public/js/frappe/form/controls/table.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/frappe/public/js/frappe/form/controls/table.js b/frappe/public/js/frappe/form/controls/table.js index 777705634c..cccc06dc7e 100644 --- a/frappe/public/js/frappe/form/controls/table.js +++ b/frappe/public/js/frappe/form/controls/table.js @@ -24,6 +24,13 @@ frappe.ui.form.ControlTable = class ControlTable extends frappe.ui.form.Control const doctype = grid.doctype; const row_docname = $(e.target).closest(".grid-row").data("name"); const in_grid_form = $(e.target).closest(".form-in-grid").length; + const value_formatter_map = { + Date: (val) => (val ? frappe.datetime.user_to_str(val) : val), + Int: (val) => cint(val), + Check: (val) => cint(val), + Float: (val) => flt(val), + Currency: (val) => flt(val), + }; let pasted_data = frappe.utils.get_clipboard_data(e); @@ -34,10 +41,13 @@ frappe.ui.form.ControlTable = class ControlTable extends frappe.ui.form.Control if (data.length === 1 && data[0].length === 1) return; let fieldnames = []; + let fieldtypes = []; // for raw data with column header if (this.get_field(data[0][0])) { data[0].forEach((column) => { fieldnames.push(this.get_field(column)); + var df = frappe.meta.get_docfield(doctype, this.get_field(column)); + fieldtypes.push(df.fieldtype); }); data.shift(); } else { @@ -51,6 +61,8 @@ frappe.ui.form.ControlTable = class ControlTable extends frappe.ui.form.Control column.fieldname === $(e.target).data("fieldname") ) { fieldnames.push(column.fieldname); + var df = frappe.meta.get_docfield(doctype, column.fieldname); + fieldtypes.push(df.fieldtype); target_column_matched = true; } }); @@ -73,6 +85,10 @@ frappe.ui.form.ControlTable = class ControlTable extends frappe.ui.form.Control const row_name = grid_rows[row_idx - 1].doc.name; row.forEach((value, data_index) => { if (fieldnames[data_index]) { + // format value before setting + value = value_formatter_map[fieldtypes[data_index]] + ? value_formatter_map[fieldtypes[data_index]](value) + : value; frappe.model.set_value( doctype, row_name, From 0832f3b01d3bfa4f93d97975092ecfa40e446f52 Mon Sep 17 00:00:00 2001 From: Marco Aurelio Date: Mon, 15 Jan 2024 18:34:39 -0300 Subject: [PATCH 25/93] fix: copy paste from Excel (issue #24371) --- frappe/public/js/frappe/form/controls/table.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/form/controls/table.js b/frappe/public/js/frappe/form/controls/table.js index cccc06dc7e..fd9054c003 100644 --- a/frappe/public/js/frappe/form/controls/table.js +++ b/frappe/public/js/frappe/form/controls/table.js @@ -47,7 +47,11 @@ frappe.ui.form.ControlTable = class ControlTable extends frappe.ui.form.Control data[0].forEach((column) => { fieldnames.push(this.get_field(column)); var df = frappe.meta.get_docfield(doctype, this.get_field(column)); - fieldtypes.push(df.fieldtype); + if (df) { + fieldtypes.push(df.fieldtype); + } else { + fieldtypes.push(""); + } }); data.shift(); } else { @@ -62,7 +66,11 @@ frappe.ui.form.ControlTable = class ControlTable extends frappe.ui.form.Control ) { fieldnames.push(column.fieldname); var df = frappe.meta.get_docfield(doctype, column.fieldname); - fieldtypes.push(df.fieldtype); + if (df) { + fieldtypes.push(df.fieldtype); + } else { + fieldtypes.push(""); + } target_column_matched = true; } }); From 82ddd385ba8d25aa37e7f6ca3258411c0425a47d Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Mon, 29 Jan 2024 17:11:43 +0100 Subject: [PATCH 26/93] refactor: async load info in frontend --- frappe/www/attribution.html | 138 ++++++++++++++++++++++++++++-------- frappe/www/attribution.py | 78 ++++++++------------ 2 files changed, 138 insertions(+), 78 deletions(-) diff --git a/frappe/www/attribution.html b/frappe/www/attribution.html index efeed6024c..471d9b007c 100644 --- a/frappe/www/attribution.html +++ b/frappe/www/attribution.html @@ -1,42 +1,118 @@ {% extends "templates/web.html" %} +{% block head_include %} + +{% endblock %} + {% block page_content %}

{{ _("Attribution") }}

- {{ _("This software is built on top of many open source packages. We would like to thank the authors of these packages for their contribution.") }} + {{ _("This software is built on top of many open source packages. We would like to thank the authors of these + packages for their contribution.") }}

-{% for app, packages in packages_by_app.items() %} -
-

{{ app }}

- - - - - - - - - - - {% for package in packages %} - - - - - - - {% endfor %} - -
{{ _("Package") }}{{ _("Version") }}{{ _("License") }}{{ _("Author") }}
- {% if package.homepage %} - {{ package.name | e }} - {% else %} - {{ package.name | e }} - {% endif %} - {{ package.version | e }}{{ (package.license | e) or _("Unknown") }}{{ (package.author | e) or _("Unknown") }}
-
+{% for app_info in apps %} +
+

{{ app_info.name }}

+ + + + + + + + + + + + +
{{ _("Authors") }}{{ app_info.authors }}
{{ _("Description") }}{{ app_info.description }}
{{ _("Dependencies") }} + + + + + + + + + + + {% for package in app_info["dependencies"] %} + + + + + + + {% endfor %} + +
{{ _("Package") }}{{ _("Type") }}{{ _("License") }}{{ _("Authors / Maintainers") }}
+ {{ package.name | e }} + {{ package.type }}
+
+
{% endfor %} + + {% endblock %} \ No newline at end of file diff --git a/frappe/www/attribution.py b/frappe/www/attribution.py index 22a7edaa69..0a248741ea 100644 --- a/frappe/www/attribution.py +++ b/frappe/www/attribution.py @@ -1,83 +1,67 @@ import json import re import tomllib - -import requests +from pathlib import Path import frappe -from frappe.utils.caching import redis_cache def get_context(context): if frappe.session.user == "Guest": frappe.throw("You need to be logged in to access this page.", frappe.PermissionError) - packages_by_app = {} + apps = [] for app in frappe.get_installed_apps(): - packages_by_app[app] = get_app_deps(app) + app_info = get_app_info(app) + if any([app_info.get("authors"), app_info.get("dependencies"), app_info.get("description")]): + apps.append(app_info) - context.packages_by_app = packages_by_app + context.apps = apps -@redis_cache(ttl=60 * 60 * 24 * 7) -def get_app_deps(app: str): - dependencies = [] - +def get_app_info(app: str): app_info = get_pyproject_info(app) + result = { + "name": app, + "description": app_info.get("description", ""), + "authors": ", ".join([a.get("name", "") for a in app_info.get("authors", [])]), + "dependencies": [], + } + for requirement in app_info.get("dependencies", []): - name, version = parse_pip_requirement(requirement) - info = get_py_registry_info(name) - info["name"] = name - info["version"] = version - dependencies.append(info) + name = parse_pip_requirement(requirement) + result["dependencies"].append({"name": name, "type": "Python"}) - for name, version in get_js_deps(app).items(): - info = get_js_registry_info(name) - info["name"] = name - info["version"] = version - dependencies.append(info) + result["dependencies"].extend(get_js_deps(app)) - return dependencies + return result -def get_js_deps(app: str): - package_json = frappe.get_app_path(app, "..", "package.json") +def get_js_deps(app: str) -> list[dict]: + package_json = Path(frappe.get_app_path(app, "..", "package.json")) + if not package_json.exists(): + return {} + with open(package_json) as f: package = json.load(f) - return package.get("dependencies", {}) + packages = package.get("dependencies", {}).keys() + return [{"name": name, "type": "JavaScript"} for name in packages] -def get_js_registry_info(package): - registry_url = f"https://registry.npmjs.org/{package}" - registry_info = requests.get(registry_url).json() - return { - "license": registry_info.get("license"), - "author": registry_info.get("author", {}).get("name"), - "homepage": registry_info.get("homepage"), - } +def get_pyproject_info(app: str) -> dict: + pyproject_toml = Path(frappe.get_app_path(app, "..", "pyproject.toml")) + if not pyproject_toml.exists(): + return {} - -def get_pyproject_info(app: str) -> list[str]: - pyproject_toml = frappe.get_app_path(app, "..", "pyproject.toml") with open(pyproject_toml, "rb") as f: pyproject = tomllib.load(f) return pyproject.get("project", {}) -def get_py_registry_info(package): - registry_url = f"https://pypi.org/pypi/{package}/json" - registry_info = requests.get(registry_url).json().get("info", {}) - return { - "license": registry_info.get("license"), - "author": registry_info.get("author"), - "homepage": registry_info.get("home_page"), - } - - -def parse_pip_requirement(requirement: str) -> tuple[str, str]: +def parse_pip_requirement(requirement: str) -> str: """Parse pip requirement string to package name and version""" match = re.match(r"^([A-Za-z0-9_\-\[\]]+)(.*)$", requirement) - return (match[1], match[2]) if match else (requirement, "") + return match[1] if match else requirement From f01ce014e49229b6313549872f30388cc0015deb Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Mon, 29 Jan 2024 17:19:15 +0100 Subject: [PATCH 27/93] fix: missing translation --- frappe/www/attribution.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/www/attribution.py b/frappe/www/attribution.py index 0a248741ea..971d6d7494 100644 --- a/frappe/www/attribution.py +++ b/frappe/www/attribution.py @@ -4,11 +4,12 @@ import tomllib from pathlib import Path import frappe +from frappe import _ def get_context(context): if frappe.session.user == "Guest": - frappe.throw("You need to be logged in to access this page.", frappe.PermissionError) + frappe.throw(_("You need to be logged in to access this page."), frappe.PermissionError) apps = [] for app in frappe.get_installed_apps(): From 88d8b6ce6c419f03984a93a6eb54a87111938701 Mon Sep 17 00:00:00 2001 From: Gursheen Anand Date: Mon, 18 Mar 2024 14:45:08 +0530 Subject: [PATCH 28/93] feat: announcement widget in navbar settings --- .../navbar_settings/navbar_settings.json | 47 ++++++++++--------- .../navbar_settings/navbar_settings.py | 1 + 2 files changed, 25 insertions(+), 23 deletions(-) diff --git a/frappe/core/doctype/navbar_settings/navbar_settings.json b/frappe/core/doctype/navbar_settings/navbar_settings.json index 8fc0c83c82..b8142066c9 100644 --- a/frappe/core/doctype/navbar_settings/navbar_settings.json +++ b/frappe/core/doctype/navbar_settings/navbar_settings.json @@ -11,63 +11,63 @@ "logo_width", "section_break_2", "settings_dropdown", - "help_dropdown" + "help_dropdown", + "announcements_section", + "announcement_widget" ], "fields": [ { "fieldname": "app_logo", "fieldtype": "Attach Image", - "label": "Application Logo", - "show_days": 1, - "show_seconds": 1 + "label": "Application Logo" }, { "fieldname": "settings_dropdown", "fieldtype": "Table", "label": "Settings Dropdown", - "options": "Navbar Item", - "show_days": 1, - "show_seconds": 1 + "options": "Navbar Item" }, { "fieldname": "help_dropdown", "fieldtype": "Table", "label": "Help Dropdown", - "options": "Navbar Item", - "show_days": 1, - "show_seconds": 1 + "options": "Navbar Item" }, { "fieldname": "section_break_2", "fieldtype": "Section Break", - "label": "Dropdowns", - "show_days": 1, - "show_seconds": 1 + "label": "Dropdowns" }, { "fieldname": "logo_section", "fieldtype": "Section Break", - "label": "Application Logo", - "show_days": 1, - "show_seconds": 1 + "label": "Application Logo" }, { "fieldname": "column_break_3", - "fieldtype": "Column Break", - "show_days": 1, - "show_seconds": 1 + "fieldtype": "Column Break" }, { "fieldname": "logo_width", "fieldtype": "Int", - "label": "Logo Width", - "show_days": 1, - "show_seconds": 1 + "label": "Logo Width" + }, + { + "fieldname": "announcements_section", + "fieldtype": "Section Break", + "label": "Announcements" + }, + { + "description": "These announcements will appear inside a dismissible alert below the Navbar.", + "fieldname": "announcement_widget", + "fieldtype": "Text Editor", + "label": "Announcement Widget", + "max_height": "10em" } ], "issingle": 1, "links": [], - "modified": "2020-08-06 18:11:29.955835", + "modified": "2024-03-18 13:54:44.498352", "modified_by": "Administrator", "module": "Core", "name": "Navbar Settings", @@ -87,5 +87,6 @@ "quick_entry": 1, "sort_field": "modified", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/core/doctype/navbar_settings/navbar_settings.py b/frappe/core/doctype/navbar_settings/navbar_settings.py index cbab42f4ed..54a0b64dc4 100644 --- a/frappe/core/doctype/navbar_settings/navbar_settings.py +++ b/frappe/core/doctype/navbar_settings/navbar_settings.py @@ -16,6 +16,7 @@ class NavbarSettings(Document): from frappe.core.doctype.navbar_item.navbar_item import NavbarItem from frappe.types import DF + announcement_widget: DF.TextEditor | None app_logo: DF.AttachImage | None help_dropdown: DF.Table[NavbarItem] logo_width: DF.Int From 1dbd4479acc08169a335e138e0e4693bf505d98a Mon Sep 17 00:00:00 2001 From: Gursheen Anand Date: Mon, 18 Mar 2024 14:46:34 +0530 Subject: [PATCH 29/93] feat: setup widget in toolbar --- frappe/public/js/frappe/ui/toolbar/toolbar.js | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/frappe/public/js/frappe/ui/toolbar/toolbar.js b/frappe/public/js/frappe/ui/toolbar/toolbar.js index 8922cfe2b3..e7ea130fd6 100644 --- a/frappe/public/js/frappe/ui/toolbar/toolbar.js +++ b/frappe/public/js/frappe/ui/toolbar/toolbar.js @@ -6,6 +6,7 @@ frappe.provide("frappe.search"); frappe.ui.toolbar.Toolbar = class { constructor() { + frappe.ui.toolbar.reset_announcement_widget(); $("header").replaceWith( frappe.render_template("navbar", { avatar: frappe.avatar(frappe.session.user, "avatar-medium"), @@ -21,6 +22,7 @@ frappe.ui.toolbar.Toolbar = class { this.setup_notifications(); this.setup_help(); this.setup_read_only_mode(); + this.setup_announcement_widget(); this.make(); } @@ -56,6 +58,19 @@ frappe.ui.toolbar.Toolbar = class { }); } + setup_announcement_widget() { + if (frappe.boot.navbar_settings.announcement_widget) { + let announcement_widget = $(".announcement-widget"); + let close_message = announcement_widget.find(".close-message"); + close_message.on( + "click", + () => + localStorage.setItem("show_announcement_widget", false) || + announcement_widget.addClass("hidden") + ); + } + } + setup_help() { if (!frappe.boot.desk_settings.notifications) { // hide the help section @@ -230,6 +245,16 @@ frappe.ui.toolbar.clear_cache = frappe.utils.throttle(function () { }); }, 10000); +frappe.ui.toolbar.reset_announcement_widget = function () { + frappe.db.get_single_value("Navbar Settings", "announcement_widget").then((value) => { + if (value != frappe.boot.navbar_settings.announcement_widget) { + localStorage.setItem("show_announcement_widget", strip_html(value) != ""); + frappe.boot.navbar_settings.announcement_widget = value; + frappe.ui.toolbar.clear_cache(); + } + }); +}; + frappe.ui.toolbar.show_about = function () { try { frappe.ui.misc.about(); From 86f97922d1c1cf8ab85969e703e6b912b75445c4 Mon Sep 17 00:00:00 2001 From: Gursheen Anand Date: Mon, 18 Mar 2024 14:47:58 +0530 Subject: [PATCH 30/93] feat: add html for widget below navbar --- .../public/js/frappe/ui/toolbar/navbar.html | 278 +++++++++--------- 1 file changed, 146 insertions(+), 132 deletions(-) diff --git a/frappe/public/js/frappe/ui/toolbar/navbar.html b/frappe/public/js/frappe/ui/toolbar/navbar.html index cdae4211d2..a8031f6189 100644 --- a/frappe/public/js/frappe/ui/toolbar/navbar.html +++ b/frappe/public/js/frappe/ui/toolbar/navbar.html @@ -1,139 +1,153 @@ -
+ + + {% if localStorage.getItem('show_announcement_widget') == 'true' && navbar_settings.announcement_widget %} +
+
+ {{ navbar_settings.announcement_widget }} +
+ {{ frappe.utils.icon("close") }} +
- + {% endif %} + +
\ No newline at end of file From 1a0fe4c48d09efe7dda28ee47bafe15872af3d9d Mon Sep 17 00:00:00 2001 From: Gursheen Anand Date: Mon, 18 Mar 2024 14:53:48 +0530 Subject: [PATCH 31/93] fix: toolbar condition for setting up widget --- frappe/public/js/frappe/ui/toolbar/toolbar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/ui/toolbar/toolbar.js b/frappe/public/js/frappe/ui/toolbar/toolbar.js index e7ea130fd6..68452fee90 100644 --- a/frappe/public/js/frappe/ui/toolbar/toolbar.js +++ b/frappe/public/js/frappe/ui/toolbar/toolbar.js @@ -59,7 +59,7 @@ frappe.ui.toolbar.Toolbar = class { } setup_announcement_widget() { - if (frappe.boot.navbar_settings.announcement_widget) { + if (localStorage.getItem("show_announcement_widget")) { let announcement_widget = $(".announcement-widget"); let close_message = announcement_widget.find(".close-message"); close_message.on( From 351151b0ff684113236fec10bde9d56379ebc69b Mon Sep 17 00:00:00 2001 From: Gursheen Anand Date: Mon, 18 Mar 2024 14:54:36 +0530 Subject: [PATCH 32/93] fix: reset announcements after saving settings --- frappe/core/doctype/navbar_settings/navbar_settings.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frappe/core/doctype/navbar_settings/navbar_settings.js b/frappe/core/doctype/navbar_settings/navbar_settings.js index c0e1113087..acdcdf8ac7 100644 --- a/frappe/core/doctype/navbar_settings/navbar_settings.js +++ b/frappe/core/doctype/navbar_settings/navbar_settings.js @@ -2,6 +2,7 @@ // For license information, please see license.txt frappe.ui.form.on("Navbar Settings", { - // refresh: function(frm) { - // } + after_save: function (frm) { + frappe.ui.toolbar.reset_announcement_widget(); + }, }); From dc53010a2aeb1cdf8c8c3d8c9e83b2f72e5a8d76 Mon Sep 17 00:00:00 2001 From: Gursheen Anand Date: Wed, 20 Mar 2024 15:53:49 +0530 Subject: [PATCH 33/93] fix: use localStorage for widget content --- frappe/public/js/frappe/ui/toolbar/navbar.html | 6 +++--- frappe/public/js/frappe/ui/toolbar/toolbar.js | 9 ++++----- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/frappe/public/js/frappe/ui/toolbar/navbar.html b/frappe/public/js/frappe/ui/toolbar/navbar.html index a8031f6189..f17203c08b 100644 --- a/frappe/public/js/frappe/ui/toolbar/navbar.html +++ b/frappe/public/js/frappe/ui/toolbar/navbar.html @@ -139,10 +139,10 @@ - {% if localStorage.getItem('show_announcement_widget') == 'true' && navbar_settings.announcement_widget %} + {% if localStorage.getItem("show_announcement_widget") == 'true' && strip_html(localStorage.getItem("announcement_widget")) != '' %}
-
- {{ navbar_settings.announcement_widget }} +
+ {{ localStorage.getItem("announcement_widget") }}
{{ frappe.utils.icon("close") }}
diff --git a/frappe/public/js/frappe/ui/toolbar/toolbar.js b/frappe/public/js/frappe/ui/toolbar/toolbar.js index 68452fee90..62bcde0f43 100644 --- a/frappe/public/js/frappe/ui/toolbar/toolbar.js +++ b/frappe/public/js/frappe/ui/toolbar/toolbar.js @@ -59,7 +59,7 @@ frappe.ui.toolbar.Toolbar = class { } setup_announcement_widget() { - if (localStorage.getItem("show_announcement_widget")) { + if (localStorage.getItem("show_announcement_widget") == "true") { let announcement_widget = $(".announcement-widget"); let close_message = announcement_widget.find(".close-message"); close_message.on( @@ -247,10 +247,9 @@ frappe.ui.toolbar.clear_cache = frappe.utils.throttle(function () { frappe.ui.toolbar.reset_announcement_widget = function () { frappe.db.get_single_value("Navbar Settings", "announcement_widget").then((value) => { - if (value != frappe.boot.navbar_settings.announcement_widget) { - localStorage.setItem("show_announcement_widget", strip_html(value) != ""); - frappe.boot.navbar_settings.announcement_widget = value; - frappe.ui.toolbar.clear_cache(); + if (value != localStorage.getItem("announcement_widget")) { + localStorage.setItem("show_announcement_widget", true); + localStorage.setItem("announcement_widget", value); } }); }; From c654d80935696797f867700d1b9231e47af96c98 Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:32:48 +0100 Subject: [PATCH 34/93] fix: paragraph spacing in quill --- frappe/public/scss/common/quill.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frappe/public/scss/common/quill.scss b/frappe/public/scss/common/quill.scss index 135fe0dcf8..45af2f2879 100644 --- a/frappe/public/scss/common/quill.scss +++ b/frappe/public/scss/common/quill.scss @@ -292,6 +292,12 @@ } } +.ql-editor { + p:not(:first-child) { + margin-top: 0.75rem; + } +} + .ql-editor td { border: 1px solid var(--dark-border-color); } From f31dc47eebd89e64b68fd8b8652329e99e3eb6ba Mon Sep 17 00:00:00 2001 From: Gursheen Anand Date: Fri, 22 Mar 2024 23:27:00 +0530 Subject: [PATCH 35/93] test(UI): navbar announcements --- cypress/integration/toolbar.js | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 cypress/integration/toolbar.js diff --git a/cypress/integration/toolbar.js b/cypress/integration/toolbar.js new file mode 100644 index 0000000000..2ce5a2fd69 --- /dev/null +++ b/cypress/integration/toolbar.js @@ -0,0 +1,40 @@ +context("Toolbar", () => { + before(() => { + cy.login(); + }); + it("Checks the functionality for announcements added through Navbar Settings", () => { + // Navigate to the Navbar Settings DocType + cy.visit("/app/navbar-settings/"); + + // Set an initial value for the announcement + cy.fill_field("announcement_widget", "Site Maintenance: 3-4 PM", "Text Editor") + .as("announcement_widget") + .wait(300) + .save(); + + // Check if the announcement widget appears + cy.reload(); + cy.get(".announcement-widget").should("be.visible"); + cy.get(".announcement-widget div.container").should("contain", "Site Maintenance: 3-4 PM"); + + // Click on the close button to dismiss the announcement + cy.get(".announcement-widget div.close-message").click(); + + // Check if the widget is permanently dismissed + cy.reload(); + cy.get(".announcement-widget").should("not.exist"); + + // Set a new announcement from Navbar Settings + cy.get("@announcement_widget").clear({ force: true }); + cy.fill_field("announcement_widget", "Site Maintenance: 4-5 PM", "Text Editor") + .wait(300) + .save(); + + // Check if the new announcement appears + cy.reload(); + cy.get(".announcement-widget").should("be.visible"); + cy.get(".announcement-widget div.container").should("contain", "Site Maintenance: 4-5 PM"); + + cy.get("@announcement_widget").clear({ force: true }).wait(300).save(); + }); +}); From f2d343f2c3df391a4033c0d6cc4b33699860ca15 Mon Sep 17 00:00:00 2001 From: Gursheen Anand Date: Wed, 27 Mar 2024 00:21:55 +0530 Subject: [PATCH 36/93] Revert "test(UI): navbar announcements" This reverts commit f31dc47eebd89e64b68fd8b8652329e99e3eb6ba. --- cypress/integration/toolbar.js | 40 ---------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 cypress/integration/toolbar.js diff --git a/cypress/integration/toolbar.js b/cypress/integration/toolbar.js deleted file mode 100644 index 2ce5a2fd69..0000000000 --- a/cypress/integration/toolbar.js +++ /dev/null @@ -1,40 +0,0 @@ -context("Toolbar", () => { - before(() => { - cy.login(); - }); - it("Checks the functionality for announcements added through Navbar Settings", () => { - // Navigate to the Navbar Settings DocType - cy.visit("/app/navbar-settings/"); - - // Set an initial value for the announcement - cy.fill_field("announcement_widget", "Site Maintenance: 3-4 PM", "Text Editor") - .as("announcement_widget") - .wait(300) - .save(); - - // Check if the announcement widget appears - cy.reload(); - cy.get(".announcement-widget").should("be.visible"); - cy.get(".announcement-widget div.container").should("contain", "Site Maintenance: 3-4 PM"); - - // Click on the close button to dismiss the announcement - cy.get(".announcement-widget div.close-message").click(); - - // Check if the widget is permanently dismissed - cy.reload(); - cy.get(".announcement-widget").should("not.exist"); - - // Set a new announcement from Navbar Settings - cy.get("@announcement_widget").clear({ force: true }); - cy.fill_field("announcement_widget", "Site Maintenance: 4-5 PM", "Text Editor") - .wait(300) - .save(); - - // Check if the new announcement appears - cy.reload(); - cy.get(".announcement-widget").should("be.visible"); - cy.get(".announcement-widget div.container").should("contain", "Site Maintenance: 4-5 PM"); - - cy.get("@announcement_widget").clear({ force: true }).wait(300).save(); - }); -}); From 2c0498cbdda1bec2d31f38539704f5862dd7fe50 Mon Sep 17 00:00:00 2001 From: Gursheen Anand Date: Fri, 29 Mar 2024 16:23:23 +0530 Subject: [PATCH 37/93] fix: use boot to store announcement --- .../navbar_settings/navbar_settings.js | 6 +---- .../public/js/frappe/ui/toolbar/navbar.html | 4 +-- frappe/public/js/frappe/ui/toolbar/toolbar.js | 25 ++++++++++--------- frappe/sessions.py | 1 + 4 files changed, 17 insertions(+), 19 deletions(-) diff --git a/frappe/core/doctype/navbar_settings/navbar_settings.js b/frappe/core/doctype/navbar_settings/navbar_settings.js index acdcdf8ac7..ed7e331986 100644 --- a/frappe/core/doctype/navbar_settings/navbar_settings.js +++ b/frappe/core/doctype/navbar_settings/navbar_settings.js @@ -1,8 +1,4 @@ // Copyright (c) 2020, Frappe Technologies and contributors // For license information, please see license.txt -frappe.ui.form.on("Navbar Settings", { - after_save: function (frm) { - frappe.ui.toolbar.reset_announcement_widget(); - }, -}); +frappe.ui.form.on("Navbar Settings", {}); diff --git a/frappe/public/js/frappe/ui/toolbar/navbar.html b/frappe/public/js/frappe/ui/toolbar/navbar.html index f17203c08b..db697c5c7f 100644 --- a/frappe/public/js/frappe/ui/toolbar/navbar.html +++ b/frappe/public/js/frappe/ui/toolbar/navbar.html @@ -139,10 +139,10 @@
- {% if localStorage.getItem("show_announcement_widget") == 'true' && strip_html(localStorage.getItem("announcement_widget")) != '' %} + {% if !localStorage.getItem("dismissed_announcement_widget") && strip_html(navbar_settings.announcement_widget) != '' %}
- {{ localStorage.getItem("announcement_widget") }} + {{ navbar_settings.announcement_widget }}
{{ frappe.utils.icon("close") }}
diff --git a/frappe/public/js/frappe/ui/toolbar/toolbar.js b/frappe/public/js/frappe/ui/toolbar/toolbar.js index 62bcde0f43..ca7da66e72 100644 --- a/frappe/public/js/frappe/ui/toolbar/toolbar.js +++ b/frappe/public/js/frappe/ui/toolbar/toolbar.js @@ -6,7 +6,6 @@ frappe.provide("frappe.search"); frappe.ui.toolbar.Toolbar = class { constructor() { - frappe.ui.toolbar.reset_announcement_widget(); $("header").replaceWith( frappe.render_template("navbar", { avatar: frappe.avatar(frappe.session.user, "avatar-medium"), @@ -59,13 +58,24 @@ frappe.ui.toolbar.Toolbar = class { } setup_announcement_widget() { - if (localStorage.getItem("show_announcement_widget") == "true") { + let current_announcement = frappe.boot.navbar_settings.announcement_widget; + + if (!current_announcement) return; + + // If an unseen announcement is added, overlook dismiss flag + if (current_announcement != localStorage.getItem("announcement_widget")) { + localStorage.removeItem("dismissed_announcement_widget"); + localStorage.setItem("announcement_widget", current_announcement); + } + + // When an announcement is closed, add dismiss flag + if (!localStorage.getItem("dismissed_announcement_widget")) { let announcement_widget = $(".announcement-widget"); let close_message = announcement_widget.find(".close-message"); close_message.on( "click", () => - localStorage.setItem("show_announcement_widget", false) || + localStorage.setItem("dismissed_announcement_widget", true) || announcement_widget.addClass("hidden") ); } @@ -245,15 +255,6 @@ frappe.ui.toolbar.clear_cache = frappe.utils.throttle(function () { }); }, 10000); -frappe.ui.toolbar.reset_announcement_widget = function () { - frappe.db.get_single_value("Navbar Settings", "announcement_widget").then((value) => { - if (value != localStorage.getItem("announcement_widget")) { - localStorage.setItem("show_announcement_widget", true); - localStorage.setItem("announcement_widget", value); - } - }); -}; - frappe.ui.toolbar.show_about = function () { try { frappe.ui.misc.about(); diff --git a/frappe/sessions.py b/frappe/sessions.py index 8781e7448e..9ed4be7004 100644 --- a/frappe/sessions.py +++ b/frappe/sessions.py @@ -167,6 +167,7 @@ def get(): bootinfo["desk_theme"] = frappe.db.get_value("User", frappe.session.user, "desk_theme") or "Light" bootinfo["user"]["impersonated_by"] = frappe.session.data.get("impersonated_by") + bootinfo["navbar_settings"] = frappe.get_cached_doc("Navbar Settings") return bootinfo From 31c6df248d35ad75d676803f0fc432c599e1c865 Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Tue, 2 Apr 2024 16:59:02 +0530 Subject: [PATCH 38/93] fix(grid): don't crash if row doesn't exist Signed-off-by: Akhil Narang --- frappe/public/js/frappe/form/grid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js index e3cd854aaf..005e607133 100644 --- a/frappe/public/js/frappe/form/grid.js +++ b/frappe/public/js/frappe/form/grid.js @@ -236,7 +236,7 @@ export default class Grid { this.df.data = this.get_data(); this.df.data = this.df.data.filter((row) => row.idx != doc.idx); } - this.grid_rows_by_docname[doc.name].remove(); + this.grid_rows_by_docname[doc.name]?.remove(); dirty = true; }); tasks.push(() => frappe.timeout(0.1)); From f5e4a59ff94391cdc767f1037b46835a2f912300 Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Tue, 2 Apr 2024 17:16:14 +0200 Subject: [PATCH 39/93] fix: product name should not be translatable --- frappe/public/js/frappe/list/list_sidebar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/list/list_sidebar.js b/frappe/public/js/frappe/list/list_sidebar.js index 9a79d37cbd..b6e818841f 100644 --- a/frappe/public/js/frappe/list/list_sidebar.js +++ b/frappe/public/js/frappe/list/list_sidebar.js @@ -272,7 +272,7 @@ frappe.views.ListSidebar = class ListSidebar { const message = __("Get more insights with"); const link = "https://frappe.io/s/insights"; - const cta = __("Frappe Insights"); + const cta = "Frappe Insights"; this.insights_banner = $(`
From 1dbc1aafa4c5b3ec7e33f9b482fecc7a5b84a35c Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Tue, 2 Apr 2024 22:22:05 +0200 Subject: [PATCH 40/93] style: format with ruff --- frappe/www/attribution.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/www/attribution.py b/frappe/www/attribution.py index 971d6d7494..cf7e97470f 100644 --- a/frappe/www/attribution.py +++ b/frappe/www/attribution.py @@ -1,8 +1,9 @@ import json import re -import tomllib from pathlib import Path +import tomllib + import frappe from frappe import _ From 61dfbe2f9fb893b06064bf573c8e986dc5390898 Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Wed, 3 Apr 2024 12:44:19 +0530 Subject: [PATCH 41/93] fix(dashboard_chart): use dict.get() to avoid a KeyError Signed-off-by: Akhil Narang --- frappe/desk/doctype/dashboard_chart/dashboard_chart.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py index f6badeac44..af18fbd6fe 100644 --- a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py +++ b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py @@ -260,7 +260,7 @@ def get_heatmap_chart_config(chart, filters, heatmap_year): } -def get_group_by_chart_config(chart, filters): +def get_group_by_chart_config(chart, filters) -> dict | None: aggregate_function = get_aggregate_function(chart.group_by_type) value_field = chart.aggregate_function_based_on or "1" group_by_field = chart.group_by_based_on @@ -281,11 +281,10 @@ def get_group_by_chart_config(chart, filters): if data: return { - "labels": [item["name"] if item["name"] else "Not Specified" for item in data], + "labels": [item.get("name", "Not Specified") for item in data], "datasets": [{"name": chart.name, "values": [item["count"] for item in data]}], } - else: - return None + return None def get_aggregate_function(chart_type): From c2d8ee2bbb067a1ed580f14e29663b43e7264e04 Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Wed, 3 Apr 2024 13:58:23 +0530 Subject: [PATCH 42/93] fix: ensure we don't try to add int and NoneType Signed-off-by: Akhil Narang --- frappe/desk/doctype/dashboard_chart/dashboard_chart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py index af18fbd6fe..a425da5980 100644 --- a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py +++ b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py @@ -303,8 +303,8 @@ def get_result(data, timegrain, from_date, to_date, chart_type): for d in result: count = 0 while data_index < len(data) and getdate(data[data_index][0]) <= d[0]: - d[1] += data[data_index][1] - count += data[data_index][2] + d[1] += cint(data[data_index][1]) + count += cint(data[data_index][2]) data_index += 1 if chart_type == "Average" and count != 0: d[1] = d[1] / count From 51a87ae33b99de8c2c7de97962698fdb8a74cdab Mon Sep 17 00:00:00 2001 From: "Nihantra C. Patel" <141945075+Nihantra-Patel@users.noreply.github.com> Date: Thu, 4 Apr 2024 12:26:50 +0530 Subject: [PATCH 43/93] fix: translation of dashboard chart and number card label --- frappe/public/js/frappe/widgets/base_widget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/widgets/base_widget.js b/frappe/public/js/frappe/widgets/base_widget.js index e160a8f080..4ec227522f 100644 --- a/frappe/public/js/frappe/widgets/base_widget.js +++ b/frappe/public/js/frappe/widgets/base_widget.js @@ -98,7 +98,7 @@ export default class Widget { let base = this.title || this.label || this.name; let title = max_chars ? frappe.ellipsis(base, max_chars) : base; - this.title_field[0].innerHTML = `${title}`; + this.title_field[0].innerHTML = `${__(title)}`; if (max_chars) { this.title_field[0].setAttribute("title", this.title || this.label); } From b9ed9a95aead31d612c0dfe87a1d0ea27e53ecdf Mon Sep 17 00:00:00 2001 From: "Nihantra C. Patel" <141945075+Nihantra-Patel@users.noreply.github.com> Date: Thu, 4 Apr 2024 12:35:14 +0530 Subject: [PATCH 44/93] fix: translation of dashboard chart and number card label prettier --- frappe/public/js/frappe/widgets/base_widget.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/widgets/base_widget.js b/frappe/public/js/frappe/widgets/base_widget.js index 4ec227522f..4b460abab1 100644 --- a/frappe/public/js/frappe/widgets/base_widget.js +++ b/frappe/public/js/frappe/widgets/base_widget.js @@ -98,7 +98,9 @@ export default class Widget { let base = this.title || this.label || this.name; let title = max_chars ? frappe.ellipsis(base, max_chars) : base; - this.title_field[0].innerHTML = `${__(title)}`; + this.title_field[0].innerHTML = `${__( + title + )}`; if (max_chars) { this.title_field[0].setAttribute("title", this.title || this.label); } From 6a6193a26bd69d73bbe3ba599d3e14cd412c238d Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 4 Apr 2024 13:02:08 +0530 Subject: [PATCH 45/93] fix: Column 'creation' in order clause was ambiguous --- frappe/contacts/doctype/address/address.py | 2 +- frappe/contacts/doctype/contact/contact.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/contacts/doctype/address/address.py b/frappe/contacts/doctype/address/address.py index ca07ad8549..b11ac5685e 100644 --- a/frappe/contacts/doctype/address/address.py +++ b/frappe/contacts/doctype/address/address.py @@ -358,7 +358,7 @@ def get_address_display_list(doctype: str, name: str) -> list[dict]: ["Dynamic Link", "parenttype", "=", "Address"], ], fields=["*"], - order_by="is_primary_address DESC, creation ASC", + order_by="is_primary_address DESC, `tabAddress`.creation ASC", ) for a in address_list: a["display"] = get_address_display(a) diff --git a/frappe/contacts/doctype/contact/contact.py b/frappe/contacts/doctype/contact/contact.py index a5b88f2fda..667b3acb77 100644 --- a/frappe/contacts/doctype/contact/contact.py +++ b/frappe/contacts/doctype/contact/contact.py @@ -386,7 +386,7 @@ def get_contact_display_list(doctype: str, name: str) -> list[dict]: ["Dynamic Link", "parenttype", "=", "Contact"], ], fields=["*"], - order_by="is_primary_contact DESC, creation ASC", + order_by="is_primary_contact DESC, `tabContact`.creation ASC", ) for contact in contact_list: From 1a1cdf21bf1c825dbb6d49da8458b8ef3fb0fbde Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Thu, 4 Apr 2024 11:50:33 +0200 Subject: [PATCH 46/93] fix: exclude some untranslatable select options --- frappe/gettext/extractors/doctype.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/frappe/gettext/extractors/doctype.py b/frappe/gettext/extractors/doctype.py index 19242e7ac6..5353cf8af4 100644 --- a/frappe/gettext/extractors/doctype.py +++ b/frappe/gettext/extractors/doctype.py @@ -1,5 +1,13 @@ import json +EXCLUDE_SELECT_OPTIONS = [ + "naming_series", + "number_format", + "float_precision", + "currency_precision", + "minimum_password_score", +] + def extract(fileobj, *args, **kwargs): """ @@ -26,13 +34,14 @@ def extract(fileobj, *args, **kwargs): for field in fields: fieldtype = field.get("fieldtype") + fieldname = field.get("fieldname") label = field.get("label") if label: messages.append((label, f"Label of a {fieldtype} field in DocType '{doctype}'")) _label = label else: - _label = field.get("fieldname") + _label = fieldname if description := field.get("description"): messages.append( @@ -41,6 +50,9 @@ def extract(fileobj, *args, **kwargs): if message := field.get("options"): if fieldtype == "Select": + if fieldname in EXCLUDE_SELECT_OPTIONS: + continue + select_options = [option for option in message.split("\n") if option and not option.isdigit()] if select_options and "icon" in select_options[0]: From 75b0142c1ceda353d36326a495a89441879c9532 Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Thu, 4 Apr 2024 12:46:09 +0200 Subject: [PATCH 47/93] fix: don't show bulk actions for doctype with workflow --- frappe/public/js/frappe/list/list_view.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index 1c8ebefe3b..651148b87a 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -2038,7 +2038,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { }; // bulk edit - if (has_editable_fields(doctype)) { + if (has_editable_fields(doctype) && !frappe.model.has_workflow(doctype)) { actions_menu_items.push(bulk_edit()); } @@ -2073,7 +2073,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { } // bulk delete - if (frappe.model.can_delete(doctype)) { + if (frappe.model.can_delete(doctype) && !frappe.model.has_workflow(doctype)) { actions_menu_items.push(bulk_delete()); } From b696e2335472794a84ed38fa736d92aaf3d1122f Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Thu, 4 Apr 2024 15:14:26 +0200 Subject: [PATCH 48/93] test: cypress shouldn't expect disabled actions --- cypress/integration/list_view.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cypress/integration/list_view.js b/cypress/integration/list_view.js index 0618afb9ec..16e0b13d5b 100644 --- a/cypress/integration/list_view.js +++ b/cypress/integration/list_view.js @@ -22,21 +22,19 @@ context("List View", () => { const actions = [ "Approve", "Reject", - "Edit", "Export", "Assign To", "Clear Assignment", "Apply Assignment Rule", "Add Tags", "Print", - "Delete", ]; cy.go_to_list("ToDo"); cy.clear_filters(); cy.get(".list-header-subject > .list-subject > .list-check-all").click(); cy.findByRole("button", { name: "Actions" }).click(); cy.get(".dropdown-menu li:visible .dropdown-item") - .should("have.length", 10) + .should("have.length", 8) .each((el, index) => { cy.wrap(el).contains(actions[index]); }) From 99952880cc4aa8b9519a33f74517b52dc5ea0b8f Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 5 Apr 2024 18:43:55 +0530 Subject: [PATCH 49/93] fix!: Don't let users with write access to UP bypass UP IDK why we truly need this, except maybe debugging sometimes. This just causes confusion and people keep reporting this as security issue. --- frappe/permissions.py | 5 ----- frappe/tests/test_permissions.py | 7 ------- 2 files changed, 12 deletions(-) diff --git a/frappe/permissions.py b/frappe/permissions.py index 428b58a847..d0045ff7ab 100644 --- a/frappe/permissions.py +++ b/frappe/permissions.py @@ -332,11 +332,6 @@ def has_user_permission(doc, user=None, debug=False): debug and _debug_log("User is not affected by any user permissions") return True - # user can create own role permissions, so nothing applies - if get_role_permissions("User Permission", user=user).get("write"): - debug and _debug_log("User permission bypassed because user can modify user permissions.") - return True - # don't apply strict user permissions for single doctypes since they contain empty link fields apply_strict_user_permissions = ( False if doc.meta.issingle else frappe.get_system_settings("apply_strict_user_permissions") diff --git a/frappe/tests/test_permissions.py b/frappe/tests/test_permissions.py index 2258e2e817..e63fb59831 100644 --- a/frappe/tests/test_permissions.py +++ b/frappe/tests/test_permissions.py @@ -421,13 +421,6 @@ class TestPermissions(FrappeTestCase): clear_user_permissions_for_doctype("Salutation") clear_user_permissions_for_doctype("Contact") - def test_user_permissions_not_applied_if_user_can_edit_user_permissions(self): - add_user_permission("Blogger", "_Test Blogger 1", "test1@example.com") - - # test1@example.com has rights to create user permissions - # so it should not matter if explicit user permissions are not set - self.assertTrue(frappe.get_doc("Blogger", "_Test Blogger").has_permission("read")) - def test_user_permission_is_not_applied_if_user_roles_does_not_have_permission(self): add_user_permission("Blog Post", "-test-blog-post-1", "test3@example.com") frappe.set_user("test3@example.com") From 30f00fd5f3ffba649a1f959ec7a8a75fb89b1f74 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 29 Mar 2024 21:59:35 +0530 Subject: [PATCH 50/93] fix: invlaid integer validations for biging closes https://github.com/frappe/frappe/issues/25566 --- frappe/core/doctype/doctype/test_doctype.py | 3 ++- frappe/model/base_document.py | 3 +++ frappe/tests/test_db_update.py | 10 ++++++++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/frappe/core/doctype/doctype/test_doctype.py b/frappe/core/doctype/doctype/test_doctype.py index 464996d3e9..8a481eb11f 100644 --- a/frappe/core/doctype/doctype/test_doctype.py +++ b/frappe/core/doctype/doctype/test_doctype.py @@ -10,6 +10,7 @@ import frappe from frappe.cache_manager import clear_doctype_cache from frappe.core.doctype.doctype.doctype import ( CannotIndexedError, + DocType, DoctypeLinkError, HiddenAndMandatoryWithoutDefaultError, IllegalMandatoryError, @@ -782,7 +783,7 @@ def new_doctype( custom: bool = True, default: str | None = None, **kwargs, -): +) -> "DocType": if not name: # Test prefix is required to avoid coverage name = "Test " + "".join(random.sample(string.ascii_lowercase, 10)) diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 3a7520fd1c..dbda0133d7 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -983,6 +983,9 @@ class BaseDocument: self.throw_length_exceeded_error(df, max_length, value) elif column_type in ("int", "bigint", "smallint"): + if cint(df.get("length")) > 11: # We implicitl switch to bigint for >11 + column_type = "bigint" + max_length = max_positive_value[column_type] if abs(cint(value)) > max_length: diff --git a/frappe/tests/test_db_update.py b/frappe/tests/test_db_update.py index 68a22e0de2..a6f6a095dd 100644 --- a/frappe/tests/test_db_update.py +++ b/frappe/tests/test_db_update.py @@ -99,6 +99,16 @@ class TestDBUpdate(FrappeTestCase): len(indexes), 1, msg=f"There should be 1 index on {doctype}.{field}, found {indexes}" ) + def test_bigint_conversion(self): + doctype = new_doctype(fields=[{"fieldname": "int_field", "fieldtype": "Int"}]).insert() + + with self.assertRaises(frappe.CharacterLengthExceededError): + frappe.get_doc(doctype=doctype.name, int_field=2**62 - 1).insert() + + doctype.fields[0].length = 14 + doctype.save() + frappe.get_doc(doctype=doctype.name, int_field=2**62 - 1).insert() + @run_only_if(db_type_is.MARIADB) def test_unique_index_on_install(self): """Only one unique index should be added""" From b493bfe7c22dd64dbe805a986b77f2fe9f32b6c9 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 29 Mar 2024 22:01:27 +0530 Subject: [PATCH 51/93] fix(DX): annotate chainable methods with `Self` return --- frappe/model/document.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/frappe/model/document.py b/frappe/model/document.py index c0a6047f98..f202cfe4ce 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -26,6 +26,8 @@ from frappe.utils.data import get_absolute_url, get_datetime, get_timedelta, get from frappe.utils.global_search import update_global_search if TYPE_CHECKING: + from typing_extensions import Self + from frappe.core.doctype.docfield.docfield import DocField @@ -144,7 +146,7 @@ class Document(BaseDocument): def is_locked(self): return file_lock.lock_exists(self.get_signature()) - def load_from_db(self): + def load_from_db(self) -> "Self": """Load document and children from database and create properties from fields""" self.flags.ignore_children = True @@ -204,7 +206,7 @@ class Document(BaseDocument): return self - def reload(self): + def reload(self) -> "Self": """Reload document from database""" return self.load_from_db() @@ -248,7 +250,7 @@ class Document(BaseDocument): ignore_mandatory=None, set_name=None, set_child_names=True, - ) -> "Document": + ) -> "Self": """Insert the document in the database (as a new document). This will check for user permissions and execute `before_insert`, `validate`, `on_update`, `after_insert` methods if they are written. @@ -333,11 +335,11 @@ class Document(BaseDocument): if self.creation and self.is_locked: raise frappe.DocumentLockedError - def save(self, *args, **kwargs): + def save(self, *args, **kwargs) -> "Self": """Wrapper for _save""" return self._save(*args, **kwargs) - def _save(self, ignore_permissions=None, ignore_version=None) -> "Document": + def _save(self, ignore_permissions=None, ignore_version=None) -> "Self": """Save the current document in the database in the **DocType**'s table or `tabSingles` (for single types). From eef9c2c8cc3a10676c5179a2f3648da8310ada81 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Sat, 6 Apr 2024 10:45:50 +0530 Subject: [PATCH 52/93] refactor!: Better Integer handling - Remove length: it makes no difference, it's for ZEROFILL only. - Switch to tinyint for checkboxes in mysql and smallint on postgres. - Use `int` instead of `bigint` by default. --- frappe/database/mariadb/database.py | 8 +- frappe/database/mariadb/framework_mariadb.sql | 176 +++++++++--------- frappe/database/mariadb/schema.py | 4 +- frappe/database/postgres/database.py | 2 +- frappe/tests/test_db_update.py | 4 +- 5 files changed, 97 insertions(+), 97 deletions(-) diff --git a/frappe/database/mariadb/database.py b/frappe/database/mariadb/database.py index b7deed266e..1fbf335180 100644 --- a/frappe/database/mariadb/database.py +++ b/frappe/database/mariadb/database.py @@ -161,11 +161,11 @@ class MariaDBDatabase(MariaDBConnectionUtil, MariaDBExceptionUtil, Database): self.db_type = "mariadb" self.type_map = { "Currency": ("decimal", "21,9"), - "Int": ("int", "11"), + "Int": ("int", None), "Long Int": ("bigint", "20"), "Float": ("decimal", "21,9"), "Percent": ("decimal", "21,9"), - "Check": ("int", "1"), + "Check": ("tinyint", None), "Small Text": ("text", ""), "Long Text": ("longtext", ""), "Code": ("longtext", ""), @@ -288,7 +288,7 @@ class MariaDBDatabase(MariaDBConnectionUtil, MariaDBExceptionUtil, Database): `name` VARCHAR(255) NOT NULL, `fieldname` VARCHAR(140) NOT NULL, `password` TEXT NOT NULL, - `encrypted` INT(1) NOT NULL DEFAULT 0, + `encrypted` TINYINT NOT NULL DEFAULT 0, PRIMARY KEY (`doctype`, `name`, `fieldname`) ) ENGINE=InnoDB ROW_FORMAT=DYNAMIC CHARACTER SET=utf8mb4 COLLATE=utf8mb4_unicode_ci""" ) @@ -303,7 +303,7 @@ class MariaDBDatabase(MariaDBConnectionUtil, MariaDBExceptionUtil, Database): content text, fulltext(content), route varchar({self.VARCHAR_LEN}), - published int(1) not null default 0, + published TINYINT not null default 0, unique `doctype_name` (doctype, name)) COLLATE=utf8mb4_unicode_ci ENGINE=MyISAM diff --git a/frappe/database/mariadb/framework_mariadb.sql b/frappe/database/mariadb/framework_mariadb.sql index d9f5c9edc5..002570350f 100644 --- a/frappe/database/mariadb/framework_mariadb.sql +++ b/frappe/database/mariadb/framework_mariadb.sql @@ -13,61 +13,61 @@ CREATE TABLE `tabDocField` ( `modified` datetime(6) DEFAULT NULL, `modified_by` varchar(255) DEFAULT NULL, `owner` varchar(255) DEFAULT NULL, - `docstatus` int(1) NOT NULL DEFAULT 0, + `docstatus` tinyint NOT NULL DEFAULT 0, `parent` varchar(255) DEFAULT NULL, `parentfield` varchar(255) DEFAULT NULL, `parenttype` varchar(255) DEFAULT NULL, - `idx` int(8) NOT NULL DEFAULT 0, + `idx` int NOT NULL DEFAULT 0, `fieldname` varchar(255) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, `oldfieldname` varchar(255) DEFAULT NULL, `fieldtype` varchar(255) DEFAULT NULL, `oldfieldtype` varchar(255) DEFAULT NULL, `options` text, - `search_index` int(1) NOT NULL DEFAULT 0, - `show_dashboard` int(1) NOT NULL DEFAULT 0, - `hidden` int(1) NOT NULL DEFAULT 0, - `set_only_once` int(1) NOT NULL DEFAULT 0, - `allow_in_quick_entry` int(1) NOT NULL DEFAULT 0, - `print_hide` int(1) NOT NULL DEFAULT 0, - `report_hide` int(1) NOT NULL DEFAULT 0, - `reqd` int(1) NOT NULL DEFAULT 0, - `bold` int(1) NOT NULL DEFAULT 0, - `in_global_search` int(1) NOT NULL DEFAULT 0, - `collapsible` int(1) NOT NULL DEFAULT 0, - `unique` int(1) NOT NULL DEFAULT 0, - `no_copy` int(1) NOT NULL DEFAULT 0, - `allow_on_submit` int(1) NOT NULL DEFAULT 0, - `show_preview_popup` int(1) NOT NULL DEFAULT 0, + `search_index` tinyint NOT NULL DEFAULT 0, + `show_dashboard` tinyint NOT NULL DEFAULT 0, + `hidden` tinyint NOT NULL DEFAULT 0, + `set_only_once` tinyint NOT NULL DEFAULT 0, + `allow_in_quick_entry` tinyint NOT NULL DEFAULT 0, + `print_hide` tinyint NOT NULL DEFAULT 0, + `report_hide` tinyint NOT NULL DEFAULT 0, + `reqd` tinyint NOT NULL DEFAULT 0, + `bold` tinyint NOT NULL DEFAULT 0, + `in_global_search` tinyint NOT NULL DEFAULT 0, + `collapsible` tinyint NOT NULL DEFAULT 0, + `unique` tinyint NOT NULL DEFAULT 0, + `no_copy` tinyint NOT NULL DEFAULT 0, + `allow_on_submit` tinyint NOT NULL DEFAULT 0, + `show_preview_popup` tinyint NOT NULL DEFAULT 0, `trigger` varchar(255) DEFAULT NULL, `collapsible_depends_on` text, `mandatory_depends_on` text, `read_only_depends_on` text, `depends_on` text, - `permlevel` int(11) NOT NULL DEFAULT 0, - `ignore_user_permissions` int(1) NOT NULL DEFAULT 0, + `permlevel` int NOT NULL DEFAULT 0, + `ignore_user_permissions` tinyint NOT NULL DEFAULT 0, `width` varchar(255) DEFAULT NULL, `print_width` varchar(255) DEFAULT NULL, - `columns` int(11) NOT NULL DEFAULT 0, + `columns` int NOT NULL DEFAULT 0, `default` text, `description` text, - `in_list_view` int(1) NOT NULL DEFAULT 0, - `fetch_if_empty` int(1) NOT NULL DEFAULT 0, - `in_filter` int(1) NOT NULL DEFAULT 0, - `remember_last_selected_value` int(1) NOT NULL DEFAULT 0, - `ignore_xss_filter` int(1) NOT NULL DEFAULT 0, - `print_hide_if_no_value` int(1) NOT NULL DEFAULT 0, - `allow_bulk_edit` int(1) NOT NULL DEFAULT 0, - `in_standard_filter` int(1) NOT NULL DEFAULT 0, - `in_preview` int(1) NOT NULL DEFAULT 0, - `read_only` int(1) NOT NULL DEFAULT 0, + `in_list_view` tinyint NOT NULL DEFAULT 0, + `fetch_if_empty` tinyint NOT NULL DEFAULT 0, + `in_filter` tinyint NOT NULL DEFAULT 0, + `remember_last_selected_value` tinyint NOT NULL DEFAULT 0, + `ignore_xss_filter` tinyint NOT NULL DEFAULT 0, + `print_hide_if_no_value` tinyint NOT NULL DEFAULT 0, + `allow_bulk_edit` tinyint NOT NULL DEFAULT 0, + `in_standard_filter` tinyint NOT NULL DEFAULT 0, + `in_preview` tinyint NOT NULL DEFAULT 0, + `read_only` tinyint NOT NULL DEFAULT 0, `precision` varchar(255) DEFAULT NULL, `max_height` varchar(10) DEFAULT NULL, - `length` int(11) NOT NULL DEFAULT 0, - `translatable` int(1) NOT NULL DEFAULT 0, - `hide_border` int(1) NOT NULL DEFAULT 0, - `hide_days` int(1) NOT NULL DEFAULT 0, - `hide_seconds` int(1) NOT NULL DEFAULT 0, + `length` int NOT NULL DEFAULT 0, + `translatable` tinyint NOT NULL DEFAULT 0, + `hide_border` tinyint NOT NULL DEFAULT 0, + `hide_days` tinyint NOT NULL DEFAULT 0, + `hide_seconds` tinyint NOT NULL DEFAULT 0, PRIMARY KEY (`name`), KEY `parent` (`parent`), KEY `label` (`label`), @@ -87,27 +87,27 @@ CREATE TABLE `tabDocPerm` ( `modified` datetime(6) DEFAULT NULL, `modified_by` varchar(255) DEFAULT NULL, `owner` varchar(255) DEFAULT NULL, - `docstatus` int(1) NOT NULL DEFAULT 0, + `docstatus` tinyint NOT NULL DEFAULT 0, `parent` varchar(255) DEFAULT NULL, `parentfield` varchar(255) DEFAULT NULL, `parenttype` varchar(255) DEFAULT NULL, - `idx` int(8) NOT NULL DEFAULT 0, - `permlevel` int(11) DEFAULT '0', + `idx` int NOT NULL DEFAULT 0, + `permlevel` int DEFAULT '0', `role` varchar(255) DEFAULT NULL, `match` varchar(255) DEFAULT NULL, - `read` int(1) NOT NULL DEFAULT 1, - `write` int(1) NOT NULL DEFAULT 1, - `create` int(1) NOT NULL DEFAULT 1, - `submit` int(1) NOT NULL DEFAULT 0, - `cancel` int(1) NOT NULL DEFAULT 0, - `delete` int(1) NOT NULL DEFAULT 1, - `amend` int(1) NOT NULL DEFAULT 0, - `report` int(1) NOT NULL DEFAULT 1, - `export` int(1) NOT NULL DEFAULT 1, - `import` int(1) NOT NULL DEFAULT 0, - `share` int(1) NOT NULL DEFAULT 1, - `print` int(1) NOT NULL DEFAULT 1, - `email` int(1) NOT NULL DEFAULT 1, + `read` tinyint NOT NULL DEFAULT 1, + `write` tinyint NOT NULL DEFAULT 1, + `create` tinyint NOT NULL DEFAULT 1, + `submit` tinyint NOT NULL DEFAULT 0, + `cancel` tinyint NOT NULL DEFAULT 0, + `delete` tinyint NOT NULL DEFAULT 1, + `amend` tinyint NOT NULL DEFAULT 0, + `report` tinyint NOT NULL DEFAULT 1, + `export` tinyint NOT NULL DEFAULT 1, + `import` tinyint NOT NULL DEFAULT 0, + `share` tinyint NOT NULL DEFAULT 1, + `print` tinyint NOT NULL DEFAULT 1, + `email` tinyint NOT NULL DEFAULT 1, PRIMARY KEY (`name`), KEY `parent` (`parent`) ) ENGINE=InnoDB ROW_FORMAT=DYNAMIC CHARACTER SET=utf8mb4 COLLATE=utf8mb4_unicode_ci; @@ -123,11 +123,11 @@ CREATE TABLE `tabDocType Action` ( `modified` datetime(6) DEFAULT NULL, `modified_by` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `owner` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `docstatus` int(1) NOT NULL DEFAULT 0, + `docstatus` tinyint NOT NULL DEFAULT 0, `parent` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parentfield` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parenttype` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `idx` int(8) NOT NULL DEFAULT 0, + `idx` int NOT NULL DEFAULT 0, `label` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `group` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `action_type` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, @@ -147,11 +147,11 @@ CREATE TABLE `tabDocType Link` ( `modified` datetime(6) DEFAULT NULL, `modified_by` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `owner` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `docstatus` int(1) NOT NULL DEFAULT 0, + `docstatus` tinyint NOT NULL DEFAULT 0, `parent` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parentfield` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parenttype` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `idx` int(8) NOT NULL DEFAULT 0, + `idx` int NOT NULL DEFAULT 0, `group` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `link_doctype` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `link_fieldname` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, @@ -170,15 +170,15 @@ CREATE TABLE `tabDocType` ( `modified` datetime(6) DEFAULT NULL, `modified_by` varchar(255) DEFAULT NULL, `owner` varchar(255) DEFAULT NULL, - `docstatus` int(1) NOT NULL DEFAULT 0, - `idx` int(8) NOT NULL DEFAULT 0, + `docstatus` tinyint NOT NULL DEFAULT 0, + `idx` int NOT NULL DEFAULT 0, `search_fields` varchar(255) DEFAULT NULL, - `issingle` int(1) NOT NULL DEFAULT 0, - `is_virtual` int(1) NOT NULL DEFAULT 0, - `is_tree` int(1) NOT NULL DEFAULT 0, - `istable` int(1) NOT NULL DEFAULT 0, - `editable_grid` int(1) NOT NULL DEFAULT 1, - `track_changes` int(1) NOT NULL DEFAULT 0, + `issingle` tinyint NOT NULL DEFAULT 0, + `is_virtual` tinyint NOT NULL DEFAULT 0, + `is_tree` tinyint NOT NULL DEFAULT 0, + `istable` tinyint NOT NULL DEFAULT 0, + `editable_grid` tinyint NOT NULL DEFAULT 1, + `track_changes` tinyint NOT NULL DEFAULT 0, `module` varchar(255) DEFAULT NULL, `restrict_to_domain` varchar(255) DEFAULT NULL, `app` varchar(255) DEFAULT NULL, @@ -191,17 +191,17 @@ CREATE TABLE `tabDocType` ( `sort_order` varchar(255) DEFAULT NULL, `description` text, `colour` varchar(255) DEFAULT NULL, - `read_only` int(1) NOT NULL DEFAULT 0, - `in_create` int(1) NOT NULL DEFAULT 0, - `menu_index` int(11) DEFAULT NULL, + `read_only` tinyint NOT NULL DEFAULT 0, + `in_create` tinyint NOT NULL DEFAULT 0, + `menu_index` int DEFAULT NULL, `parent_node` varchar(255) DEFAULT NULL, `smallicon` varchar(255) DEFAULT NULL, - `allow_copy` int(1) NOT NULL DEFAULT 0, - `allow_rename` int(1) NOT NULL DEFAULT 0, - `allow_import` int(1) NOT NULL DEFAULT 0, - `hide_toolbar` int(1) NOT NULL DEFAULT 0, - `track_seen` int(1) NOT NULL DEFAULT 0, - `max_attachments` int(11) NOT NULL DEFAULT 0, + `allow_copy` tinyint NOT NULL DEFAULT 0, + `allow_rename` tinyint NOT NULL DEFAULT 0, + `allow_import` tinyint NOT NULL DEFAULT 0, + `hide_toolbar` tinyint NOT NULL DEFAULT 0, + `track_seen` tinyint NOT NULL DEFAULT 0, + `max_attachments` int NOT NULL DEFAULT 0, `print_outline` varchar(255) DEFAULT NULL, `document_type` varchar(255) DEFAULT NULL, `icon` varchar(255) DEFAULT NULL, @@ -211,22 +211,22 @@ CREATE TABLE `tabDocType` ( `_last_update` varchar(32) DEFAULT NULL, `engine` varchar(20) DEFAULT 'InnoDB', `default_print_format` varchar(255) DEFAULT NULL, - `is_submittable` int(1) NOT NULL DEFAULT 0, - `show_name_in_global_search` int(1) NOT NULL DEFAULT 0, + `is_submittable` tinyint NOT NULL DEFAULT 0, + `show_name_in_global_search` tinyint NOT NULL DEFAULT 0, `_user_tags` varchar(255) DEFAULT NULL, - `custom` int(1) NOT NULL DEFAULT 0, - `beta` int(1) NOT NULL DEFAULT 0, - `has_web_view` int(1) NOT NULL DEFAULT 0, - `allow_guest_to_view` int(1) NOT NULL DEFAULT 0, + `custom` tinyint NOT NULL DEFAULT 0, + `beta` tinyint NOT NULL DEFAULT 0, + `has_web_view` tinyint NOT NULL DEFAULT 0, + `allow_guest_to_view` tinyint NOT NULL DEFAULT 0, `route` varchar(255) DEFAULT NULL, `is_published_field` varchar(255) DEFAULT NULL, `website_search_field` varchar(255) DEFAULT NULL, - `email_append_to` int(1) NOT NULL DEFAULT 0, + `email_append_to` tinyint NOT NULL DEFAULT 0, `subject_field` varchar(255) DEFAULT NULL, `sender_field` varchar(255) DEFAULT NULL, - `show_title_field_in_link` int(1) NOT NULL DEFAULT 0, + `show_title_field_in_link` tinyint NOT NULL DEFAULT 0, `migration_hash` varchar(255) DEFAULT NULL, - `translated_doctype` int(1) NOT NULL DEFAULT 0, + `translated_doctype` tinyint NOT NULL DEFAULT 0, PRIMARY KEY (`name`) ) ENGINE=InnoDB ROW_FORMAT=DYNAMIC CHARACTER SET=utf8mb4 COLLATE=utf8mb4_unicode_ci; @@ -237,7 +237,7 @@ CREATE TABLE `tabDocType` ( DROP TABLE IF EXISTS `tabSeries`; CREATE TABLE `tabSeries` ( `name` varchar(100), - `current` int(10) NOT NULL DEFAULT 0, + `current` int NOT NULL DEFAULT 0, PRIMARY KEY(`name`) ) ENGINE=InnoDB ROW_FORMAT=DYNAMIC CHARACTER SET=utf8mb4 COLLATE=utf8mb4_unicode_ci; @@ -280,7 +280,7 @@ CREATE TABLE `__Auth` ( `name` VARCHAR(255) NOT NULL, `fieldname` VARCHAR(140) NOT NULL, `password` TEXT NOT NULL, - `encrypted` INT(1) NOT NULL DEFAULT 0, + `encrypted` tinyint NOT NULL DEFAULT 0, PRIMARY KEY (`doctype`, `name`, `fieldname`) ) ENGINE=InnoDB ROW_FORMAT=DYNAMIC CHARACTER SET=utf8mb4 COLLATE=utf8mb4_unicode_ci; @@ -295,16 +295,16 @@ CREATE TABLE `tabFile` ( `modified` datetime(6) DEFAULT NULL, `modified_by` varchar(255) DEFAULT NULL, `owner` varchar(255) DEFAULT NULL, - `docstatus` int(1) NOT NULL DEFAULT 0, + `docstatus` tinyint NOT NULL DEFAULT 0, `parent` varchar(255) DEFAULT NULL, `parentfield` varchar(255) DEFAULT NULL, `parenttype` varchar(255) DEFAULT NULL, - `idx` int(8) NOT NULL DEFAULT 0, + `idx` int NOT NULL DEFAULT 0, `file_name` varchar(255) DEFAULT NULL, `file_url` varchar(255) DEFAULT NULL, `module` varchar(255) DEFAULT NULL, `attached_to_name` varchar(255) DEFAULT NULL, - `file_size` int(11) NOT NULL DEFAULT 0, + `file_size` int NOT NULL DEFAULT 0, `attached_to_doctype` varchar(255) DEFAULT NULL, PRIMARY KEY (`name`), KEY `parent` (`parent`), @@ -323,11 +323,11 @@ CREATE TABLE `tabDefaultValue` ( `modified` datetime(6) DEFAULT NULL, `modified_by` varchar(255) DEFAULT NULL, `owner` varchar(255) DEFAULT NULL, - `docstatus` int(1) NOT NULL DEFAULT 0, + `docstatus` tinyint NOT NULL DEFAULT 0, `parent` varchar(255) DEFAULT NULL, `parentfield` varchar(255) DEFAULT NULL, `parenttype` varchar(255) DEFAULT NULL, - `idx` int(8) NOT NULL DEFAULT 0, + `idx` int NOT NULL DEFAULT 0, `defvalue` text, `defkey` varchar(255) DEFAULT NULL, PRIMARY KEY (`name`), diff --git a/frappe/database/mariadb/schema.py b/frappe/database/mariadb/schema.py index d1ec513026..fd5c5a103b 100644 --- a/frappe/database/mariadb/schema.py +++ b/frappe/database/mariadb/schema.py @@ -59,8 +59,8 @@ class MariaDBTable(DBTable): modified datetime(6), modified_by varchar({varchar_len}), owner varchar({varchar_len}), - docstatus int(1) not null default '0', - idx int(8) not null default '0', + docstatus tinyint not null default '0', + idx int not null default '0', {additional_definitions}) ENGINE={engine} ROW_FORMAT=DYNAMIC diff --git a/frappe/database/postgres/database.py b/frappe/database/postgres/database.py index aa64b74cb7..f5e94244d8 100644 --- a/frappe/database/postgres/database.py +++ b/frappe/database/postgres/database.py @@ -125,7 +125,7 @@ class PostgresDatabase(PostgresExceptionUtil, Database): self.db_type = "postgres" self.type_map = { "Currency": ("decimal", "21,9"), - "Int": ("bigint", None), + "Int": ("int", None), "Long Int": ("bigint", None), "Float": ("decimal", "21,9"), "Percent": ("decimal", "21,9"), diff --git a/frappe/tests/test_db_update.py b/frappe/tests/test_db_update.py index a6f6a095dd..b0ee59fba6 100644 --- a/frappe/tests/test_db_update.py +++ b/frappe/tests/test_db_update.py @@ -35,7 +35,7 @@ class TestDBUpdate(FrappeTestCase): ) default = field_def.default if field_def.default is not None else fallback_default - self.assertEqual(fieldtype, table_column.type) + self.assertIn(fieldtype, table_column.type, msg=f"Types not matching for {fieldname}") self.assertIn(cstr(table_column.default) or "NULL", [cstr(default), f"'{default}'"]) def test_index_and_unique_constraints(self): @@ -167,7 +167,7 @@ class TestDBUpdate(FrappeTestCase): def get_fieldtype_from_def(field_def): fieldtuple = frappe.db.type_map.get(field_def.fieldtype, ("", 0)) fieldtype = fieldtuple[0] - if fieldtype in ("varchar", "datetime", "int"): + if fieldtype in ("varchar", "datetime"): fieldtype += f"({field_def.length or fieldtuple[1]})" return fieldtype From 7252d1561f3a0d6deac69c35148d5bc5bb7df805 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Sat, 6 Apr 2024 18:07:17 +0530 Subject: [PATCH 53/93] fix: Don't assign returned values if row is deleted (#25806) --- frappe/public/js/frappe/form/form.js | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js index b17c84df3d..854d60d907 100644 --- a/frappe/public/js/frappe/form/form.js +++ b/frappe/public/js/frappe/form/form.js @@ -1730,17 +1730,19 @@ frappe.ui.form.Form = class FrappeForm { if (opts.child) { // update child doc opts.child = locals[opts.child.doctype][opts.child.name]; - - var std_field_list = ["doctype"] - .concat(frappe.model.std_fields_list) - .concat(frappe.model.child_table_field_list); - for (var key in r.message) { - if (std_field_list.indexOf(key) === -1) { - opts.child[key] = r.message[key]; + // if child row is deleted, don't update + if (opts.child) { + var std_field_list = ["doctype"] + .concat(frappe.model.std_fields_list) + .concat(frappe.model.child_table_field_list); + for (var key in r.message) { + if (std_field_list.indexOf(key) === -1) { + opts.child[key] = r.message[key]; + } } - } - me.fields_dict[opts.child.parentfield].refresh(); + me.fields_dict[opts.child.parentfield].refresh(); + } } else { // update parent doc me.set_value(r.message); From 310cedf749c030be9a6ad4d0dbbb95637de3ad56 Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Sat, 6 Apr 2024 18:14:18 +0530 Subject: [PATCH 54/93] fix(grid): ensure that `doc.name` is truthy before proceeding (#25800) Signed-off-by: Akhil Narang --- frappe/public/js/frappe/form/grid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js index 005e607133..72836ff8bc 100644 --- a/frappe/public/js/frappe/form/grid.js +++ b/frappe/public/js/frappe/form/grid.js @@ -795,7 +795,7 @@ export default class Grid { } set_value(fieldname, value, doc) { - if (this.display_status !== "None" && this.grid_rows_by_docname[doc.name]) { + if (this.display_status !== "None" && doc.name && this.grid_rows_by_docname[doc.name]) { this.grid_rows_by_docname[doc.name].refresh_field(fieldname, value); } } From 28860abbe6ffd881a96aeb88c43b63a85baae182 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Sat, 6 Apr 2024 18:15:27 +0530 Subject: [PATCH 55/93] fix: sync translations from crowdin (#25780) * fix: Spanish translations * fix: Turkish translations * fix: Spanish translations * fix: German translations * fix: Spanish translations * fix: Spanish translations * fix: German translations * fix: Turkish translations * fix: Bosnian translations * fix: Turkish translations * fix: Bosnian translations --- frappe/locale/bs.po | 39798 ++++++++++++++++++++++++++++++++++++++++++ frappe/locale/de.po | 98 +- frappe/locale/es.po | 1312 +- frappe/locale/tr.po | 13930 ++++++++------- 4 files changed, 48358 insertions(+), 6780 deletions(-) create mode 100644 frappe/locale/bs.po diff --git a/frappe/locale/bs.po b/frappe/locale/bs.po new file mode 100644 index 0000000000..1b0cb46351 --- /dev/null +++ b/frappe/locale/bs.po @@ -0,0 +1,39798 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: developers@frappe.io\n" +"POT-Creation-Date: 2024-03-24 09:33+0000\n" +"PO-Revision-Date: 2024-04-05 14:57\n" +"Last-Translator: developers@frappe.io\n" +"Language-Team: Bosnian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.13.1\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: bs\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: bs_BA\n" + +#: templates/emails/download_data.html:9 +msgid " to your browser" +msgstr " u vaš preglednik" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "!=" +msgstr "!=" + +#. Description of the 'Org History Heading' (Data) field in DocType 'About Us +#. Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "\"Company History\"" +msgstr "\"Historija kompanije\"" + +#: core/doctype/data_export/exporter.py:202 +msgid "\"Parent\" signifies the parent table in which this row must be added" +msgstr "\"Matični\" označava nadređenu tabelu u koju se ovaj red mora dodati" + +#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us +#. Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "\"Team Members\" or \"Management\"" +msgstr "\"Članovi tima\" ili \"Uprava\"" + +#: public/js/frappe/form/form.js:1063 +msgid "\"amended_from\" field must be present to do an amendment." +msgstr "Polje \"amended_from\" mora biti prisutno da bi se izvršila izmjena." + +#: utils/csvutils.py:221 +msgid "\"{0}\" is not a valid Google Sheets URL" +msgstr "\"{0}\" nije važeći Google Sheets URL" + +#. Option for the 'Number Format' (Select) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "# ###,##" +msgstr "# ###,##" + +#. Option for the 'Number Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "# ###,##" +msgstr "# ###,##" + +#. Option for the 'Number Format' (Select) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "# ###.##" +msgstr "# ###.##" + +#. Option for the 'Number Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "# ###.##" +msgstr "# ###.##" + +#. Option for the 'Number Format' (Select) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#'###.##" +msgstr "#'###.##" + +#. Option for the 'Number Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#'###.##" +msgstr "#'###.##" + +#. Option for the 'Number Format' (Select) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#, ###.##" +msgstr "#, ###.##" + +#. Option for the 'Number Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#, ###.##" +msgstr "#, ###.##" + +#. Option for the 'Number Format' (Select) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#,###" +msgstr "#,###" + +#. Option for the 'Number Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#,###" +msgstr "#,###" + +#. Option for the 'Number Format' (Select) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#,###.##" +msgstr "#,###.##" + +#. Option for the 'Number Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#,###.##" +msgstr "#,###.##" + +#. Option for the 'Number Format' (Select) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#,###.###" +msgstr "#,###.###" + +#. Option for the 'Number Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#,###.###" +msgstr "#,###.###" + +#. Option for the 'Number Format' (Select) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#,##,###.##" +msgstr "#,##,###.##" + +#. Option for the 'Number Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#,##,###.##" +msgstr "#,##,###.##" + +#. Option for the 'Number Format' (Select) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#.###" +msgstr "#.###" + +#. Option for the 'Number Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#.###" +msgstr "#.###" + +#. Option for the 'Number Format' (Select) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "#.###,##" +msgstr "#.###,##" + +#. Option for the 'Number Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "#.###,##" +msgstr "#.###,##" + +#: public/js/frappe/ui/toolbar/tag_utils.js:21 +#: public/js/frappe/ui/toolbar/tag_utils.js:22 +msgid "#{0}" +msgstr "#{0}" + +#: public/js/frappe/ui/toolbar/about.js:8 +msgid "© Frappe Technologies Pvt. Ltd. and contributors" +msgstr "" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "<head> HTML" +msgstr "<head> HTML" + +#: public/js/form_builder/store.js:206 +msgid "'In Global Search' is not allowed for field {0} of type {1}" +msgstr "'U globalnoj pretrazi' nije dozvoljeno za polje {0} tipa {1}" + +#: core/doctype/doctype/doctype.py:1303 +msgid "'In Global Search' not allowed for type {0} in row {1}" +msgstr "'U globalnoj pretrazi' nije dozvoljeno za tip {0} u redu {1}" + +#: public/js/form_builder/store.js:198 +msgid "'In List View' is not allowed for field {0} of type {1}" +msgstr "'U prikazu liste' nije dozvoljeno za polje {0} tipa {1}" + +#: custom/doctype/customize_form/customize_form.py:358 +msgid "'In List View' not allowed for type {0} in row {1}" +msgstr "'U prikazu liste' nije dozvoljeno za tip {0} u redu {1}" + +#: automation/doctype/auto_repeat/auto_repeat.py:150 +msgid "'Recipients' not specified" +msgstr "'Primaoci' nisu navedeni" + +#: utils/__init__.py:242 +msgid "'{0}' is not a valid URL" +msgstr "'{0}' nije važeći URL" + +#: core/doctype/doctype/doctype.py:1297 +msgid "'{0}' not allowed for type {1} in row {2}" +msgstr "'{0}' nije dozvoljeno za tip {1} u redu {2}" + +#: public/js/frappe/data_import/data_exporter.js:301 +msgid "(Mandatory)" +msgstr "" + +#: model/rename_doc.py:681 +msgid "** Failed: {0} to {1}: {2}" +msgstr "** Neuspješno: {0} do {1}: {2}" + +#: public/js/frappe/views/kanban/kanban_settings.js:111 +msgid "+ Add / Remove Fields" +msgstr "" + +#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document +#. State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" +msgstr "0 - Nacrt; 1 - Podneseno; 2 - Otkazano" + +#. Description of the 'Priority' (Int) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "0 is highest" +msgstr "0 je najviše" + +#: public/js/frappe/form/grid_row.js:807 +msgid "1 = True & 0 = False" +msgstr "1 = Tačno i 0 = Netačno" + +#. Description of the 'Fraction Units' (Int) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "1 Currency = [?] Fraction\n" +"For e.g. 1 USD = 100 Cent" +msgstr "1 Valuta = [?] Dio\n" +"Za npr. 1 USD = 100 Cent" + +#: public/js/frappe/form/reminders.js:19 +msgid "1 Day" +msgstr "1 dan" + +#: integrations/doctype/google_calendar/google_calendar.py:359 +msgid "1 Google Calendar Event synced." +msgstr "Sinhroniziran je 1 događaj iz Google kalendara." + +#: public/js/frappe/views/reports/query_report.js:881 +msgid "1 Report" +msgstr "" + +#: website/doctype/blog_post/blog_post.py:374 +msgid "1 comment" +msgstr "1 komentar" + +#: tests/test_utils.py:676 +msgid "1 day ago" +msgstr "prije 1 dan" + +#: public/js/frappe/form/reminders.js:17 +msgid "1 hour" +msgstr "1 sat" + +#: public/js/frappe/utils/pretty_date.js:52 tests/test_utils.py:674 +msgid "1 hour ago" +msgstr "prije 1 sat" + +#: public/js/frappe/utils/pretty_date.js:48 tests/test_utils.py:672 +msgid "1 minute ago" +msgstr "prije 1 minutu" + +#: public/js/frappe/utils/pretty_date.js:66 tests/test_utils.py:680 +msgid "1 month ago" +msgstr "prije 1 mjesec" + +#: public/js/frappe/data_import/data_exporter.js:226 +msgid "1 record will be exported" +msgstr "1 zapis će biti izvezen" + +#: tests/test_utils.py:671 +msgid "1 second ago" +msgstr "prije 1 sekundu" + +#: public/js/frappe/utils/pretty_date.js:62 tests/test_utils.py:678 +msgid "1 week ago" +msgstr "prije 1 sedmicu" + +#: public/js/frappe/utils/pretty_date.js:70 tests/test_utils.py:682 +msgid "1 year ago" +msgstr "prije 1 godinu" + +#: tests/test_utils.py:675 +msgid "2 hours ago" +msgstr "prije 2 sata" + +#: tests/test_utils.py:681 +msgid "2 months ago" +msgstr "prije 2 mjeseca" + +#: tests/test_utils.py:679 +msgid "2 weeks ago" +msgstr "prije 2 sedmice" + +#: tests/test_utils.py:683 +msgid "2 years ago" +msgstr "Prije 2 godine" + +#: tests/test_utils.py:673 +msgid "3 minutes ago" +msgstr "prije 3 minute" + +#: public/js/frappe/form/reminders.js:16 +msgid "30 minutes" +msgstr "30 minuta" + +#: public/js/frappe/form/reminders.js:18 +msgid "4 hours" +msgstr "4 sata" + +#: public/js/frappe/data_import/data_exporter.js:37 +msgid "5 Records" +msgstr "5 zapisa" + +#: tests/test_utils.py:677 +msgid "5 days ago" +msgstr "prije 5 dana" + +#: desk/doctype/bulk_update/bulk_update.py:37 +msgid "; not allowed in condition" +msgstr "; nije dozvoljeno u uslovu" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "<" +msgstr "<" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "<=" +msgstr "<=" + +#: public/js/frappe/widgets/widget_dialog.js:603 +msgid "{0} is not a valid URL" +msgstr "{0} nije važeći URL" + +#. Content of the 'Help' (HTML) field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" +msgstr "
Nemojte ga ažurirati jer to može pokvariti vašu formu. Koristite Prilagodi prikaz obrasca i Prilagođena polja da postavite svojstva!
" + +#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming +#. Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "
\n" +" Edit list of Series in the box. Rules:\n" +"
    \n" +"
  • Each Series Prefix on a new line.
  • \n" +"
  • Allowed special characters are \"/\" and \"-\"
  • \n" +"
  • \n" +" Optionally, set the number of digits in the series using dot (.)\n" +" followed by hashes (#). For example, \".####\" means that the series\n" +" will have four digits. Default is five digits.\n" +"
  • \n" +"
  • \n" +" You can also use variables in the series name by putting them\n" +" between (.) dots\n" +"
    \n" +" Supported Variables:\n" +"
      \n" +"
    • .YYYY. - Year in 4 digits
    • \n" +"
    • .YY. - Year in 2 digits
    • \n" +"
    • .MM. - Month
    • \n" +"
    • .DD. - Day of month
    • \n" +"
    • .WW. - Week of the year
    • \n" +"
    • .FY. - Fiscal Year
    • \n" +"
    • \n" +" .{fieldname}. - fieldname on the document e.g.\n" +" branch\n" +"
    • \n" +"
    \n" +"
  • \n" +"
\n" +" Examples:\n" +"
    \n" +"
  • INV-
  • \n" +"
  • INV-10-
  • \n" +"
  • INVK-
  • \n" +"
  • INV-.YYYY.-.{branch}.-.MM.-.####
  • \n" +"
\n" +"
\n" +"
\n" +msgstr "
\n" +" Uredite listu serija u okviru. pravila:\n" +"
    \n" +"
  • Svaki prefiks serije na novom redu.
  • \n" +"
  • Dozvoljeni specijalni znakovi su \"/\" i \"-\"
  • \n" +"
  • \n" +" Po želji, postavite broj cifara u nizu pomoću tačke (.)\n" +" nakon čega slijede heševi (#). Na primjer, \".####\" znači da je serija\n" +" imaće četiri cifre. Podrazumijevano je pet cifara.\n" +"
  • \n" +"
  • \n" +" Također možete koristiti varijable u nazivu serije tako što ćete ih staviti\n" +" između (.) tačaka\n" +"
    \n" +" Podržane varijable:\n" +"
      \n" +"
    • .GGGG. - Godina u 4 cifre
    • \n" +"
    • .YY. - Godina u 2 cifre
    • \n" +"
    • .MM. - Mjesec
    • \n" +"
    • .DD. - Dan u mjesecu
    • \n" +"
    • .WW. - Sedmica u godini
    • \n" +"
    • .FY. - fiskalna godina
    • \n" +"
    • \n" +" .{fieldname}. - ime polja na dokumentu, npr.\n" +" grana\n" +"
    • \n" +"
    \n" +"
  • \n" +"
\n" +" primjeri:\n" +"
    \n" +"
  • INV-
  • \n" +"
  • INV-10-
  • \n" +"
  • INVK-
  • \n" +"
  • INV-.YYYY.-.{branch}.-.MM.-.####
  • \n" +"
\n" +"
\n" +"
\n" + +#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "

Custom CSS Help

\n\n" +"

Notes:

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

Examples

\n\n" +"

1. Left align integers

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

1. Add border to sections except the last section

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

Pomoć za prilagođeni CSS

\n\n" +"

Napomene:

\n\n" +"
    \n" +"
  1. Sve grupe polja (oznaka + vrijednost) su postavljeni atributi data-fieldtype i data-fieldname
  2. \n" +"
  3. Sve vrijednosti imaju klasu value
  4. \n" +"
  5. Svi prijelomi odjeljaka dobivaju klasu section-break
  6. \n" +"
  7. Svim prijelomima kolona dodijeljena je klasa column-break
  8. \n" +"
\n\n" +"

Primjeri

\n\n" +"

1. Lijevo poravnanje cijelih brojeva

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

1. Dodajte ivicu odjeljcima osim posljednjeg odjeljka

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

Print Format Help

\n" +"
\n" +"

Introduction

\n" +"

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

\n" +"

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

\n" +"
\n" +"

References

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

Example

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

Common Functions

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

Pomoć za format ispisa

\n" +"
\n" +"

Uvod

\n" +"

Formati ispisa prikazuju se na strani poslužitelja pomoću Jinja Templating Language. Svi obrasci imaju pristup objektu doc koji sadrži informacije o dokumentu koji se formatira. Također možete pristupiti uobičajenim uslužnim programima preko frappe modula.

\n" +"

Za stiliziranje, Boostrap CSS framework je osiguran i možete uživati u punom rasponu klasa.

\n" +"
\n" +"

Reference

\n" +"
    \n" +"
  1. Jinja Templateing Language
  2. \n" +"
  3. Bootstrap CSS okvir
  4. \n" +"
\n" +"
\n" +"

Primjer

\n" +"
<h3>{{ doc.select_print_heading or \"Invoice\" }}</h3>\n"
+"<div class=\"row\">\n"
+"<div class=\"col-md-3 text-right\">Ime kupca</div>\n"
+"<div class=\"col-md-9\">{{ doc.customer_name }}</div>\n"
+"</div>\n"
+"<div class=\"row\">\n"
+"<div class=\"col-md-3 text-right\">Datum</div>\n"
+"<div class=\"col-md-9\">{{ doc.get_formatted(\"invoice_date\") }}</div>\n"
+"</div>\n"
+"<table class=\"table table-bordered\">\n"
+"<tijelo>\n"
+"<tr>\n"
+"<th>Sr</th>\n"
+"<th>Naziv stavke</th>\n"
+"<th>Opis</th>\n"
+"<th class=\"text-right\">Kol</th>\n"
+"<th class=\"text-right\">Cijena</th>\n"
+"<th class=\"text-right\">Iznos</th>\n"
+"</tr>\n"
+"{%- za red u doc.items -%}\n"
+"<tr>\n"
+"<td style=\"width: 3%;\">{{ row.idx }}</td>\n"
+"<td style=\"width: 20%;\">\n"
+"{{ row.item_name }}\n"
+"{% if row.item_code != row.item_name -%}\n"
+"<br>Šifra artikla: {{ 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"
+"</tbody>\n"
+"</table>
\n" +"
\n" +"

Uobičajene funkcije

\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"
doc.get_formatted(\"[fieldname]\", [parent_doc])Dohvatite vrijednost dokumenta formatiranu kao datum, valuta itd. Proslijedite nadređeni doc za polja tipa valute.
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\")Dobijte vrijednost iz drugog dokumenta.
\n" + +#. Description of the 'Template' (Code) field in DocType 'Address Template' +#: contacts/doctype/address_template/address_template.json +#, python-format +msgctxt "Address Template" +msgid "

Default Template

\n" +"

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

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

Zadani predložak

\n" +"

Koristi Jinja Templating i sva polja adrese (uključujući prilagođena polja ako postoje) bit će dostupna

\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 %}E-pošta: {{ email_id }}<br>{% endif -%}\n"
+"
" + +#. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "

Email Reply Example

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

How to get fieldnames

\n\n" +"

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

\n\n" +"

Templating

\n\n" +"

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

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

Condition Examples:

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

Condition Examples:

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

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

For Example:

\n" +"

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

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

Set context before rendering a template. Example:

\n" +"

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

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

For example:

// here root_element is provided by default\n"
+"let some_class_element = root_element.querySelector('.some-class');\n"
+"some_class_element.textContent = \"New content\";\n"
+"
" +msgstr "" + +#: twofactor.py:462 +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' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +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 "" + +#. Description of the 'Cron Format' (Data) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +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' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "
doc.grand_total > 0
\n\n" +"

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

\n" +"

Allowed functions:\n" +"

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

Example:

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

" +msgstr "" + +#: 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' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "=" +msgstr "=" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid ">" +msgstr ">" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid ">=" +msgstr ">=" + +#. Description of the Onboarding Step 'Custom Document Types' +#: custom/onboarding_step/custom_doctype/custom_doctype.json +msgid "A DocType (Document Type) is used to insert forms in ERPNext. Forms such as Customer, Orders, and Invoices are Doctypes in the backend. You can also create new DocTypes to create new forms in ERPNext as per your business needs." +msgstr "DocType (Document Type) se koristi za umetanje obrazaca u ERPNext. Obrasci kao što su Kupac, Narudžbe i Fakture su tipovi dokumenata u pozadini. Također možete kreirati nove DocType za kreiranje novih obrazaca u ERPNext prema vašim poslovnim potrebama." + +#: core/doctype/doctype/doctype.py:1015 +msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" +msgstr "Ime DocType-a treba da počinje slovom i može se sastojati samo od slova, brojeva, razmaka, donjih crta i crtica" + +#: website/doctype/blog_post/blog_post.py:93 +msgid "A featured post must have a cover image" +msgstr "Istaknuta objava mora imati naslovnu sliku" + +#: custom/doctype/custom_field/custom_field.py:173 +msgid "A field with the name {0} already exists in {1}" +msgstr "Polje s imenom {0} već postoji u {1}" + +#: core/doctype/file/file.py:254 +msgid "A file with same name {} already exists" +msgstr "Datoteka s istim imenom {} već postoji" + +#. Description of the 'Scopes' (Text) field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "A list of resources which the Client App will have access to after the user allows it.
e.g. project" +msgstr "Lista resursa kojima će klijentska aplikacija imati pristup nakon što korisnik to dozvoli.
npr. projekat" + +#: templates/emails/new_user.html:5 +msgid "A new account has been created for you at {0}" +msgstr "Za vas je kreiran novi račun na {0}" + +#: automation/doctype/auto_repeat/auto_repeat.py:389 +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}." + +#. Description of the 'Symbol' (Data) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "A symbol for this currency. For e.g. $" +msgstr "Simbol za ovu valutu. Za npr. $" + +#: printing/doctype/print_format_field_template/print_format_field_template.py:49 +msgid "A template already exists for field {0} of {1}" +msgstr "Šablon već postoji za polje {0} od {1}" + +#: utils/password_strength.py:169 +msgid "A word by itself is easy to guess." +msgstr "Riječ samu po sebi lako je pogoditi." + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A0" +msgstr "A0" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A1" +msgstr "A1" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A2" +msgstr "A2" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A3" +msgstr "A3" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A4" +msgstr "A4" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A5" +msgstr "A5" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A6" +msgstr "A6" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A7" +msgstr "A7" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A8" +msgstr "A8" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "A9" +msgstr "A9" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "ALL" +msgstr "SVE" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "API" +msgstr "API" + +#. Label of a Section Break field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "API Access" +msgstr "API pristup" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "API Access" +msgstr "API pristup" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "API Endpoint" +msgstr "API krajnja tačka" + +#. Label of a Code field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "API Endpoint Args" +msgstr "API argumenti krajnje tačke" + +#. Label of a Data field in DocType 'Google Settings' +#. Label of a Section Break field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "API Key" +msgstr "API ključ" + +#. Label of a Data field in DocType 'Push Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "API Key" +msgstr "API ključ" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "API Key" +msgstr "API ključ" + +#. Description of the 'Authentication' (Section Break) field in DocType 'Push +#. Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site." +msgstr "" + +#. Description of the 'API Key' (Data) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "API Key cannot be regenerated" +msgstr "API ključ se ne može regenerirati" + +#. Label of a Data field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "API Method" +msgstr "API metoda" + +#. Label of a Password field in DocType 'Push Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "API Secret" +msgstr "API tajna" + +#. Label of a Password field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "API Secret" +msgstr "API tajna" + +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "ASC" +msgstr "ASC" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "ASC" +msgstr "ASC" + +#. Label of a standard help item +#. Type: Action +#: hooks.py +msgid "About" +msgstr "O" + +#: www/about.html:11 www/about.html:18 +msgid "About Us" +msgstr "O nama" + +#. Name of a DocType +#: website/doctype/about_us_settings/about_us_settings.json +msgid "About Us Settings" +msgstr "O nama Postavke" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "About Us Settings" +msgid "About Us Settings" +msgstr "O nama Postavke" + +#. Name of a DocType +#: website/doctype/about_us_team_member/about_us_team_member.json +msgid "About Us Team Member" +msgstr "O nama Član tima" + +#: core/doctype/data_import/data_import.js:27 +msgid "About {0} minute remaining" +msgstr "Preostalo je oko {0} minute" + +#: core/doctype/data_import/data_import.js:28 +msgid "About {0} minutes remaining" +msgstr "Preostalo je oko {0} minuta" + +#: core/doctype/data_import/data_import.js:25 +msgid "About {0} seconds remaining" +msgstr "Preostalo je oko {0} sekundi" + +#. Label of a Data field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Access Key ID" +msgstr "ID pristupnog ključa" + +#. Label of a Password field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Access Key Secret" +msgstr "Tajna pristupnog ključa" + +#. Name of a DocType +#: core/doctype/access_log/access_log.json +msgid "Access Log" +msgstr "Dnevnik pristupa" + +#. Label of a Link in the Users Workspace +#: core/workspace/users/users.json +msgctxt "Access Log" +msgid "Access Log" +msgstr "Dnevnik pristupa" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Access Log" +msgstr "Dnevnik pristupa" + +#. Label of a Data field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Access Token" +msgstr "Pristupni token" + +#. Label of a Password field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Access Token" +msgstr "Pristupni token" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Access Token URL" +msgstr "URL pristupnog tokena" + +#: auth.py:451 +msgid "Access not allowed from this IP Address" +msgstr "Pristup nije dozvoljen sa ove IP adrese" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Account" +msgstr "Račun" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Account Deletion Settings" +msgstr "Postavke brisanja računa" + +#. Name of a role +#: automation/doctype/auto_repeat/auto_repeat.json +#: contacts/doctype/contact/contact.json geo/doctype/currency/currency.json +msgid "Accounts Manager" +msgstr "Voditelj računa" + +#. Name of a role +#: automation/doctype/auto_repeat/auto_repeat.json +#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +#: geo/doctype/currency/currency.json +msgid "Accounts User" +msgstr "Korisnik računa" + +#: email/doctype/email_group/email_group.js:34 +#: email/doctype/email_group/email_group.js:63 +#: email/doctype/email_group/email_group.js:72 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:37 +#: public/js/frappe/form/sidebar/review.js:59 +#: workflow/page/workflow_builder/workflow_builder.js:37 +msgid "Action" +msgstr "Akcija" + +#. Label of a Select field in DocType 'Amended Document Naming Settings' +#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgctxt "Amended Document Naming Settings" +msgid "Action" +msgstr "Akcija" + +#. Label of a Select field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Action" +msgstr "Akcija" + +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of a Data field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Action" +msgstr "Akcija" + +#. Label of a Select field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Action" +msgstr "Akcija" + +#. Label of a Link field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Action" +msgstr "Akcija" + +#. Label of a Small Text field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Action / Route" +msgstr "Akcija / Ruta" + +#: public/js/frappe/widgets/onboarding_widget.js:310 +#: public/js/frappe/widgets/onboarding_widget.js:381 +msgid "Action Complete" +msgstr "Akcija završena" + +#: model/document.py:1678 +msgid "Action Failed" +msgstr "Akcija nije uspjela" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Action Label" +msgstr "Oznaka akcije" + +#. Label of a Int field in DocType 'Success Action' +#: core/doctype/success_action/success_action.json +msgctxt "Success Action" +msgid "Action Timeout (Seconds)" +msgstr "Istek akcije (sekunde)" + +#. Label of a Select field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Action Type" +msgstr "Vrsta akcije" + +#: core/doctype/submission_queue/submission_queue.py:120 +msgid "Action {0} completed successfully on {1} {2}. View it {3}" +msgstr "Akcija {0} je uspješno završena {1} {2}. Pogledaj {3}" + +#: core/doctype/submission_queue/submission_queue.py:116 +msgid "Action {0} failed on {1} {2}. View it {3}" +msgstr "Akcija {0} nije uspjela {1} {2}. Pogledaj {3}" + +#: core/doctype/communication/communication.js:66 +#: core/doctype/communication/communication.js:74 +#: core/doctype/communication/communication.js:82 +#: core/doctype/communication/communication.js:90 +#: core/doctype/communication/communication.js:99 +#: core/doctype/communication/communication.js:108 +#: core/doctype/communication/communication.js:131 +#: core/doctype/rq_job/rq_job_list.js:14 core/doctype/rq_job/rq_job_list.js:39 +#: custom/doctype/customize_form/customize_form.js:108 +#: custom/doctype/customize_form/customize_form.js:116 +#: custom/doctype/customize_form/customize_form.js:124 +#: custom/doctype/customize_form/customize_form.js:132 +#: custom/doctype/customize_form/customize_form.js:140 +#: custom/doctype/customize_form/customize_form.js:238 +#: public/js/frappe/ui/page.html:56 +#: public/js/frappe/views/reports/query_report.js:190 +#: public/js/frappe/views/reports/query_report.js:203 +#: public/js/frappe/views/reports/query_report.js:213 +#: public/js/frappe/views/reports/query_report.js:775 +msgid "Actions" +msgstr "Akcije" + +#. Label of a Table field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Actions" +msgstr "Akcije" + +#. Label of a Section Break field in DocType 'DocType' +#. Label of a Table field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Actions" +msgstr "Akcije" + +#. Label of a Check field in DocType 'Package Import' +#: core/doctype/package_import/package_import.json +msgctxt "Package Import" +msgid "Activate" +msgstr "Aktiviraj" + +#: core/doctype/recorder/recorder_list.js:207 core/doctype/user/user_list.js:12 +#: workflow/doctype/workflow/workflow_list.js:5 +msgid "Active" +msgstr "Aktivan" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Active" +msgstr "Aktivan" + +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Active" +msgstr "Aktivan" + +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Active" +msgstr "Aktivan" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Active Directory" +msgstr "Active Directory" + +#. Label of a Section Break field in DocType 'Domain Settings' +#. Label of a Table field in DocType 'Domain Settings' +#: core/doctype/domain_settings/domain_settings.json +msgctxt "Domain Settings" +msgid "Active Domains" +msgstr "Aktivne domene" + +#: www/third_party_apps.html:32 +msgid "Active Sessions" +msgstr "Aktivne sesije" + +#: public/js/frappe/form/dashboard.js:22 +#: public/js/frappe/form/footer/form_timeline.js:58 +msgid "Activity" +msgstr "Aktivnost" + +#. Group in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Activity" +msgstr "Aktivnost" + +#. Name of a DocType +#: core/doctype/activity_log/activity_log.json +msgid "Activity Log" +msgstr "Dnevnik aktivnosti" + +#. Label of a Link in the Build Workspace +#. Label of a Link in the Users Workspace +#: core/workspace/build/build.json core/workspace/users/users.json +msgctxt "Activity Log" +msgid "Activity Log" +msgstr "Dnevnik aktivnosti" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Activity Log" +msgstr "Dnevnik aktivnosti" + +#: core/page/permission_manager/permission_manager.js:476 +#: email/doctype/email_group/email_group.js:60 +#: public/js/frappe/form/grid_row.js:470 +#: public/js/frappe/form/sidebar/assign_to.js:100 +#: public/js/frappe/form/templates/set_sharing.html:68 +#: public/js/frappe/list/bulk_operations.js:407 +#: public/js/frappe/views/dashboard/dashboard_view.js:440 +#: public/js/frappe/views/reports/query_report.js:265 +#: public/js/frappe/views/reports/query_report.js:293 +#: public/js/frappe/widgets/widget_dialog.js:30 +msgid "Add" +msgstr "Dodaj" + +#: public/js/frappe/list/list_view.js:265 +msgctxt "Primary action in list view" +msgid "Add" +msgstr "Dodaj" + +#: public/js/frappe/form/grid_row.js:430 +msgid "Add / Remove Columns" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:4 +msgid "Add / Update" +msgstr "Dodaj/Ažuriraj" + +#: core/page/permission_manager/permission_manager.js:436 +msgid "Add A New Rule" +msgstr "Dodaj novo pravilo" + +#: public/js/frappe/views/communication.js:578 +#: public/js/frappe/views/interaction.js:159 +msgid "Add Attachment" +msgstr "Dodaj prilog" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Background Image" +msgstr "Dodaj pozadinsku sliku" + +#. Title of an Onboarding Step +#: website/onboarding_step/add_blog_category/add_blog_category.json +msgid "Add Blog Category" +msgstr "Dodaj kategoriju bloga" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Border at Bottom" +msgstr "Dodajte ivicu na dnu" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Border at Top" +msgstr "Dodajte ivicu na vrh" + +#: public/js/frappe/views/reports/query_report.js:209 +msgid "Add Chart to Dashboard" +msgstr "" + +#: public/js/frappe/views/treeview.js:285 +msgid "Add Child" +msgstr "Dodaj podređeni" + +#: public/js/frappe/views/kanban/kanban_board.html:4 +#: public/js/frappe/views/reports/query_report.js:1681 +#: public/js/frappe/views/reports/query_report.js:1684 +#: public/js/frappe/views/reports/report_view.js:324 +#: public/js/frappe/views/reports/report_view.js:349 +msgid "Add Column" +msgstr "Dodaj kolonu" + +#: core/doctype/communication/communication.js:127 +msgid "Add Contact" +msgstr "Dodaj kontakt" + +#: desk/doctype/event/event.js:38 +msgid "Add Contacts" +msgstr "Dodaj kontakte" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Container" +msgstr "Dodaj kontejner" + +#. Label of a Button field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Add Custom Tags" +msgstr "Dodaj prilagođene oznake" + +#: public/js/frappe/widgets/widget_dialog.js:192 +#: public/js/frappe/widgets/widget_dialog.js:722 +msgid "Add Filters" +msgstr "Dodaj filtere" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Gray Background" +msgstr "Dodaj sivu pozadinu" + +#: public/js/frappe/ui/group_by/group_by.js:230 +#: public/js/frappe/ui/group_by/group_by.js:415 +msgid "Add Group" +msgstr "Dodaj grupu" + +#: public/js/frappe/form/grid.js:63 +msgid "Add Multiple" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:439 +msgid "Add New Permission Rule" +msgstr "Dodaj novo pravilo dozvola" + +#: desk/doctype/event/event.js:35 desk/doctype/event/event.js:42 +msgid "Add Participants" +msgstr "Dodaj učesnike" + +#. Label of a Check field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Add Query Parameters" +msgstr "Dodaj parametre upita" + +#: public/js/frappe/form/sidebar/review.js:45 +msgid "Add Review" +msgstr "Dodaj recenziju" + +#: core/doctype/user/user.py:810 +msgid "Add Roles" +msgstr "Dodaj uloge" + +#: public/js/frappe/form/grid.js:63 +msgid "Add Row" +msgstr "" + +#: public/js/frappe/views/communication.js:121 +msgid "Add Signature" +msgstr "Dodaj potpis" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Add Signature" +msgstr "Dodaj potpis" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Space at Bottom" +msgstr "Dodaj razmak na dnu" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Add Space at Top" +msgstr "Dodajte razmak na vrh" + +#: email/doctype/email_group/email_group.js:38 +#: email/doctype/email_group/email_group.js:59 +msgid "Add Subscribers" +msgstr "Dodaj pretplatnike" + +#: public/js/frappe/list/bulk_operations.js:395 +msgid "Add Tags" +msgstr "Dodaj oznake" + +#: public/js/frappe/list/list_view.js:1904 +msgctxt "Button in list view actions menu" +msgid "Add Tags" +msgstr "Dodaj oznake" + +#: public/js/frappe/views/communication.js:410 +msgid "Add Template" +msgstr "Dodaj šablon" + +#. Label of a Check field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Add Total Row" +msgstr "Dodaj red za zbir" + +#. Label of a Check field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Add Unsubscribe Link" +msgstr "Dodaj vezu za otkazivanje pretplate" + +#: core/doctype/user_permission/user_permission_list.js:6 +msgid "Add User Permissions" +msgstr "Dodaj korisničke dozvole" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Add Video Conferencing" +msgstr "Dodaj video konferenciju" + +#: public/js/frappe/ui/filters/filter_list.js:298 +msgid "Add a Filter" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:9 +msgid "Add a New Role" +msgstr "" + +#: public/js/frappe/form/form_tour.js:205 +msgid "Add a Row" +msgstr "Dodaj red" + +#: templates/includes/comments/comments.html:30 +#: templates/includes/comments/comments.html:47 +msgid "Add a comment" +msgstr "Dodaj komentar" + +#: printing/page/print_format_builder/print_format_builder_layout.html:28 +msgid "Add a new section" +msgstr "" + +#: public/js/frappe/form/form.js:192 +msgid "Add a row above the current row" +msgstr "Dodaj red iznad trenutnog reda" + +#: public/js/frappe/form/form.js:204 +msgid "Add a row at the bottom" +msgstr "Dodaj red na dnu" + +#: public/js/frappe/form/form.js:200 +msgid "Add a row at the top" +msgstr "Dodaj red na vrhu" + +#: public/js/frappe/form/form.js:196 +msgid "Add a row below the current row" +msgstr "Dodaj red ispod trenutnog reda" + +#: public/js/frappe/views/dashboard/dashboard_view.js:285 +msgid "Add a {0} Chart" +msgstr "Dodaj {0} grafikon" + +#: custom/doctype/client_script/client_script.js:16 +msgid "Add script for Child Table" +msgstr "Dodajte skriptu za podređenu tablicu" + +#: public/js/frappe/utils/dashboard_utils.js:263 +#: public/js/frappe/views/reports/query_report.js:251 +msgid "Add to Dashboard" +msgstr "" + +#: public/js/frappe/form/sidebar/assign_to.js:98 +msgid "Add to ToDo" +msgstr "Dodaj u listu obaveza" + +#: website/doctype/website_slideshow/website_slideshow.js:32 +msgid "Add to table" +msgstr "Add to tabelu" + +#: public/js/frappe/form/footer/form_timeline.js:97 +msgid "Add to this activity by mailing to {0}" +msgstr "Dodajte ovoj aktivnosti slanjem pošte na adresu {0}" + +#: public/js/frappe/views/kanban/kanban_column.html:20 +msgid "Add {0}" +msgstr "" + +#. Description of the '<head> HTML' (Code) field in DocType 'Website +#. Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" +msgstr "Dodan HTML u <head> dio web stranice, koji se prvenstveno koristi za verifikaciju web stranice i SEO" + +#: core/doctype/log_settings/log_settings.py:82 +msgid "Added default log doctypes: {}" +msgstr "Dodani zadani doctypes dnevnika: {}" + +#: core/doctype/file/file.py:718 +msgid "Added {0}" +msgstr "Dodano {0}" + +#: public/js/frappe/form/link_selector.js:180 +#: public/js/frappe/form/link_selector.js:202 +msgid "Added {0} ({1})" +msgstr "Dodano {0} ({1})" + +#: core/doctype/user/user.py:307 +msgid "Adding System Manager to this User as there must be atleast one System Manager" +msgstr "Dodavanje upravitelja sistema ovom korisniku jer mora postojati barem jedan upravitelj sistema" + +#. Label of a Section Break field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Additional Permissions" +msgstr "Dodatne dozvole" + +#. Label of a Section Break field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Additional Permissions" +msgstr "Dodatne dozvole" + +#. Name of a DocType +#: contacts/doctype/address/address.json +msgid "Address" +msgstr "Adresa" + +#. Label of a Link field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Address" +msgstr "Adresa" + +#. Label of a Section Break field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Address" +msgstr "Adresa" + +#. Label of a Small Text field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Address" +msgstr "Adresa" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Address Line 1" +msgstr "Adresna linija 1" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Address Line 1" +msgstr "Adresna linija 1" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Address Line 2" +msgstr "Adresna linija 2" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Address Line 2" +msgstr "Adresna linija 2" + +#. Name of a DocType +#: contacts/doctype/address_template/address_template.json +msgid "Address Template" +msgstr "Šablon adrese" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Address Title" +msgstr "Naslov adrese" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Address Title" +msgstr "Naslov adrese" + +#: contacts/doctype/address/address.py:72 +msgid "Address Title is mandatory." +msgstr "Naslov adrese je obavezan." + +#. Label of a Select field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Address Type" +msgstr "Vrsta adrese" + +#. Description of the 'Address' (Small Text) field in DocType 'Website +#. Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Address and other legal information you may want to put in the footer." +msgstr "Adresa i druge pravne informacije koje biste možda željeli staviti u podnožje." + +#: contacts/doctype/address/address.py:206 +msgid "Addresses" +msgstr "Adrese" + +#. Name of a report +#: contacts/report/addresses_and_contacts/addresses_and_contacts.json +msgid "Addresses And Contacts" +msgstr "Adrese i Kontakti" + +#. Description of a DocType +#: custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:552 +msgid "Administration" +msgstr "Administracija" + +#. Name of a role +#: contacts/doctype/salutation/salutation.json +#: core/doctype/doctype/doctype.json core/doctype/domain/domain.json +#: core/doctype/module_def/module_def.json core/doctype/page/page.json +#: core/doctype/patch_log/patch_log.json core/doctype/recorder/recorder.json +#: core/doctype/report/report.json core/doctype/rq_job/rq_job.json +#: core/doctype/transaction_log/transaction_log.json +#: core/doctype/user_type/user_type.json core/doctype/version/version.json +#: custom/doctype/client_script/client_script.json +#: custom/doctype/custom_field/custom_field.json +#: custom/doctype/property_setter/property_setter.json +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: desk/doctype/onboarding_step/onboarding_step.json +#: website/doctype/website_theme/website_theme.json +msgid "Administrator" +msgstr "Administrator" + +#: core/doctype/user/user.py:1214 +msgid "Administrator Logged In" +msgstr "Administrator je prijavljen" + +#: core/doctype/user/user.py:1208 +msgid "Administrator accessed {0} on {1} via IP Address {2}." +msgstr "Administrator je pristupio {0} {1} putem IP adrese {2}." + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Advanced" +msgstr "Napredno" + +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Advanced" +msgstr "Napredno" + +#. Label of a Section Break field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Advanced Control" +msgstr "Napredna kontrola" + +#: public/js/frappe/form/controls/link.js:316 +#: public/js/frappe/form/controls/link.js:318 +msgid "Advanced Search" +msgstr "Napredna pretraga" + +#. Label of a Section Break field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Advanced Settings" +msgstr "Napredne postavke" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Cancel" +msgstr "Nakon otkazivanja" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Delete" +msgstr "Nakon brisanja" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Insert" +msgstr "Nakon umetanja" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Rename" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Save" +msgstr "Nakon spremanja" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Save (Submitted Document)" +msgstr "Nakon spremanja (Podnesen dokument)" + +#. Label of a Section Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "After Submission" +msgstr "Nakon podnošenja" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Submit" +msgstr "Nakon podnošenja" + +#: desk/doctype/number_card/number_card.py:59 +msgid "Aggregate Field is required to create a number card" +msgstr "Agregatno polje je potrebno za kreiranje kartice sa brojevima" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Aggregate Function Based On" +msgstr "Agregatna funkcija zasnovana na" + +#. Label of a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Aggregate Function Based On" +msgstr "Agregatna funkcija zasnovana na" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:400 +msgid "Aggregate Function field is required to create a dashboard chart" +msgstr "Polje agregatne funkcije potrebno je za izradu grafikona nadzorne ploče" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Alert" +msgstr "Upozorenje" + +#. Label of a Card Break in the Tools Workspace +#: automation/workspace/tools/tools.json +msgid "Alerts and Notifications" +msgstr "Upozorenja i obavještenja" + +#. Label of a Select field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Align" +msgstr "Poravnaj" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Align Labels to the Right" +msgstr "Poravnaj oznake udesno" + +#. Label of a Check field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "Align Right" +msgstr "Poravnaj desno" + +#: printing/page/print_format_builder/print_format_builder.js:479 +msgid "Align Value" +msgstr "Poravnaj vrijednost" + +#. Name of a role +#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +#: contacts/doctype/gender/gender.json +#: contacts/doctype/salutation/salutation.json +#: core/doctype/communication/communication.json core/doctype/file/file.json +#: core/doctype/language/language.json core/doctype/module_def/module_def.json +#: core/doctype/user/user.json desk/doctype/event/event.json +#: desk/doctype/notification_log/notification_log.json +#: desk/doctype/notification_settings/notification_settings.json +#: desk/doctype/tag/tag.json desk/doctype/tag_link/tag_link.json +#: desk/doctype/todo/todo.json geo/doctype/country/country.json +#: integrations/doctype/connected_app/connected_app.json +#: integrations/doctype/token_cache/token_cache.json +#: printing/doctype/print_heading/print_heading.json +#: website/doctype/personal_data_download_request/personal_data_download_request.json +#: website/doctype/website_settings/website_settings.json +msgid "All" +msgstr "Sve" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "All" +msgstr "Sve" + +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "All" +msgstr "Sve" + +#: public/js/frappe/ui/notifications/notifications.js:394 +msgid "All Day" +msgstr "Cijeli dan" + +#. Label of a Check field in DocType 'Calendar View' +#: desk/doctype/calendar_view/calendar_view.json +msgctxt "Calendar View" +msgid "All Day" +msgstr "Cijeli dan" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "All Day" +msgstr "Cijeli dan" + +#: website/doctype/website_slideshow/website_slideshow.py:43 +msgid "All Images attached to Website Slideshow should be public" +msgstr "Sve slike priložene prezentaciji web stranice trebaju biti javne" + +#: public/js/frappe/data_import/data_exporter.js:29 +msgid "All Records" +msgstr "Svi zapisi" + +#: public/js/frappe/form/form.js:2173 +msgid "All Submissions" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:384 +msgid "All customizations will be removed. Please confirm." +msgstr "Sva prilagođavanja će biti uklonjena. Molimo potvrdite." + +#: templates/includes/comments/comments.html:158 +msgid "All fields are necessary to submit the comment." +msgstr "Sva polja su neophodna za slanje komentara." + +#. Description of the 'Document States' (Table) field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\"" +msgstr "Sva moguća stanja radnog toka i uloge radnog toka. Opcije statusa dokumenta: 0 je \"Spremljeno\", 1 je \"Podneseno\" i 2 je \"Otkazano\"" + +#: utils/password_strength.py:183 +msgid "All-uppercase is almost as easy to guess as all-lowercase." +msgstr "Isključivo velika slova gotovo je jednako lako pogoditi kao isključivo mala slova." + +#. Label of a Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Allocated To" +msgstr "Alocirano" + +#. Label of a Check field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Allot Points To Assigned Users" +msgstr "Dodijelite bodove dodijeljenim korisnicima" + +#: templates/includes/oauth_confirmation.html:15 +msgid "Allow" +msgstr "Dopusti" + +#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Allow" +msgstr "Dopusti" + +#. Label of a Link field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Allow" +msgstr "Dopusti" + +#: website/doctype/website_settings/website_settings.py:160 +msgid "Allow API Indexing Access" +msgstr "Dozvolite pristup API indeksiranju" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Allow Auto Repeat" +msgstr "Dozvoli automatsko ponavljanje" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow Auto Repeat" +msgstr "Dozvoli automatsko ponavljanje" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Allow Bulk Edit" +msgstr "Dozvoli grupno uređivanje" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Allow Bulk Edit" +msgstr "Dozvoli grupno uređivanje" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Comments" +msgstr "Dozvoli komentare" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Consecutive Login Attempts " +msgstr "Dozvoli uzastopne pokušaje prijave " + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Delete" +msgstr "Dozvoli brisanje" + +#. Label of a Button field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Allow Dropbox Access" +msgstr "Dozvolite pristup Dropboxu" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Editing After Submit" +msgstr "Dozvoli uređivanje nakon slanja" + +#: integrations/doctype/google_calendar/google_calendar.py:101 +#: integrations/doctype/google_calendar/google_calendar.py:115 +msgid "Allow Google Calendar Access" +msgstr "Dozvoli pristup Google kalendaru" + +#: integrations/doctype/google_contacts/google_contacts.py:40 +msgid "Allow Google Contacts Access" +msgstr "Dozvoli pristup Google kontaktima" + +#: integrations/doctype/google_drive/google_drive.py:52 +msgid "Allow Google Drive Access" +msgstr "Dozvoli pristup Google disku" + +#. Label of a Check field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Allow Guest" +msgstr "Dozvoli gostu" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow Guest to View" +msgstr "Dozvolite gostu da vidi" + +#. Label of a Check field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Allow Guest to comment" +msgstr "Dozvolite gostu da komentariše" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Guests to Upload Files" +msgstr "Dozvolite gostima da učitavaju datoteke" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Allow Import (via Data Import Tool)" +msgstr "Dozvoli uvoz (putem alata za uvoz podataka)" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow Import (via Data Import Tool)" +msgstr "Dozvoli uvoz (putem alata za uvoz podataka)" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Incomplete Forms" +msgstr "Dozvoli nepotpune obrasce" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Login After Fail" +msgstr "Dozvoli prijavu nakon neuspjeha" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Login using Mobile Number" +msgstr "Dozvoli prijavu koristeći broj mobilnog telefona" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Login using User Name" +msgstr "Dozvoli prijavu koristeći korisničko ime" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Allow Modules" +msgstr "Dozvoli module" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Multiple Responses" +msgstr "Dozvoli višestruke odgovore" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Older Web View Links (Insecure)" +msgstr "Dozvoli starije veze za web pregled (nesigurno)" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow Print" +msgstr "Dozvoli štampanje" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Allow Print for Cancelled" +msgstr "Dozvoli štampanje za Otkazano" + +#: automation/doctype/auto_repeat/auto_repeat.py:396 +msgid "Allow Print for Draft" +msgstr "Dozvoli štampanje za Nacrt" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Allow Print for Draft" +msgstr "Dozvoli štampanje za Nacrt" + +#. Label of a Check field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Allow Read On All Link Options" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow Rename" +msgstr "Dozvoli promjenu naziva" + +#. Label of a Table MultiSelect field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Allow Roles" +msgstr "Dozvoli uloge" + +#. Label of a Section Break field in DocType 'Role Permission for Page and +#. Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Allow Roles" +msgstr "Dozvoli uloge" + +#. Label of a Check field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Allow Self Approval" +msgstr "Dozvoli samoodobrenje" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow Sending Usage Data for Improving Applications" +msgstr "Dozvoli slanje podataka o upotrebi za poboljšanje aplikacija" + +#. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow +#. Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Allow approval for creator of the document" +msgstr "Dozvoli odobrenje za kreatora dokumenta" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Allow document creation via Email" +msgstr "Dozvoli kreiranje dokumenta putem e-pošte" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow document creation via Email" +msgstr "Dozvoli kreiranje dokumenta putem e-pošte" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Allow events in timeline" +msgstr "Dozvoli događaje na vremenskoj liniji" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Allow in Quick Entry" +msgstr "Dozvoli u brzom unosu" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Allow in Quick Entry" +msgstr "Dozvoli u brzom unosu" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Allow in Quick Entry" +msgstr "Dozvoli u brzom unosu" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Allow on Submit" +msgstr "Dozvoli pri podnošenju" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Allow on Submit" +msgstr "Dozvoli pri podnošenju" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Allow on Submit" +msgstr "Dozvoli pri podnošenju" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow only one session per user" +msgstr "Dozvoli samo jednu sesiju po korisniku" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Allow page break inside tables" +msgstr "Dozvoli prijelom stranice unutar tabela" + +#: desk/page/setup_wizard/setup_wizard.js:420 +msgid "Allow recording my first session to improve user experience" +msgstr "Dozvoli snimanje moje prve sesije radi poboljšanja korisničkog iskustva" + +#. Description of the 'Allow Incomplete Forms' (Check) field in DocType 'Web +#. Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Allow saving if mandatory fields are not filled" +msgstr "Dozvoli spremanje ako nisu popunjena obavezna polja" + +#: desk/page/setup_wizard/setup_wizard.js:413 +msgid "Allow sending usage data for improving applications" +msgstr "Dozvoli slanje podataka o korištenju za poboljšanje aplikacija" + +#. Description of the 'Login After' (Int) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Allow user to login only after this hour (0-24)" +msgstr "Dozvoli korisniku da se prijavi tek nakon ovog sata (0-24)" + +#. Description of the 'Login Before' (Int) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Allow user to login only before this hour (0-24)" +msgstr "Dozvoli korisniku da se prijavi samo prije ovog sata (0-24)" + +#. Description of the 'Login with email link' (Check) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allow users to log in without a password, using a login link sent to their email" +msgstr "Dozvolite korisnicima da se prijave bez lozinke, koristeći link za prijavu poslat na njihovu e-poštu" + +#. Label of a Link field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Allowed" +msgstr "Dozvoljeno" + +#. Label of a Small Text field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Allowed File Extensions" +msgstr "Dozvoljene ekstenzije datoteka" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Allowed In Mentions" +msgstr "Dozvoljeno u spominjanju" + +#. Label of a Section Break field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Allowed Modules" +msgstr "Dozvoljeni moduli" + +#: public/js/frappe/form/form.js:1229 +msgid "Allowing DocType, DocType. Be careful!" +msgstr "Dopuštanje DocType, DocType. Budite pazljivi!" + +#: core/doctype/user/user.py:1017 +msgid "Already Registered" +msgstr "Već registrovan" + +#: desk/form/assign_to.py:134 +msgid "Already in the following Users ToDo list:{0}" +msgstr "Već na sljedećoj listi obaveza korisnika:{0}" + +#: public/js/frappe/views/reports/report_view.js:835 +msgid "Also adding the dependent currency field {0}" +msgstr "Takođe se dodaje polje zavisne valute {0}" + +#: public/js/frappe/views/reports/report_view.js:848 +msgid "Also adding the status dependency field {0}" +msgstr "Također se dodaje polje statusne zavisnosti {0}" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Alternative Email ID" +msgstr "Alternativni ID e-pošte" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Always add \"Draft\" Heading for printing draft documents" +msgstr "Uvijek dodajte naslov \"Nacrt\" za štampanje nacrta dokumenata" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Always use this email address as sender address" +msgstr "Uvijek koristite ovu adresu e-pošte kao adresu pošiljaoca" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Always use this name as sender name" +msgstr "Uvijek koristite ovo ime kao ime pošiljaoca" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Amend" +msgstr "Izmijeniti" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Amend" +msgstr "Izmijeniti" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Amend" +msgstr "Izmijeniti" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgctxt "Amended Document Naming Settings" +msgid "Amend Counter" +msgstr "Brojač izmjena" + +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Amend Counter" +msgstr "Brojač izmjena" + +#. Name of a DocType +#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgid "Amended Document Naming Settings" +msgstr "Izmijenjene postavke imenovanja dokumenata" + +#. Label of a Section Break field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Amended Documents" +msgstr "Izmijenjeni dokumenti" + +#. Label of a Link field in DocType 'Personal Data Download Request' +#: website/doctype/personal_data_download_request/personal_data_download_request.json +msgctxt "Personal Data Download Request" +msgid "Amended From" +msgstr "Izmijenjeno od" + +#. Label of a Link field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Amended From" +msgstr "Izmijenjeno od" + +#: public/js/frappe/form/save.js:12 +msgctxt "Freeze message while amending a document" +msgid "Amending" +msgstr "Izmjena" + +#. Label of a Table field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Amendment Naming Override" +msgstr "Zaobiđi izmjenu imenovanja" + +#: core/doctype/document_naming_settings/document_naming_settings.py:207 +msgid "Amendment naming rules updated." +msgstr "Ažurirana su pravila za imenovanje dopuna." + +#: public/js/frappe/ui/toolbar/toolbar.js:297 +msgid "An error occurred while setting Session Defaults" +msgstr "Došlo je do greške prilikom postavljanja zadanih postavki sesije" + +#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" +msgstr "Datoteka ikone s nastavkom .ico. Trebala bi biti 16 x 16 px. Generirano pomoću generatora favicona. [favicon-generator.org]" + +#: templates/includes/oauth_confirmation.html:35 +msgid "An unexpected error occurred while authorizing {}." +msgstr "Došlo je do neočekivane greške prilikom autorizacije {}." + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Analytics" +msgstr "Analitika" + +#: public/js/frappe/ui/filters/filter.js:35 +msgid "Ancestors Of" +msgstr "Porijeklom od" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Annual" +msgstr "Godišnji" + +#. Label of a Code field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Anonymization Matrix" +msgstr "Anonimizacijska matrica" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Anonymous" +msgstr "Anoniman" + +#: public/js/frappe/request.js:186 +msgid "Another transaction is blocking this one. Please try again in a few seconds." +msgstr "Druga transakcija blokira ovu. Molimo pokušajte ponovo za nekoliko sekundi." + +#: model/rename_doc.py:374 +msgid "Another {0} with name {1} exists, select another name" +msgstr "Još jedan {0} s imenom {1} postoji, odaberite drugo ime" + +#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +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 "Mogu se koristiti bilo koji jezici štampača zasnovani na stringovima. Pisanje neobrađenih naredbi zahtijeva poznavanje izvornog jezika štampača koji obezbjeđuje proizvođač štampača. Molimo pogledajte priručnik za programere koji ste dobili od proizvođača štampača o tome kako napisati svoje izvorne komande. Ove komande se prikazuju na strani servera koristeći Jinja Template Language." + +#: 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 a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "App" +msgstr "Aplikacija" + +#. Label of a Data field in DocType 'Website Theme Ignore App' +#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgctxt "Website Theme Ignore App" +msgid "App" +msgstr "Aplikacija" + +#. Label of a Data field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "App Access Key" +msgstr "Ključ za pristup aplikaciji" + +#: integrations/doctype/dropbox_settings/dropbox_settings.js:22 +msgid "App Access Key and/or Secret Key are not present." +msgstr "Ključ za pristup aplikaciji i/ili tajni ključ nisu prisutni." + +#. Label of a Data field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "App Client ID" +msgstr "ID klijenta aplikacije" + +#. Label of a Data field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "App Client Secret" +msgstr "Tajna klijenta aplikacije" + +#. Label of a Data field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "App ID" +msgstr "ID aplikacije" + +#: public/js/frappe/ui/toolbar/navbar.html:8 +msgid "App Logo" +msgstr "Logotip aplikacije" + +#. Label of a Attach Image field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "App Logo" +msgstr "Logotip aplikacije" + +#: core/doctype/installed_applications/installed_applications.js:27 +msgid "App Name" +msgstr "Naziv aplikacije" + +#. Label of a Select field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "App Name" +msgstr "Naziv aplikacije" + +#. Label of a Data field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "App Name" +msgstr "Naziv aplikacije" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "App Name" +msgstr "Naziv aplikacije" + +#. Label of a Password field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "App Secret Key" +msgstr "Tajni ključ aplikacije" + +#: modules/utils.py:262 +msgid "App not found for module: {0}" +msgstr "Aplikacija nije pronađena za modul: {0}" + +#: __init__.py:1784 +msgid "App {0} is not installed" +msgstr "Aplikacija {0} nije instalirana" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Append Emails to Sent Folder" +msgstr "Dodaj e-poruke u mapu Poslano" + +#. Label of a Check field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Append Emails to Sent Folder" +msgstr "Dodaj e-poruke u mapu Poslano" + +#. Label of a Link field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Append To" +msgstr "Dodati u" + +#. Label of a Link field in DocType 'IMAP Folder' +#: email/doctype/imap_folder/imap_folder.json +msgctxt "IMAP Folder" +msgid "Append To" +msgstr "Dodati u" + +#: email/doctype/email_account/email_account.py:185 +msgid "Append To can be one of {0}" +msgstr "Dodati u može biti jedan od {0}" + +#. Description of the 'Append To' (Link) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +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 "Dodati kao komunikaciju ovom DocType-u (mora imati polja: \"Pošiljalac\" i \"Predmet\"). Ova polja se mogu definirati u odjeljku postavki e-pošte dodanog tipa dokumenta." + +#: core/doctype/user_permission/user_permission_list.js:105 +msgid "Applicable Document Types" +msgstr "Primjenjive vrste dokumenata" + +#. Label of a Link field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Applicable For" +msgstr "Primjenjivo za" + +#. Label of a Attach Image field in DocType 'Navbar Settings' +#. Label of a Section Break field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Application Logo" +msgstr "Logotip aplikacije" + +#. Label of a Data field in DocType 'Installed Application' +#: core/doctype/installed_application/installed_application.json +msgctxt "Installed Application" +msgid "Application Name" +msgstr "Naziv aplikacije" + +#. Label of a Data field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Application Name" +msgstr "Naziv aplikacije" + +#. Label of a Data field in DocType 'Installed Application' +#: core/doctype/installed_application/installed_application.json +msgctxt "Installed Application" +msgid "Application Version" +msgstr "Pokretanje aplikacije" + +#. Label of a Select field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Applied On" +msgstr "Primijenjeno na" + +#: public/js/frappe/list/list_view.js:1889 +msgctxt "Button in list view actions menu" +msgid "Apply Assignment Rule" +msgstr "Primijeni pravilo dodjele" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Apply Document Permissions" +msgstr "Primijeni dozvole za dokumente" + +#: public/js/frappe/ui/filters/filter_list.js:317 +msgid "Apply Filters" +msgstr "Primjeni filter" + +#. Label of a Check field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Apply Only Once" +msgstr "Primijeni samo jednom" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Apply Strict User Permissions" +msgstr "Primijeni stroge korisničke dozvole" + +#. Label of a Select field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Apply To" +msgstr "Primijeni na" + +#. Label of a Check field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Apply To All Document Types" +msgstr "Primijeni na sve vrste dokumenata" + +#. Label of a Link field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Apply User Permission On" +msgstr "Primijeni korisničku dozvolu uključeno" + +#. Description of the 'If user is the owner' (Check) field in DocType 'Custom +#. DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Apply this rule if the User is the Owner" +msgstr "Primijenite ovo pravilo ako je Korisnik vlasnik" + +#. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Apply this rule if the User is the Owner" +msgstr "Primijenite ovo pravilo ako je Korisnik vlasnik" + +#. Description of the 'Apply Only Once' (Check) field in DocType 'Energy Point +#. Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Apply this rule only once per document" +msgstr "Primijenite ovo pravilo samo jednom po dokumentu" + +#: core/doctype/user_permission/user_permission_list.js:75 +msgid "Apply to all Documents Types" +msgstr "Primijeni na sve vrste dokumenata" + +#: model/workflow.py:258 +msgid "Applying: {0}" +msgstr "Primjena: {0}" + +#: public/js/frappe/form/sidebar/review.js:62 +msgid "Appreciate" +msgstr "Uvažiti" + +#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Appreciation" +msgstr "Uvažavanje" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:111 +msgid "Approval Required" +msgstr "Potrebno je odobrenje" + +#: public/js/frappe/utils/number_systems.js:41 +msgctxt "Number system" +msgid "Ar" +msgstr "Ar" + +#: public/js/frappe/views/kanban/kanban_column.html:14 +msgid "Archive" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Archived" +msgstr "Arhivirano" + +#: public/js/frappe/views/kanban/kanban_board.bundle.js:495 +msgid "Archived Columns" +msgstr "Arhivirane kolone" + +#: public/js/frappe/list/list_view.js:1868 +msgid "Are you sure you want to clear the assignments?" +msgstr "" + +#: public/js/frappe/form/grid.js:269 +msgid "Are you sure you want to delete all rows?" +msgstr "Jeste li sigurni da želite izbrisati sve redove?" + +#: public/js/frappe/views/workspace/workspace.js:896 +msgid "Are you sure you want to delete page {0}?" +msgstr "Jeste li sigurni da želite izbrisati stranicu {0}?" + +#: public/js/frappe/form/sidebar/attachments.js:135 +msgid "Are you sure you want to delete the attachment?" +msgstr "Jeste li sigurni da želite izbrisati prilog?" + +#: public/js/frappe/web_form/web_form.js:185 +msgid "Are you sure you want to discard the changes?" +msgstr "Jeste li sigurni da želite odbaciti promjene?" + +#: public/js/frappe/views/reports/query_report.js:895 +msgid "Are you sure you want to generate a new report?" +msgstr "" + +#: public/js/frappe/form/toolbar.js:110 +msgid "Are you sure you want to merge {0} with {1}?" +msgstr "Jeste li sigurni da želite spojiti {0} sa {1}?" + +#: public/js/frappe/views/kanban/kanban_view.js:105 +msgid "Are you sure you want to proceed?" +msgstr "Jeste li sigurni da želite nastaviti?" + +#: core/doctype/rq_job/rq_job_list.js:25 +msgid "Are you sure you want to re-enable scheduler?" +msgstr "Jeste li sigurni da želite ponovo omogućiti planer?" + +#: core/doctype/communication/communication.js:163 +msgid "Are you sure you want to relink this communication to {0}?" +msgstr "Jeste li sigurni da želite ponovo povezati ovu komunikaciju sa {0}?" + +#: core/doctype/rq_job/rq_job_list.js:10 +msgid "Are you sure you want to remove all failed jobs?" +msgstr "Jeste li sigurni da želite ukloniti sve neuspjele poslove?" + +#: public/js/frappe/list/list_filter.js:109 +msgid "Are you sure you want to remove the {0} filter?" +msgstr "Jeste li sigurni da želite ukloniti filter {0} ?" + +#: public/js/frappe/views/dashboard/dashboard_view.js:267 +msgid "Are you sure you want to reset all customizations?" +msgstr "Jeste li sigurni da želite poništiti sve prilagodbe?" + +#: workflow/doctype/workflow/workflow.js:125 +msgid "Are you sure you want to save this document?" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:60 +msgid "Are you sure you want to send this newsletter now?" +msgstr "Jeste li sigurni da sada želite poslati ovaj bilten?" + +#: core/doctype/document_naming_rule/document_naming_rule.js:16 +#: core/doctype/user_permission/user_permission_list.js:165 +msgid "Are you sure?" +msgstr "Da li ste sigurni?" + +#. Label of a Code field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Arguments" +msgstr "Argumenti" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Arial" +msgstr "Arial" + +#: 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 "" + +#: desk/form/assign_to.py:104 +msgid "As document sharing is disabled, please give them the required permissions before assigning." +msgstr "Budući da je dijeljenje dokumenata onemogućeno, dajte im potrebna dopuštenja prije dodjele." + +#: 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 "Prema vašem zahtjevu, vaš račun i podaci na {0} povezani sa e-poštom {1} su trajno izbrisani" + +#. Label of a Code field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Assign Condition" +msgstr "Dodijeli uslov" + +#: public/js/frappe/form/sidebar/assign_to.js:163 +msgid "Assign To" +msgstr "Dodijeli" + +#: public/js/frappe/list/list_view.js:1850 +msgctxt "Button in list view actions menu" +msgid "Assign To" +msgstr "Dodijeli" + +#. Label of a Section Break field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Assign To Users" +msgstr "Dodijeli korisnicima" + +#: public/js/frappe/form/sidebar/assign_to.js:232 +msgid "Assign a user" +msgstr "Dodijelite korisnika" + +#: automation/doctype/assignment_rule/assignment_rule.js:52 +msgid "Assign one by one, in sequence" +msgstr "Dodijeli jedan po jedan, redom" + +#: public/js/frappe/form/sidebar/assign_to.js:154 +msgid "Assign to me" +msgstr "Dodijeli meni" + +#: automation/doctype/assignment_rule/assignment_rule.js:53 +msgid "Assign to the one who has the least assignments" +msgstr "Dodijelite onome ko ima najmanje zadataka" + +#: automation/doctype/assignment_rule/assignment_rule.js:54 +msgid "Assign to the user set in this field" +msgstr "Dodijelite skupu korisnika u ovom polju" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Assigned" +msgstr "Dodijeljeno" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Assigned" +msgstr "Dodijeljeno" + +#: desk/report/todo/todo.py:41 +msgid "Assigned By" +msgstr "Dodijelio" + +#. Label of a Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Assigned By" +msgstr "Dodijelio" + +#. Label of a Read Only field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Assigned By Full Name" +msgstr "Dodijelio punim imenom" + +#: model/meta.py:55 public/js/frappe/form/templates/form_sidebar.html:48 +#: public/js/frappe/list/list_sidebar_group_by.js:71 +#: public/js/frappe/model/meta.js:207 public/js/frappe/model/model.js:126 +#: public/js/frappe/views/interaction.js:82 +msgid "Assigned To" +msgstr "Dodijeljeno" + +#: desk/report/todo/todo.py:40 +msgid "Assigned To/Owner" +msgstr "Dodijeljeno/Vlasnik" + +#: public/js/frappe/form/sidebar/assign_to.js:241 +msgid "Assigning..." +msgstr "Dodjela..." + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Assignment" +msgstr "Zadatak" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Assignment Completed" +msgstr "Zadatak je završen" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Assignment Completed" +msgstr "Zadatak je završen" + +#. Label of a Section Break field in DocType 'Assignment Rule' +#. Label of a Table field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Assignment Days" +msgstr "Dana dodijeljeno" + +#. Name of a DocType +#: automation/doctype/assignment_rule/assignment_rule.json +msgid "Assignment Rule" +msgstr "Pravilo dodjele" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Assignment Rule" +msgid "Assignment Rule" +msgstr "Pravilo dodjele" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Assignment Rule" +msgstr "Pravilo dodjele" + +#. Label of a Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Assignment Rule" +msgstr "Pravilo dodjele" + +#. Name of a DocType +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgid "Assignment Rule Day" +msgstr "Dan pravila dodjele" + +#. Name of a DocType +#: automation/doctype/assignment_rule_user/assignment_rule_user.json +msgid "Assignment Rule User" +msgstr "Korisnik pravila dodjele" + +#: automation/doctype/assignment_rule/assignment_rule.py:54 +msgid "Assignment Rule is not allowed on {0} document type" +msgstr "Pravilo dodjele nije dozvoljeno na {0} tipu dokumenta" + +#. Label of a Section Break field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Assignment Rules" +msgstr "Pravila dodjele" + +#: desk/doctype/notification_log/notification_log.py:157 +msgid "Assignment Update on {0}" +msgstr "Ažuriranje dodjele {0}" + +#: desk/form/assign_to.py:75 +msgid "Assignment for {0} {1}" +msgstr "Dodjela za {0} {1}" + +#: desk/doctype/todo/todo.py:62 +msgid "Assignment of {0} removed by {1}" +msgstr "Dodjela {0} je uklonjena od strane {1}" + +#: public/js/frappe/form/sidebar/assign_to.js:227 +msgid "Assignments" +msgstr "Dodjele" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Assignments" +msgstr "Dodjele" + +#: public/js/frappe/form/grid_row.js:650 +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." + +#: website/doctype/web_form/web_form.js:73 +msgid "At least one field is required in Web Form Fields Table" +msgstr "" + +#: core/doctype/data_export/data_export.js:44 +msgid "At least one field of Parent Document Type is mandatory" +msgstr "" + +#: public/js/frappe/form/controls/attach.js:5 +msgid "Attach" +msgstr "Priloži" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Attach" +msgstr "Priloži" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Attach" +msgstr "Priloži" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Attach" +msgstr "Priloži" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Attach" +msgstr "Priloži" + +#: public/js/frappe/views/communication.js:143 +msgid "Attach Document Print" +msgstr "Priložite štampanje dokumenta" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Attach Image" +msgstr "Priložite sliku" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Attach Image" +msgstr "Priložite sliku" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Attach Image" +msgstr "Priložite sliku" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Attach Image" +msgstr "Priložite sliku" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Attach Image" +msgstr "Priložite sliku" + +#. Label of a Attach field in DocType 'Package Import' +#: core/doctype/package_import/package_import.json +msgctxt "Package Import" +msgid "Attach Package" +msgstr "Priložite paket" + +#. Label of a Check field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Attach Print" +msgstr "Priloži štampanje" + +#: website/doctype/website_slideshow/website_slideshow.js:8 +msgid "Attach files / urls and add in table." +msgstr "Priložite datoteke / Url-ove i dodajte u tabelu." + +#. Label of a Code field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Attached File" +msgstr "Priložena datoteka" + +#. Label of a Link field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Attached To DocType" +msgstr "U prilogu DocType" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Attached To Field" +msgstr "U prilogu polja" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Attached To Name" +msgstr "Priloženo imenu" + +#: core/doctype/file/file.py:140 +msgid "Attached To Name must be a string or an integer" +msgstr "Priloženo imenu mora biti niz ili cijeli broj" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Attachment" +msgstr "Prilog" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Attachment" +msgstr "Prilog" + +#. Label of a Attach field in DocType 'Newsletter Attachment' +#: email/doctype/newsletter_attachment/newsletter_attachment.json +msgctxt "Newsletter Attachment" +msgid "Attachment" +msgstr "Prilog" + +#. Label of a Int field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Attachment Limit (MB)" +msgstr "Ograničenje priloga (MB)" + +#. Label of a Int field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Attachment Limit (MB)" +msgstr "Ograničenje priloga (MB)" + +#: core/doctype/file/file.py:321 +#: public/js/frappe/form/sidebar/attachments.js:36 +msgid "Attachment Limit Reached" +msgstr "Dostignuto ograničenje priloga" + +#. Label of a HTML field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Attachment Link" +msgstr "Link priloga" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Attachment Removed" +msgstr "Prilog uklonjen" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Attachment Removed" +msgstr "Prilog uklonjen" + +#: core/doctype/file/utils.py:37 +#: email/doctype/newsletter/templates/newsletter.html:47 +#: public/js/frappe/form/templates/form_sidebar.html:65 +#: website/doctype/web_form/templates/web_form.html:103 +msgid "Attachments" +msgstr "Prilozi" + +#. Label of a Code field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Attachments" +msgstr "Prilozi" + +#. Label of a Table field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Attachments" +msgstr "Prilozi" + +#: public/js/frappe/form/print_utils.js:89 +msgid "Attempting Connection to QZ Tray..." +msgstr "Pokušaj povezivanja na QZ Tray..." + +#: public/js/frappe/form/print_utils.js:105 +msgid "Attempting to launch QZ Tray..." +msgstr "Pokušaj pokretanja QZ Tray..." + +#. Label of a Table field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Audience" +msgstr "Publika" + +#. Name of a report +#: custom/report/audit_system_hooks/audit_system_hooks.json +msgid "Audit System Hooks" +msgstr "Kuke (hooks) za sistem revizije" + +#. Name of a DocType +#: core/doctype/audit_trail/audit_trail.json +msgid "Audit Trail" +msgstr "Revizijski trag" + +#. Label of a Code field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Auth URL Data" +msgstr "Auth URL podaci" + +#. Label of a Card Break in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgid "Authentication" +msgstr "Autentifikacija" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Authentication" +msgstr "Autentifikacija" + +#. Label of a Section Break field in DocType 'Push Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "Authentication" +msgstr "Autentifikacija" + +#: www/qrcode.html:19 +msgid "Authentication Apps you can use are: " +msgstr "Aplikacije za autentifikaciju koje možete koristiti su: " + +#: email/doctype/email_account/email_account.py:312 +msgid "Authentication failed while receiving emails from Email Account: {0}." +msgstr "Autentifikacija nije uspjela prilikom primanja e-poruka sa naloga e-pošte: {0}." + +#. Label of a Data field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Author" +msgstr "Autor" + +#. Label of a Password field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Authorization Code" +msgstr "Autorizacijski kod" + +#. Label of a Password field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Authorization Code" +msgstr "Autorizacijski kod" + +#. Label of a Data field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Authorization Code" +msgstr "Autorizacijski kod" + +#. Label of a Data field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Authorization Code" +msgstr "Autorizacijski kod" + +#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Authorization Code" +msgstr "Autorizacijski kod" + +#. Label of a Small Text field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Authorization URI" +msgstr "URI autorizacije" + +#: templates/includes/oauth_confirmation.html:32 +msgid "Authorization error for {}." +msgstr "Greška autorizacije za {}." + +#. Label of a Button field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Authorize API Access" +msgstr "Autoriziraj pristup API-ju" + +#. Label of a Button field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Authorize API Indexing Access" +msgstr "Autorizirajte pristup API indeksiranju" + +#. Label of a Button field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Authorize Google Calendar Access" +msgstr "Autoriziraj pristup Google kalendaru" + +#. Label of a Button field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Authorize Google Contacts Access" +msgstr "Autoriziraj pristup Google kontaktima" + +#. Label of a Button field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Authorize Google Drive Access" +msgstr "Autoriziraj pristup Google disku" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Authorize URL" +msgstr "Autoriziraj URL" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Authorized" +msgstr "Autoriziran" + +#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Auto" +msgstr "Automatski" + +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgctxt "OAuth Provider Settings" +msgid "Auto" +msgstr "Automatski" + +#. Name of a DocType +#: email/doctype/auto_email_report/auto_email_report.json +msgid "Auto Email Report" +msgstr "Automatski izvještaj e-poštom" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Auto Email Report" +msgid "Auto Email Report" +msgstr "Automatski izvještaj e-poštom" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Auto Name" +msgstr "Automatski naziv" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Auto Name" +msgstr "Automatski naziv" + +#. Name of a DocType +#: automation/doctype/auto_repeat/auto_repeat.json +#: public/js/frappe/utils/common.js:442 +msgid "Auto Repeat" +msgstr "Automatsko ponavljanje" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Auto Repeat" +msgid "Auto Repeat" +msgstr "Automatsko ponavljanje" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Auto Repeat" +msgstr "Automatsko ponavljanje" + +#. Name of a DocType +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgid "Auto Repeat Day" +msgstr "Dan automatskog ponavljanja" + +#: automation/doctype/auto_repeat/auto_repeat.py:159 +msgid "Auto Repeat Day{0} {1} has been repeated." +msgstr "Dan automatskog ponavljanja{0} {1} je ponovljen." + +#: automation/doctype/auto_repeat/auto_repeat.py:437 +msgid "Auto Repeat Document Creation Failed" +msgstr "Automatsko ponavljanje kreiranja dokumenta nije uspjelo" + +#: automation/doctype/auto_repeat/auto_repeat.js:115 +msgid "Auto Repeat Schedule" +msgstr "Raspored automatskog ponavljanja" + +#: public/js/frappe/utils/common.js:434 +msgid "Auto Repeat created for this document" +msgstr "Automatsko ponavljanje kreirano za ovaj dokument" + +#: automation/doctype/auto_repeat/auto_repeat.py:440 +msgid "Auto Repeat failed for {0}" +msgstr "Automatsko ponavljanje nije uspjelo za {0}" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Auto Reply" +msgstr "Automatski odgovor" + +#. Label of a Text Editor field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Auto Reply Message" +msgstr "Poruka sa automatskim odgovorom" + +#: automation/doctype/assignment_rule/assignment_rule.py:175 +msgid "Auto assignment failed: {0}" +msgstr "Automatsko dodjeljivanje nije uspjelo: {0}" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Auto follow documents that are assigned to you" +msgstr "Automatsko praćenje dokumenata koji su vam dodijeljeni" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Auto follow documents that are shared with you" +msgstr "Automatsko praćenje dokumenata koji se dijele sa vama" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Auto follow documents that you Like" +msgstr "Automatsko praćenje dokumenata koji vam se sviđaju" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Auto follow documents that you comment on" +msgstr "Automatsko praćenje dokumenata koje komentarišete" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Auto follow documents that you create" +msgstr "Automatsko praćenje dokumenata koje kreirate" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Autocomplete" +msgstr "Automatsko dovršavanje" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Autocomplete" +msgstr "Automatsko dovršavanje" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Autocomplete" +msgstr "Automatsko dovršavanje" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Autoincrement" +msgstr "Autoinkrement" + +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Automated Message" +msgstr "Automatska poruka" + +#: public/js/frappe/ui/theme_switcher.js:69 +msgid "Automatic" +msgstr "Automatsko" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Automatic" +msgstr "Automatsko" + +#: email/doctype/email_account/email_account.py:706 +msgid "Automatic Linking can be activated only for one Email Account." +msgstr "Automatsko povezivanje se može aktivirati samo za jedan nalog e-pošte." + +#: email/doctype/email_account/email_account.py:700 +msgid "Automatic Linking can be activated only if Incoming is enabled." +msgstr "Automatsko povezivanje može se aktivirati samo ako je omogućeno Dolazno." + +#. Description of a DocType +#: automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + +#. Label of a Int field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Automatically delete account within (hours)" +msgstr "Automatski obrišite račun u roku od (sati)" + +#. Label of a Card Break in the Tools Workspace +#: automation/workspace/tools/tools.json +msgid "Automation" +msgstr "Automatizacija" + +#. Label of a Attach Image field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Avatar" +msgstr "Avatar" + +#: public/js/frappe/form/controls/password.js:89 +#: public/js/frappe/ui/group_by/group_by.js:21 +msgid "Average" +msgstr "Prosjek" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Average" +msgstr "Prosjek" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Average" +msgstr "Prosjek" + +#: public/js/frappe/ui/group_by/group_by.js:330 +msgid "Average of {0}" +msgstr "Prosjek {0}" + +#: utils/password_strength.py:130 +msgid "Avoid dates and years that are associated with you." +msgstr "Izbjegavajte datume i godine koji su povezani s vama." + +#: utils/password_strength.py:124 +msgid "Avoid recent years." +msgstr "Izbjegavajte posljednje godine." + +#: utils/password_strength.py:117 +msgid "Avoid sequences like abc or 6543 as they are easy to guess" +msgstr "Izbjegavajte nizove poput abc ili 6543 jer ih je lako pogoditi" + +#: utils/password_strength.py:124 +msgid "Avoid years that are associated with you." +msgstr "Izbjegavajte godine koje su povezane s vama." + +#. Label of a Check field in DocType 'User Email' +#: core/doctype/user_email/user_email.json +msgctxt "User Email" +msgid "Awaiting Password" +msgstr "Čeka se lozinka" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Awaiting password" +msgstr "Čeka se lozinka" + +#: public/js/frappe/widgets/onboarding_widget.js:200 +msgid "Awesome Work" +msgstr "Sjajan posao" + +#: public/js/frappe/widgets/onboarding_widget.js:358 +msgid "Awesome, now try making an entry yourself" +msgstr "Sjajno, sada pokušajte sami napraviti unos" + +#: 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' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B0" +msgstr "B0" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B1" +msgstr "B1" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B10" +msgstr "B10" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B2" +msgstr "B2" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B3" +msgstr "B3" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B4" +msgstr "B4" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B5" +msgstr "B5" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B6" +msgstr "B6" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B7" +msgstr "B7" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B8" +msgstr "B8" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "B9" +msgstr "B9" + +#: public/js/frappe/views/communication.js:79 +msgid "BCC" +msgstr "BCC" + +#. Label of a Code field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "BCC" +msgstr "BCC" + +#. Label of a Code field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "BCC" +msgstr "BCC" + +#: public/js/frappe/widgets/onboarding_widget.js:186 +msgid "Back" +msgstr "" + +#: templates/pages/integrations/gcalendar-success.html:13 +msgid "Back to Desk" +msgstr "" + +#: www/404.html:20 +msgid "Back to Home" +msgstr "" + +#: www/login.html:181 www/login.html:212 +msgid "Back to Login" +msgstr "Nazad na prijavu" + +#. Label of a Color field in DocType 'Social Link Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "Background Color" +msgstr "Boja pozadine" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Background Color" +msgstr "Boja pozadine" + +#. Label of a Attach Image field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Background Image" +msgstr "Pozadinska slika" + +#: public/js/frappe/ui/toolbar/toolbar.js:153 +msgid "Background Jobs" +msgstr "Poslovi u pozadini" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "RQ Job" +msgid "Background Jobs" +msgstr "Poslovi u pozadini" + +#. Label of a Autocomplete field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Background Jobs Queue" +msgstr "" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Background Workers" +msgstr "Radnici iz pozadine" + +#: integrations/doctype/google_drive/google_drive.py:170 +msgid "Backing up Data." +msgstr "" + +#: integrations/doctype/google_drive/google_drive.js:32 +msgid "Backing up to Google Drive." +msgstr "Izrada sigurnosne kopije na Google disku." + +#. Label of a Card Break in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgid "Backup" +msgstr "Sigurnosna kopija" + +#. Label of a Section Break field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Backup Details" +msgstr "Detalji sigurnosne kopije" + +#: desk/page/backups/backups.js:26 +msgid "Backup Encryption Key" +msgstr "Ključ za šifriranje rezervne kopije" + +#. Label of a Check field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Backup Files" +msgstr "Datoteke sigurnosne kopije" + +#. Label of a Data field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Backup Folder ID" +msgstr "ID fascikle rezervne kopije" + +#. Label of a Data field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Backup Folder Name" +msgstr "Naziv fascikle sigurnosne kopije" + +#. Label of a Select field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Backup Frequency" +msgstr "Učestalost sigurnosnih kopija" + +#. Label of a Select field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Backup Frequency" +msgstr "Učestalost sigurnosnih kopija" + +#: desk/page/backups/backups.py:98 +msgid "Backup job is already queued. You will receive an email with the download link" +msgstr "Posao sigurnosne kopije je već u redu čekanja. Primit ćete e-poruku s linkom za preuzimanje" + +#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup +#. Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Backup public and private files along with the database." +msgstr "Napravite sigurnosnu kopiju javnih i privatnih datoteka zajedno s bazom podataka." + +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Backups" +msgstr "Sigurnosne kopije" + +#: core/doctype/scheduled_job_type/scheduled_job_type.py:63 +msgid "Bad Cron Expression" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Banker's Rounding" +msgstr "Bankarsko zaokruživanje" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Banker's Rounding (legacy)" +msgstr "Bankarsko zaokruživanje (zastarjelo)" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Banner" +msgstr "Baner" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Banner HTML" +msgstr "Baner HTML" + +#. Label of a Attach Image field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Banner Image" +msgstr "Slika banera" + +#. Label of a Attach Image field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Banner Image" +msgstr "Slika banera" + +#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Banner is above the Top Menu Bar." +msgstr "Baner je iznad gornje trake menija." + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Bar" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Barcode" +msgstr "Barkod" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Barcode" +msgstr "Barkod" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Barcode" +msgstr "Barkod" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Base Distinguished Name (DN)" +msgstr "Osnovno razlikovno ime (DN)" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Base URL" +msgstr "Osnovni URL" + +#: printing/page/print/print.js:273 printing/page/print/print.js:327 +msgid "Based On" +msgstr "Na osnovu" + +#. Label of a Link field in DocType 'Language' +#: core/doctype/language/language.json +msgctxt "Language" +msgid "Based On" +msgstr "Na osnovu" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Based on Field" +msgstr "Na osnovu polja" + +#. Label of a Link field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Based on Permissions For User" +msgstr "Na osnovu dozvola za korisnika" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Basic" +msgstr "Osnovno" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Basic Info" +msgstr "Osnovne informacije" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Cancel" +msgstr "Prije otkazivanja" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Delete" +msgstr "Prije brisanja" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Insert" +msgstr "Prije umetanja" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Rename" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Save" +msgstr "Prije spremanja" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Save (Submitted Document)" +msgstr "Prije spremanja (Podnesen dokument)" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Submit" +msgstr "Prije podnošenja" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Validate" +msgstr "Prije potvrde" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Beginner" +msgstr "Početnik" + +#: public/js/frappe/form/link_selector.js:29 +msgid "Beginning with" +msgstr "Počevši od" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Beta" +msgstr "Beta" + +#: utils/password_strength.py:73 +msgid "Better add a few more letters or another word" +msgstr "Bolje dodajte još nekoliko slova ili drugu riječ" + +#: public/js/frappe/ui/filters/filter.js:27 +msgid "Between" +msgstr "Između" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Billing" +msgstr "Naplata" + +#: public/js/frappe/form/templates/contact_list.html:21 +msgid "Billing Contact" +msgstr "" + +#. Label of a Small Text field in DocType 'About Us Team Member' +#: website/doctype/about_us_team_member/about_us_team_member.json +msgctxt "About Us Team Member" +msgid "Bio" +msgstr "Bio" + +#. Label of a Small Text field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Bio" +msgstr "Bio" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Bio" +msgstr "Bio" + +#. Label of a Date field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Birth Date" +msgstr "Datum rođenja" + +#: public/js/frappe/data_import/data_exporter.js:41 +msgid "Blank Template" +msgstr "Praznan nacrt" + +#. Name of a DocType +#: core/doctype/block_module/block_module.json +msgid "Block Module" +msgstr "Blok modul" + +#. Label of a Table field in DocType 'Module Profile' +#: core/doctype/module_profile/module_profile.json +msgctxt "Module Profile" +msgid "Block Modules" +msgstr "Blok moduli" + +#. Label of a Table field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Block Modules" +msgstr "Blok moduli" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Blocked" +msgstr "Blokirano" + +#. Label of a Card Break in the Website Workspace +#: website/doctype/blog_post/blog_post.py:239 +#: website/doctype/blog_post/templates/blog_post.html:13 +#: website/doctype/blog_post/templates/blog_post_list.html:2 +#: website/doctype/blog_post/templates/blog_post_list.html:11 +#: website/workspace/website/website.json +msgid "Blog" +msgstr "Blog" + +#. Name of a DocType +#: website/doctype/blog_category/blog_category.json +msgid "Blog Category" +msgstr "Kategorija bloga" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Blog Category" +msgid "Blog Category" +msgstr "Kategorija bloga" + +#. Label of a Link field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Blog Category" +msgstr "Kategorija bloga" + +#. Label of a Small Text field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Blog Intro" +msgstr "Blog uvod" + +#. Label of a Small Text field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Blog Introduction" +msgstr "Blog predstavljanje" + +#. Name of a DocType +#: website/doctype/blog_post/blog_post.json +msgid "Blog Post" +msgstr "Blog post" + +#. Linked DocType in Blog Category's connections +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Blog Post" +msgstr "Blog post" + +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Blog Post" +msgid "Blog Post" +msgstr "Blog post" + +#. Linked DocType in Blogger's connections +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Blog Post" +msgstr "Blog post" + +#. Name of a DocType +#: website/doctype/blog_settings/blog_settings.json +msgid "Blog Settings" +msgstr "Postavke bloga" + +#. Label of a Data field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Blog Title" +msgstr "Naslov bloga" + +#. Name of a role +#. Name of a DocType +#: website/doctype/blog_category/blog_category.json +#: website/doctype/blog_post/blog_post.json +#: website/doctype/blog_settings/blog_settings.json +#: website/doctype/blogger/blogger.json +msgid "Blogger" +msgstr "Bloger" + +#. Label of a Link field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Blogger" +msgstr "Bloger" + +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Blogger" +msgid "Blogger" +msgstr "Bloger" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Blogger" +msgstr "Bloger" + +#. Subtitle of the Module Onboarding 'Website' +#: website/module_onboarding/website/website.json +msgid "Blogs, Website View Tracking, and more." +msgstr "Blogovi, praćenje pregleda web stranice i još mnogo toga." + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Blue" +msgstr "Plavo" + +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Blue" +msgstr "Plavo" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Bold" +msgstr "Podebljano" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Bold" +msgstr "Podebljano" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Bold" +msgstr "Podebljano" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Bot" +msgstr "Bot" + +#: printing/page/print_format_builder/print_format_builder.js:126 +msgid "Both DocType and Name required" +msgstr "Potrebni su i DocType i naziv" + +#: templates/includes/login/login.js:97 +msgid "Both login and password required" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Bottom" +msgstr "Dno" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Bottom Center" +msgstr "Dolje u sredini" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Bottom Center" +msgstr "Dolje u sredini" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Bottom Left" +msgstr "Dolje lijevo" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Bottom Right" +msgstr "Dolje desno" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Bottom Right" +msgstr "Dolje desno" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Bounced" +msgstr "Odbijen" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Brand" +msgstr "Robna marka" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Brand HTML" +msgstr "HTML robne marke" + +#. Label of a Attach Image field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Brand Image" +msgstr "Slika robe marke" + +#. Label of a Attach Image field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Brand Logo" +msgstr "Logo robne marke" + +#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +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 "Robna marka je ono što se pojavljuje u gornjem lijevom uglu alatne trake. Ako je slika, ima li prozirnu pozadinu i koristite <img /> oznaku. Neka veličina bude 200 px x 30 px" + +#. Label of a Code field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Breadcrumbs" +msgstr "Mrvice hljeba" + +#. Label of a Code field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Breadcrumbs" +msgstr "Mrvice hljeba" + +#: website/doctype/blog_post/templates/blog_post_list.html:18 +#: website/doctype/blog_post/templates/blog_post_list.html:21 +msgid "Browse by category" +msgstr "Pregledaj po kategoriji" + +#. Label of a Check field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Browse by category" +msgstr "Pregledaj po kategoriji" + +#: website/report/website_analytics/website_analytics.js:36 +msgid "Browser" +msgstr "Preglednik" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Browser" +msgstr "Preglednik" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Browser Version" +msgstr "Verzija preglednika" + +#: public/js/frappe/desk.js:19 +msgid "Browser not supported" +msgstr "Preglednik nije podržan" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Brute Force Security" +msgstr "Brute Force Security" + +#. Label of a Data field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Bucket Name" +msgstr "Naziv kante" + +#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:67 +msgid "Bucket {0} not found." +msgstr "Kanta {0} nije pronađena." + +#. Name of a Workspace +#: core/workspace/build/build.json +msgid "Build" +msgstr "Izdradnja" + +#: workflow/doctype/workflow/workflow_list.js:18 +msgid "Build {0}" +msgstr "Izgradnja {0}" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Bulk Actions" +msgstr "Grupne akcije" + +#: core/doctype/user_permission/user_permission_list.js:142 +msgid "Bulk Delete" +msgstr "Grupno brisanje" + +#: public/js/frappe/list/bulk_operations.js:291 +msgid "Bulk Edit" +msgstr "Grupno uređivanje" + +#: public/js/frappe/form/grid.js:1157 +msgid "Bulk Edit {0}" +msgstr "Grupno uređivanje {0}" + +#: public/js/frappe/list/bulk_operations.js:122 +msgid "Bulk PDF Export" +msgstr "" + +#. Name of a DocType +#: desk/doctype/bulk_update/bulk_update.json +msgid "Bulk Update" +msgstr "Grupno ažuriranje" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Bulk Update" +msgid "Bulk Update" +msgstr "Grupno ažuriranje" + +#: model/workflow.py:246 +msgid "Bulk approval only support up to 500 documents." +msgstr "Grupno odobrenje podržava samo do 500 dokumenata." + +#: desk/doctype/bulk_update/bulk_update.py:57 +msgid "Bulk operation is enqueued in background." +msgstr "Grupna operacija je stavljena u red čekanja u pozadini." + +#: desk/doctype/bulk_update/bulk_update.py:69 +msgid "Bulk operations only support up to 500 documents." +msgstr "Grupne operacije podržavaju samo do 500 dokumenata." + +#: model/workflow.py:236 +msgid "Bulk {0} is enqueued in background." +msgstr "Grupni {0} je stavljen u red čekanja u pozadini." + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Button" +msgstr "Dugme" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Button" +msgstr "Dugme" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Button" +msgstr "Dugme" + +#. Label of a Check field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Button Gradients" +msgstr "Gradijenti dugmeta" + +#. Label of a Check field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Button Rounded Corners" +msgstr "Dugme zaobljeni uglovi" + +#. Label of a Check field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Button Shadows" +msgstr "Sjene dugmeta" + +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "By \"Naming Series\" field" +msgstr "Po polju \"Imenovanje serije\"" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "By \"Naming Series\" field" +msgstr "Po polju \"Imenovanje serije\"" + +#: website/doctype/web_page/web_page.js:111 +#: 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 "Prema zadanim postavkama naslov se koristi kao meta naslov, dodavanje vrijednosti ovdje će ga nadjačati." + +#. Description of the 'Send Email for Successful Backup' (Check) field in +#. DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "By default, emails are only sent for failed backups." +msgstr "Prema zadanim postavkama e-poruke se šalju samo za neuspjele sigurnosne kopije." + +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "By fieldname" +msgstr "Po imenu polja" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "By fieldname" +msgstr "Po imenu polja" + +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "By script" +msgstr "Po skripti" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "By script" +msgstr "Po skripti" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled" +msgstr "Zaobilaženje provjere ograničene IP adrese ako je omogućena autentifikacija s dva faktora" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Bypass Two Factor Auth for users who login from restricted IP Address" +msgstr "Zaobilaženje dvofaktorske autentifikacije za korisnike koji se prijavljuju s ograničene IP adrese" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" +msgstr "Zaobilaženje provjere ograničene IP adrese ako je omogućena autentifikacija s dva faktora" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "C5E" +msgstr "C5E" + +#: templates/print_formats/standard_macros.html:212 +msgid "CANCELLED" +msgstr "OTKAZANO" + +#: public/js/frappe/views/communication.js:73 +msgid "CC" +msgstr "CC" + +#. Label of a Code field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "CC" +msgstr "CC" + +#. Label of a Code field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "CC" +msgstr "CC" + +#. Label of a Data field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "CMD" +msgstr "CMD" + +#: public/js/frappe/color_picker/color_picker.js:20 +msgid "COLOR PICKER" +msgstr "" + +#. Label of a Section Break field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "CSS" +msgstr "CSS" + +#. Label of a Code field in DocType 'Print Style' +#: printing/doctype/print_style/print_style.json +msgctxt "Print Style" +msgid "CSS" +msgstr "CSS" + +#. Label of a Code field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "CSS" +msgstr "CSS" + +#. Label of a Small Text field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "CSS Class" +msgstr "CSS klasa" + +#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour +#. Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "CSS selector for the element you want to highlight." +msgstr "CSS selektor za element koji želite da istaknete." + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "CSV" +msgstr "CSV" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "CSV" +msgstr "CSV" + +#. Label of a Data field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "CTA Label" +msgstr "CTA oznaka" + +#. Label of a Data field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "CTA URL" +msgstr "CTA URL" + +#: sessions.py:31 +msgid "Cache Cleared" +msgstr "Cache obrisan" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:181 +msgid "Calculate" +msgstr "Izračunaj" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Event" +msgid "Calendar" +msgstr "Kalendar" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Calendar" +msgstr "Kalendar" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Calendar" +msgstr "Kalendar" + +#. Label of a Data field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Calendar Name" +msgstr "Naziv kalendara" + +#. Name of a DocType +#: desk/doctype/calendar_view/calendar_view.json +msgid "Calendar View" +msgstr "Prikaz kalendara" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Calendar View" +msgstr "Prikaz kalendara" + +#: contacts/doctype/contact/contact.js:55 +msgid "Call" +msgstr "Poziv" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Call" +msgstr "Poziv" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Call To Action" +msgstr "Poziv na akciju" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Call To Action URL" +msgstr "URL poziva na akciju" + +#. Label of a Section Break field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Call to Action" +msgstr "Poziv na akciju" + +#. Label of a Small Text field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Callback Message" +msgstr "Poruka povratnog poziva" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Callback Title" +msgstr "Naslov povratnog poziva" + +#: public/js/frappe/ui/capture.js:334 +msgid "Camera" +msgstr "Kamera" + +#: public/js/frappe/utils/utils.js:1714 +#: website/report/website_analytics/website_analytics.js:39 +msgid "Campaign" +msgstr "Kampanja" + +#. Label of a Link field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Campaign" +msgstr "Kampanja" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Campaign" +msgstr "Kampanja" + +#. Label of a Small Text field in DocType 'Marketing Campaign' +#: website/doctype/marketing_campaign/marketing_campaign.json +msgctxt "Marketing Campaign" +msgid "Campaign Description (Optional)" +msgstr "Opis kampanje (Opcionalno)" + +#: public/js/frappe/form/templates/set_sharing.html:4 +#: public/js/frappe/form/templates/set_sharing.html:50 +msgid "Can Read" +msgstr "" + +#: public/js/frappe/form/templates/set_sharing.html:7 +#: public/js/frappe/form/templates/set_sharing.html:53 +msgid "Can Share" +msgstr "" + +#: public/js/frappe/form/templates/set_sharing.html:6 +#: public/js/frappe/form/templates/set_sharing.html:52 +msgid "Can Submit" +msgstr "" + +#: public/js/frappe/form/templates/set_sharing.html:5 +#: public/js/frappe/form/templates/set_sharing.html:51 +msgid "Can Write" +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:360 +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 DocTypeu." + +#: core/doctype/doctype/doctype.py:1112 +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 autoinkrementa samo kada nema podataka u tipu dokumenta" + +#. Description of the 'Apply User Permission On' (Link) field in DocType 'User +#. Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Can only list down the document types which has been linked to the User document type." +msgstr "Može navesti samo tipove dokumenata koji su povezani sa tipom korisničkog dokumenta." + +#: model/rename_doc.py:361 +msgid "Can't rename {0} to {1} because {0} doesn't exist." +msgstr "Ne mogu preimenovati {0} u {1} jer {0} ne postoji." + +#: core/doctype/doctype/doctype_list.js:130 +#: public/js/frappe/form/reminders.js:54 +msgid "Cancel" +msgstr "Otkaži" + +#: public/js/frappe/list/list_view.js:1959 +msgctxt "Button in list view actions menu" +msgid "Cancel" +msgstr "Otkaži" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Cancel" +msgstr "Otkaži" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Cancel" +msgstr "Otkaži" + +#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point +#. Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Cancel" +msgstr "Otkaži" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Cancel" +msgstr "Otkaži" + +#: public/js/frappe/ui/messages.js:68 +msgctxt "Secondary button in warning dialog" +msgid "Cancel" +msgstr "Otkaži" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Cancel" +msgstr "Otkaži" + +#: public/js/frappe/form/form.js:998 +msgid "Cancel All" +msgstr "Otkaži sve" + +#: public/js/frappe/form/form.js:985 +msgid "Cancel All Documents" +msgstr "Otkaži sve dokumente" + +#: email/doctype/newsletter/newsletter.js:132 +msgid "Cancel Scheduling" +msgstr "Otkaži planiranje" + +#: public/js/frappe/list/list_view.js:1964 +msgctxt "Title of confirmation dialog" +msgid "Cancel {0} documents?" +msgstr "Otkazati {0} dokumenta?" + +#: desk/form/save.py:59 public/js/frappe/model/indicator.js:78 +#: public/js/frappe/ui/filters/filter.js:496 +msgid "Cancelled" +msgstr "Otkazano" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Cancelled" +msgstr "Otkazano" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Cancelled" +msgstr "Otkazano" + +#. Option for the 'Status' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Cancelled" +msgstr "Otkazano" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Cancelled" +msgstr "Otkazano" + +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Cancelled" +msgstr "Otkazano" + +#: core/doctype/deleted_document/deleted_document.py:52 +msgid "Cancelled Document restored as Draft" +msgstr "Poništeni dokument vraćen kao Nacrt" + +#: public/js/frappe/form/save.js:13 +msgctxt "Freeze message while cancelling a document" +msgid "Cancelling" +msgstr "Otkazivanje" + +#: desk/form/linked_with.py:375 +msgid "Cancelling documents" +msgstr "Otkazivanje dokumenata" + +#: desk/doctype/bulk_update/bulk_update.py:92 +msgid "Cancelling {0}" +msgstr "Otkazivanje {0}" + +#: core/doctype/prepared_report/prepared_report.py:245 +msgid "Cannot Download Report due to insufficient permissions" +msgstr "Nije moguće preuzeti izvještaj zbog nedovoljnih dozvola" + +#: client.py:461 +msgid "Cannot Fetch Values" +msgstr "Nije moguće dohvatiti vrijednosti" + +#: core/page/permission_manager/permission_manager.py:155 +msgid "Cannot Remove" +msgstr "Nije moguće ukloniti" + +#: model/base_document.py:1059 +msgid "Cannot Update After Submit" +msgstr "Nije moguće ažurirati nakon podnošenja" + +#: core/doctype/file/file.py:574 +msgid "Cannot access file path {0}" +msgstr "Nije moguće pristupiti putanji datoteke {0}" + +#: public/js/workflow_builder/utils.js:183 +msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" +msgstr "Ne možete otkazati prije podnošenja prilikom tranzicije iz {0} stanja u {1} stanje" + +#: workflow/doctype/workflow/workflow.py:110 +msgid "Cannot cancel before submitting. See Transition {0}" +msgstr "Nije moguće otkazati prije podnošenja. Pogledajte Tranzicija {0}" + +#: public/js/frappe/list/bulk_operations.js:264 +msgid "Cannot cancel {0}." +msgstr "Nije moguće otkazati {0}." + +#: model/document.py:848 +msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" +msgstr "Nije moguće promijeniti status dokumenta iz 0 (Nacrt) u 2 (Otkazano)" + +#: model/document.py:862 +msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" +msgstr "Nije moguće promijeniti status dokumenta sa 1 (Podneseno) na 0 (Nacrt)" + +#: public/js/workflow_builder/utils.js:170 +msgid "Cannot change state of Cancelled Document ({0} State)" +msgstr "Nije moguće promijeniti stanje otkazanog dokumenta ({0} State)" + +#: 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}" + +#: core/doctype/doctype/doctype.py:1102 +msgid "Cannot change to/from autoincrement autoname in Customize Form" +msgstr "Nije moguće promijeniti u/iz autoinkrement autoimenovanje u Prilagodi obrazac" + +#: core/doctype/communication/communication.py:193 +msgid "Cannot create a {0} against a child document: {1}" +msgstr "Nije moguće kreirati {0} na podređenom dokumentu: {1}" + +#: desk/doctype/workspace/workspace.py:252 +msgid "Cannot create private workspace of other users" +msgstr "Nije moguće kreirati privatni radni prostor drugih korisnika" + +#: core/doctype/file/file.py:151 +msgid "Cannot delete Home and Attachments folders" +msgstr "Nije moguće izbrisati fascikle Početna i Prilozi" + +#: model/delete_doc.py:373 +msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" +msgstr "Nije moguće izbrisati ili otkazati jer je {0} {1} povezan sa {2} {3} {4}" + +#: desk/doctype/workspace/workspace.py:411 +msgid "Cannot delete private workspace of other users" +msgstr "Ne može se izbrisati privatni radni prostor drugih korisnika" + +#: desk/doctype/workspace/workspace.py:404 +msgid "Cannot delete public workspace without Workspace Manager role" +msgstr "Ne može se izbrisati javni radni prostor bez uloge upravitelja radnog prostora" + +#: custom/doctype/customize_form/customize_form.js:313 +msgid "Cannot delete standard action. You can hide it if you want" +msgstr "Nije moguće izbrisati standardnu radnju. Možete sakriti ako želite" + +#: custom/doctype/customize_form/customize_form.js:328 +msgid "Cannot delete standard document state." +msgstr "Nije moguće izbrisati standardno stanje dokumenta." + +#: custom/doctype/customize_form/customize_form.js:276 +msgid "Cannot delete standard field {0}. You can hide it instead." +msgstr "Nije moguće izbrisati standardno polje {0}. Umjesto toga, možete ga sakriti." + +#: custom/doctype/customize_form/customize_form.js:298 +msgid "Cannot delete standard link. You can hide it if you want" +msgstr "Nije moguće izbrisati standardnu vezu. Možete sakriti ako želite" + +#: custom/doctype/customize_form/customize_form.js:268 +msgid "Cannot delete system generated field {0}. You can hide it instead." +msgstr "Nije moguće izbrisati sistemski generirano polje {0}. Umjesto toga, možete ga sakriti." + +#: public/js/frappe/list/bulk_operations.js:185 +msgid "Cannot delete {0}" +msgstr "Nije moguće izbrisati {0}" + +#: utils/nestedset.py:296 +msgid "Cannot delete {0} as it has child nodes" +msgstr "Ne može se izbrisati {0} jer ima podređene čvorove" + +#: desk/doctype/dashboard/dashboard.py:48 +msgid "Cannot edit Standard Dashboards" +msgstr "Nije moguće uređivati standardne kontrolne ploče" + +#: email/doctype/notification/notification.py:121 +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" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:378 +msgid "Cannot edit Standard charts" +msgstr "Nije moguće uređivati standardne grafikone" + +#: core/doctype/report/report.py:72 +msgid "Cannot edit a standard report. Please duplicate and create a new report" +msgstr "Nije moguće uređivati standardni izvještaj. Molimo duplicirajte i kreirajte novi izvještaj" + +#: model/document.py:868 +msgid "Cannot edit cancelled document" +msgstr "Nije moguće uređivati otkazani dokument" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:378 +msgid "Cannot edit filters for standard charts" +msgstr "Nije moguće uređivati filtere za standardne grafikone" + +#: client.py:166 +msgid "Cannot edit standard fields" +msgstr "Nije moguće uređivati standardna polja" + +#: automation/doctype/auto_repeat/auto_repeat.py:125 +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" + +#: core/doctype/file/file.py:249 +msgid "Cannot find file {} on disk" +msgstr "Nije moguće pronaći datoteku {} na disku" + +#: core/doctype/file/file.py:520 +msgid "Cannot get file contents of a Folder" +msgstr "Nije moguće dobiti sadržaj fascikle" + +#: printing/page/print/print.js:824 +msgid "Cannot have multiple printers mapped to a single print format." +msgstr "Nije moguće imati više štampača mapiranih u jedan format štampanja." + +#: model/document.py:936 +msgid "Cannot link cancelled document: {0}" +msgstr "Nije moguće povezati otkazani dokument: {0}" + +#: model/mapper.py:181 +msgid "Cannot map because following condition fails:" +msgstr "Nije moguće mapirati jer sljedeći uslov nije ispunjen:" + +#: core/doctype/data_import/importer.py:921 +msgid "Cannot match column {0} with any field" +msgstr "Nije moguće uskladiti kolonu {0} ni sa jednim poljem" + +#: public/js/frappe/form/grid_row.js:172 +msgid "Cannot move row" +msgstr "Nije moguće pomjeriti red" + +#: public/js/frappe/views/reports/report_view.js:860 +msgid "Cannot remove ID field" +msgstr "Nije moguće ukloniti ID polje" + +#: core/page/permission_manager/permission_manager.py:132 +msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" +msgstr "" + +#: email/doctype/notification/notification.py:137 +msgid "Cannot set Notification on Document Type {0}" +msgstr "Nije moguće postaviti Obavijest o vrsti dokumenta {0}" + +#: core/doctype/docshare/docshare.py:67 +msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable" +msgstr "Ne može se dijeliti {0} s dozvolom za podnošenje jer tip dokumenta {1} nije za podnošenje" + +#: public/js/frappe/list/bulk_operations.js:261 +msgid "Cannot submit {0}." +msgstr "Nije moguće podnijeti {0}." + +#: desk/doctype/workspace/workspace.py:345 +msgid "Cannot update private workspace of other users" +msgstr "Nije moguće ažurirati privatni radni prostor drugih korisnika" + +#: desk/doctype/bulk_update/bulk_update.js:26 +#: public/js/frappe/list/bulk_operations.js:336 +msgid "Cannot update {0}" +msgstr "Nije moguće ažurirati {0}" + +#: model/db_query.py:1103 +msgid "Cannot use sub-query in order by" +msgstr "Nije moguće koristiti podupit po redoslijedu" + +#: model/db_query.py:1121 +msgid "Cannot use {0} in order/group by" +msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po" + +#: public/js/frappe/list/bulk_operations.js:267 +msgid "Cannot {0} {1}." +msgstr "Ne može {0} {1}." + +#: utils/password_strength.py:181 +msgid "Capitalization doesn't help very much." +msgstr "Upotreba velikih slova ne pomaže mnogo." + +#: public/js/frappe/ui/capture.js:294 +msgid "Capture" +msgstr "" + +#. Label of a Link field in DocType 'Number Card Link' +#: desk/doctype/number_card_link/number_card_link.json +msgctxt "Number Card Link" +msgid "Card" +msgstr "Kartica" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Card Break" +msgstr "Prijelom kartice" + +#: public/js/frappe/views/reports/query_report.js:261 +msgid "Card Label" +msgstr "Oznaka kartice" + +#: public/js/frappe/widgets/widget_dialog.js:266 +msgid "Card Links" +msgstr "Veze kartice" + +#. Label of a Table field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Cards" +msgstr "Kartice" + +#: public/js/frappe/views/interaction.js:72 +msgid "Category" +msgstr "Kategorija" + +#. Label of a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Category" +msgstr "Kategorija" + +#. Label of a Link field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Category" +msgstr "Kategorija" + +#. Label of a Text field in DocType 'Help Category' +#: website/doctype/help_category/help_category.json +msgctxt "Help Category" +msgid "Category Description" +msgstr "Opis kategorije" + +#. Label of a Data field in DocType 'Help Category' +#: website/doctype/help_category/help_category.json +msgctxt "Help Category" +msgid "Category Name" +msgstr "Naziv kategorije" + +#: utils/data.py:1469 +msgid "Cent" +msgstr "Cent" + +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Center" +msgstr "Centar" + +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Center" +msgstr "Centar" + +#: 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 "" + +#: core/report/transaction_log_report/transaction_log_report.py:82 +msgid "Chain Integrity" +msgstr "Integritet lanca" + +#. Label of a Small Text field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Chaining Hash" +msgstr "Lančani hash" + +#: public/js/frappe/form/templates/form_sidebar.html:11 +#: tests/test_translate.py:97 +msgid "Change" +msgstr "Promjeni" + +#: tests/test_translate.py:98 +msgctxt "Coins" +msgid "Change" +msgstr "Promjeni" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Change Label (via Custom Translation)" +msgstr "Promjena oznake (putem prilagođenog prijevoda)" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Change Password" +msgstr "Promjeni lozinku" + +#: public/js/print_format_builder/print_format_builder.bundle.js:27 +msgid "Change Print Format" +msgstr "Promjena formata štampanja" + +#: desk/page/user_profile/user_profile_controller.js:51 +#: desk/page/user_profile/user_profile_controller.js:59 +msgid "Change User" +msgstr "Promijeni korisnika" + +#. Description of the 'Update Series Counter' (Section Break) field in DocType +#. 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Change the starting / current sequence number of an existing series.
\n\n" +"Warning: Incorrectly updating counters can prevent documents from getting created. " +msgstr "Promijenite početni/tekući redni broj postojeće serije.
\n\n" +"Upozorenje: Neispravno ažuriranje brojača može spriječiti kreiranje dokumenata. " + +#: email/doctype/email_domain/email_domain.js:5 +msgid "Changing any setting will reflect on all the email accounts associated with this domain." +msgstr "Promjena bilo koje postavke odrazit će se na sve račune e-pošte povezane s ovom domenom." + +#: core/doctype/system_settings/system_settings.js:62 +msgid "Changing rounding method on site with data can result in unexpected behaviour." +msgstr "Promjena metode zaokruživanja na mjestu sa podacima može rezultirati neočekivanim ponašanjem." + +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Channel" +msgstr "Kanal" + +#. Label of a Link field in DocType 'Dashboard Chart Link' +#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgctxt "Dashboard Chart Link" +msgid "Chart" +msgstr "Grafikon" + +#. Label of a Code field in DocType 'Dashboard Settings' +#: desk/doctype/dashboard_settings/dashboard_settings.json +msgctxt "Dashboard Settings" +msgid "Chart Configuration" +msgstr "Konfiguracija grafikona" + +#. Label of a Data field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Chart Name" +msgstr "Naziv grafikona" + +#. Label of a Link field in DocType 'Workspace Chart' +#: desk/doctype/workspace_chart/workspace_chart.json +msgctxt "Workspace Chart" +msgid "Chart Name" +msgstr "Naziv grafikona" + +#. Label of a Code field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Chart Options" +msgstr "Opcije grafikona" + +#. Label of a Section Break field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Chart Options" +msgstr "Opcije grafikona" + +#. Label of a Link field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Chart Source" +msgstr "Izvor grafikona" + +#: public/js/frappe/views/reports/report_view.js:474 +msgid "Chart Type" +msgstr "Vrsta grafikona" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Chart Type" +msgstr "Vrsta grafikona" + +#. Label of a Table field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Charts" +msgstr "Grafikoni" + +#. Label of a Table field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Charts" +msgstr "Grafikoni" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Chat" +msgstr "Chat" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Check" +msgstr "Provjeri" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Check" +msgstr "Provjeri" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Check" +msgstr "Provjeri" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Check" +msgstr "Provjeri" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Check" +msgstr "Provjeri" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Check" +msgstr "Provjeri" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Check" +msgstr "Provjeri" + +#: integrations/doctype/webhook/webhook.py:98 +msgid "Check Request URL" +msgstr "Provjeri URL zahtjeva" + +#: email/doctype/newsletter/newsletter.js:18 +msgid "Check broken links" +msgstr "Provjeri neispravne veze" + +#: printing/page/print_format_builder/print_format_builder_column_selector.html:1 +msgid "Check columns to select, drag to set order." +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.py:443 +msgid "Check the Error Log for more information: {0}" +msgstr "Provjerite dnevnik grešaka za više informacija: {0}" + +#: website/doctype/website_settings/website_settings.js:147 +msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it." +msgstr "Označite ovo ako ne želite da se korisnici registriraju za račun na vašoj web lokaciji. Korisnici neće dobiti pristup stolu osim ako izričito ne navedete." + +#. Description of the 'User must always select' (Check) field in DocType +#. 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this." +msgstr "Označite ovo ako želite prisiliti korisnika da odabere seriju prije spremanja. Ako označite ovo, neće biti zadane postavke." + +#: email/doctype/newsletter/newsletter.js:20 +msgid "Checking broken links..." +msgstr "Provjera neispravnih veza..." + +#: public/js/frappe/desk.js:214 +msgid "Checking one moment" +msgstr "Provjeravam trenutak" + +#: website/doctype/website_settings/website_settings.js:140 +msgid "Checking this will enable tracking page views for blogs, web pages, etc." +msgstr "Označavanjem ove opcije omogućit ćete praćenje pregleda stranica za blogove, web stranice itd." + +#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in +#. DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Checking this will hide custom doctypes and reports cards in Links section" +msgstr "Označavanjem ovoga ćete sakriti prilagođene tipove dokumenata i izvještaje u odjeljku Veze" + +#: website/doctype/web_page/web_page.js:78 +msgid "Checking this will publish the page on your website and it'll be visible to everyone." +msgstr "Ako ovo potvrdite, stranica će biti objavljena na vašoj web stranici i bit će vidljiva svima." + +#: website/doctype/web_page/web_page.js:104 +msgid "Checking this will show a text area where you can write custom javascript that will run on this page." +msgstr "Ako ovo potvrdite, prikazat će se tekstualno područje u kojem možete napisati prilagođeni javascript koji će se izvoditi na ovoj stranici." + +#. Label of a Data field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Checksum Version" +msgstr "Verzija kontrolne sume" + +#: www/list.py:85 +msgid "Child DocTypes are not allowed" +msgstr "Podređeni DocTypes nisu dozvoljeni" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Child Doctype" +msgstr "Podređeni Doctype" + +#: core/doctype/doctype/doctype.py:1584 +msgid "Child Table {0} for field {1}" +msgstr "Podređena tabela {0} za polje {1}" + +#: core/doctype/doctype/doctype_list.js:52 +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "Podređene tabele su prikazane kao mreža u drugim DocTypes" + +#. Description of the 'Is Child Table' (Check) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "Podređene tabele su prikazane kao mreža u drugim DocTypes" + +#: public/js/frappe/widgets/widget_dialog.js:653 +msgid "Choose Existing Card or create New Card" +msgstr "Odaberite postojeću karticu ili kreirajte novu karticu" + +#: public/js/frappe/views/workspace/workspace.js:1396 +msgid "Choose a block or continue typing" +msgstr "Odaberite blok ili nastavite tipkati" + +#: public/js/frappe/form/controls/color.js:5 +msgid "Choose a color" +msgstr "Odaberi boju" + +#: public/js/frappe/form/controls/icon.js:5 +msgid "Choose an icon" +msgstr "Odaberi ikonu" + +#. Description of the 'Two Factor Authentication method' (Select) field in +#. DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Choose authentication method to be used by all users" +msgstr "Odaberite način autentifikacije koji će koristiti svi korisnici" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "City" +msgstr "Grad" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "City/Town" +msgstr "Grad/Mjesto" + +#: core/doctype/recorder/recorder_list.js:12 +#: public/js/frappe/form/controls/attach.js:16 +msgid "Clear" +msgstr "Očisti" + +#: public/js/frappe/views/communication.js:415 +msgid "Clear & Add Template" +msgstr "Očisti i dodaj šablon" + +#: public/js/frappe/views/communication.js:102 +msgid "Clear & Add template" +msgstr "Očisti i dodaj šablon" + +#: public/js/frappe/list/list_view.js:1865 +msgctxt "Button in list view actions menu" +msgid "Clear Assignment" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:284 +msgid "Clear Cache and Reload" +msgstr "Očistite predmemoriju i ponovno učitajte" + +#: core/doctype/error_log/error_log_list.js:12 +msgid "Clear Error Logs" +msgstr "Obriši evidenciju grešaka" + +#: public/js/frappe/ui/filters/filter_list.js:298 +msgid "Clear Filters" +msgstr "" + +#. Label of a Int field in DocType 'Logs To Clear' +#: core/doctype/logs_to_clear/logs_to_clear.json +msgctxt "Logs To Clear" +msgid "Clear Logs After (days)" +msgstr "Očisti zapisnike nakon (dana)" + +#: core/doctype/user_permission/user_permission_list.js:144 +msgid "Clear User Permissions" +msgstr "Obriši korisničke dozvole" + +#: public/js/frappe/views/communication.js:416 +msgid "Clear the email message and add the template" +msgstr "Obrišite poruku e-pošte i dodajte šablon" + +#: website/doctype/web_page/web_page.py:215 +msgid "Clearing end date, as it cannot be in the past for published pages." +msgstr "Brisanje datuma završetka jer ne može biti u prošlosti za objavljene stranice." + +#: public/js/frappe/views/dashboard/dashboard_view.js:193 +msgid "Click On Customize to add your first widget" +msgstr "" + +#: website/doctype/web_form/templates/web_form.html:144 +msgid "Click here" +msgstr "Klikni ovdje" + +#: public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Click here to post bugs and suggestions" +msgstr "" + +#: email/doctype/newsletter/newsletter.py:335 +msgid "Click here to verify" +msgstr "Kliknite ovdje za potvrdu" + +#: integrations/doctype/google_drive/google_drive.js:47 +msgid "Click on Authorize Google Drive Access to authorize Google Drive Access." +msgstr "Kliknite Autoriziraj pristup Google disku da biste autorizirali pristup Google disku." + +#: templates/emails/login_with_email_link.html:19 +msgid "Click on the button to log in to {0}" +msgstr "Kliknite na dugme da se prijavite na {0}" + +#: templates/emails/data_deletion_approval.html:2 +msgid "Click on the link below to approve the request" +msgstr "Kliknite poveznicu ispod da biste odobrili zahtjev" + +#: templates/emails/new_user.html:7 +msgid "Click on the link below to complete your registration and set a new password" +msgstr "Kliknite na poveznicu ispod kako biste dovršili registraciju i postavili novu lozinku" + +#: templates/emails/download_data.html:3 +msgid "Click on the link below to download your data" +msgstr "Kliknite na poveznicu u nastavku za preuzimanje vaših podataka" + +#: templates/emails/delete_data_confirmation.html:4 +msgid "Click on the link below to verify your request" +msgstr "Kliknite poveznicu ispod kako biste potvrdili svoj zahtjev" + +#: integrations/doctype/google_calendar/google_calendar.py:102 +#: integrations/doctype/google_contacts/google_contacts.py:41 +#: integrations/doctype/google_drive/google_drive.py:53 +#: website/doctype/website_settings/website_settings.py:161 +msgid "Click on {0} to generate Refresh Token." +msgstr "Kliknite na {0} za generiranje tokena osvježavanja." + +#: desk/doctype/dashboard_chart/dashboard_chart.js:315 +#: desk/doctype/number_card/number_card.js:215 +#: email/doctype/auto_email_report/auto_email_report.js:96 +#: website/doctype/web_form/web_form.js:236 +msgid "Click table to edit" +msgstr "Kliknite na tabelu za uređivanje" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: desk/doctype/number_card/number_card.js:396 +msgid "Click to Set Dynamic Filters" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: desk/doctype/number_card/number_card.js:270 +#: website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "" + +#: public/js/frappe/list/list_view.js:678 +msgid "Click to sort by {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Clicked" +msgstr "Kliknuto" + +#. Label of a Link field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Client" +msgstr "Klijent" + +#. Label of a Link field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Client" +msgstr "Klijent" + +#. Label of a Section Break field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Client Code" +msgstr "Klijentski kod" + +#. Label of a Section Break field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Client Credentials" +msgstr "Akreditivi klijenta" + +#. Label of a Section Break field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Client Credentials" +msgstr "Akreditivi klijenta" + +#. Label of a Data field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "Client ID" +msgstr "ID klijenta" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Client ID" +msgstr "ID klijenta" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Client Id" +msgstr "Id. klijenta" + +#. Label of a Section Break field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Client Information" +msgstr "Informacije o klijentu" + +#. Name of a DocType +#: custom/doctype/client_script/client_script.json +#: website/doctype/web_page/web_page.js:103 +msgid "Client Script" +msgstr "Skripta klijenta" + +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Client Script" +msgid "Client Script" +msgstr "Skripta klijenta" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Client Script" +msgstr "Skripta klijenta" + +#. Label of a Code field in DocType 'DocType Layout' +#: custom/doctype/doctype_layout/doctype_layout.json +msgctxt "DocType Layout" +msgid "Client Script" +msgstr "Skripta klijenta" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Client Script" +msgstr "Skripta klijenta" + +#. Label of a Code field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Client Script" +msgstr "Skripta klijenta" + +#. Label of a Password field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Client Secret" +msgstr "Tajna klijenta" + +#. Label of a Password field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "Client Secret" +msgstr "Tajna klijenta" + +#. Label of a Password field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Client Secret" +msgstr "Tajna klijenta" + +#. Label of a Section Break field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Client URLs" +msgstr "URL-ovi klijenata" + +#: core/doctype/communication/communication.js:39 desk/doctype/todo/todo.js:23 +#: public/js/frappe/ui/messages.js:243 website/js/bootstrap-4.js:24 +msgid "Close" +msgstr "Zatvori" + +#. Label of a Code field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Close Condition" +msgstr "Oslov za zatvaranje" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Closed" +msgstr "Zatvoreno" + +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Closed" +msgstr "Zatvoreno" + +#. Option for the 'Status' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Closed" +msgstr "Zatvoreno" + +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Closed" +msgstr "Zatvoreno" + +#: templates/discussions/comment_box.html:25 +#: templates/discussions/reply_section.html:53 +#: templates/discussions/topic_modal.html:11 +msgid "Cmd+Enter to add comment" +msgstr "Cmd+Enter za dodavanje komentara" + +#. Label of a Data field in DocType 'Country' +#: geo/doctype/country/country.json +msgctxt "Country" +msgid "Code" +msgstr "Kod" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Code" +msgstr "Kod" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Code" +msgstr "Kod" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Code" +msgstr "Kod" + +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Code" +msgstr "Kod" + +#. Label of a Data field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Code Challenge" +msgstr "Kod za izazov" + +#. Label of a Select field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Code challenge method" +msgstr "" + +#: public/js/frappe/form/form_tour.js:270 +#: public/js/frappe/widgets/base_widget.js:157 +msgid "Collapse" +msgstr "" + +#: public/js/frappe/form/controls/code.js:146 +msgctxt "Shrink code field." +msgid "Collapse" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1964 +#: public/js/frappe/views/treeview.js:121 +msgid "Collapse All" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Collapsible" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Collapsible" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Collapsible" +msgstr "" + +#. Label of a Code field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Collapsible Depends On" +msgstr "" + +#. Label of a Code field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Collapsible Depends On" +msgstr "" + +#. Label of a Code field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Collapsible Depends On (JS)" +msgstr "" + +#. Name of a DocType +#: public/js/frappe/views/reports/query_report.js:1154 +#: public/js/frappe/widgets/widget_dialog.js:544 +#: public/js/frappe/widgets/widget_dialog.js:696 +#: website/doctype/color/color.json +msgid "Color" +msgstr "" + +#. Label of a Color field in DocType 'Color' +#: website/doctype/color/color.json +msgctxt "Color" +msgid "Color" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Color" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Color" +msgstr "" + +#. Label of a Color field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Color" +msgstr "" + +#. Label of a Color field in DocType 'Dashboard Chart Field' +#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgctxt "Dashboard Chart Field" +msgid "Color" +msgstr "" + +#. Label of a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Color" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Color" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Color" +msgstr "" + +#. Label of a Select field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Color" +msgstr "" + +#. Label of a Color field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Color" +msgstr "" + +#. Label of a Color field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Color" +msgstr "" + +#. Label of a Color field in DocType 'Social Link Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "Color" +msgstr "" + +#. Label of a Color field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Color" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Color" +msgstr "" + +#. Label of a Color field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Color" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_column_selector.html:7 +msgid "Column" +msgstr "" + +#: desk/doctype/kanban_board/kanban_board.py:84 +msgid "Column {0} already exist." +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Column Break" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Column Break" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Column Break" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Column Break" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Column Break" +msgstr "" + +#: core/doctype/data_export/exporter.py:140 +msgid "Column Labels:" +msgstr "" + +#: core/doctype/data_export/exporter.py:25 +msgid "Column Name" +msgstr "" + +#. Label of a Data field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Column Name" +msgstr "" + +#: desk/doctype/kanban_board/kanban_board.py:45 +msgid "Column Name cannot be empty" +msgstr "" + +#: public/js/frappe/form/grid_row.js:430 +msgid "Column Width" +msgstr "" + +#: public/js/frappe/form/grid_row.js:614 +msgid "Column width cannot be zero." +msgstr "" + +#: core/doctype/data_import/data_import.js:380 +msgid "Column {0}" +msgstr "" + +#. Label of a Int field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Columns" +msgstr "" + +#. Label of a Int field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Columns" +msgstr "" + +#. Label of a Int field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Columns" +msgstr "" + +#. Label of a Table field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Columns" +msgstr "" + +#. Label of a Section Break field in DocType 'Report' +#. Label of a Table field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Columns" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Columns / Fields" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:394 +msgid "Columns based on" +msgstr "" + +#: integrations/doctype/oauth_client/oauth_client.py:44 +msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Comm10E" +msgstr "" + +#. Name of a DocType +#: core/doctype/comment/comment.json core/doctype/version/version_view.html:3 +#: public/js/frappe/form/controls/comment.js:9 +#: public/js/frappe/form/sidebar/assign_to.js:210 +#: templates/includes/comments/comments.html:34 +msgid "Comment" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Comment" +msgstr "" + +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Comment" +msgstr "" + +#. Label of a Data field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Comment By" +msgstr "" + +#. Label of a Data field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Comment Email" +msgstr "" + +#. Label of a Select field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Comment Type" +msgstr "" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Comment Type" +msgstr "" + +#: desk/form/utils.py:58 +msgid "Comment can only be edited by the owner" +msgstr "" + +#. Label of a Int field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Comment limit" +msgstr "" + +#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Comment limit per hour" +msgstr "" + +#: model/meta.py:54 public/js/frappe/form/controls/comment.js:9 +#: public/js/frappe/model/meta.js:206 public/js/frappe/model/model.js:125 +#: website/doctype/web_form/templates/web_form.html:119 +msgid "Comments" +msgstr "" + +#. Description of the 'Timeline Field' (Data) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Comments and Communications will be associated with this linked document" +msgstr "" + +#: templates/includes/comments/comments.py:38 +msgid "Comments cannot have links or email addresses" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Commercial Rounding" +msgstr "Komercijalno zaokruživanje" + +#. Label of a Check field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Commit" +msgstr "Potvrdi" + +#. Label of a Check field in DocType 'Console Log' +#: desk/doctype/console_log/console_log.json +msgctxt "Console Log" +msgid "Committed" +msgstr "Potvrđeno" + +#: utils/password_strength.py:176 +msgid "Common names and surnames are easy to guess." +msgstr "Uobičajena imena i prezimena je lako pogoditi." + +#. Name of a DocType +#: core/doctype/communication/communication.json tests/test_translate.py:34 +#: tests/test_translate.py:102 +msgid "Communication" +msgstr "Komunikacija" + +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Communication" +msgstr "Komunikacija" + +#. Label of a Data field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Communication" +msgstr "Komunikacija" + +#. Label of a Link field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Communication" +msgstr "Komunikacija" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Communication" +msgstr "Komunikacija" + +#. Name of a DocType +#: core/doctype/communication_link/communication_link.json +msgid "Communication Link" +msgstr "Komunikacijski link" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Communication" +msgid "Communication Logs" +msgstr "Komunikacijski zapisnici" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Communication Type" +msgstr "Vrsta komunikacije" + +#: desk/page/leaderboard/leaderboard.js:112 +msgid "Company" +msgstr "Kompanija" + +#. Name of a DocType +#: website/doctype/company_history/company_history.json www/about.html:29 +msgid "Company History" +msgstr "Istorija kompanije" + +#. Label of a Text Editor field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Company Introduction" +msgstr "Predstavljanje kompanije" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Company Name" +msgstr "Naziv kompanije" + +#: core/doctype/server_script/server_script.js:14 +#: custom/doctype/client_script/client_script.js:54 +#: public/js/frappe/utils/diffview.js:28 +msgid "Compare Versions" +msgstr "Uporedite verzije" + +#: core/doctype/server_script/server_script.py:140 +msgid "Compilation warning" +msgstr "Upozorenje o kompilaciji" + +#: website/doctype/website_theme/website_theme.py:123 +msgid "Compiled Successfully" +msgstr "Uspješno kompajlirano" + +#: www/complete_signup.html:21 +msgid "Complete" +msgstr "Završeno" + +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Complete" +msgstr "Završeno" + +#: public/js/frappe/form/sidebar/assign_to.js:176 +msgid "Complete By" +msgstr "Dovršiti od" + +#: core/doctype/user/user.py:474 templates/emails/new_user.html:10 +msgid "Complete Registration" +msgstr "Završi registraciju" + +#: public/js/frappe/ui/slides.js:355 +msgctxt "Finish the setup wizard" +msgid "Complete Setup" +msgstr "" + +#: core/doctype/doctype/boilerplate/controller_list.html:31 utils/goal.py:117 +msgid "Completed" +msgstr "Završeno" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Completed" +msgstr "Završeno" + +#. Option for the 'Status' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Completed" +msgstr "Završeno" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Completed" +msgstr "Završeno" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Completed" +msgstr "Završeno" + +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Completed" +msgstr "Završeno" + +#. Label of a Link field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Completed By Role" +msgstr "Završeno od strane uloge" + +#. Label of a Link field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Completed By User" +msgstr "Završeno od strane korisnika" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Component" +msgstr "Komponenta" + +#: public/js/frappe/views/inbox/inbox_view.js:184 +msgid "Compose Email" +msgstr "Nova poruka e-pošte" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: desk/doctype/number_card/number_card.js:205 +#: desk/doctype/number_card/number_card.js:333 +#: website/doctype/web_form/web_form.js:197 +msgid "Condition" +msgstr "Uslov" + +#. Label of a Small Text field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Condition" +msgstr "Uslov" + +#. Label of a Select field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "Condition" +msgstr "Uslov" + +#. Label of a Code field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Condition" +msgstr "Uslov" + +#. Label of a Code field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Condition" +msgstr "Uslov" + +#. Label of a Data field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "Condition" +msgstr "Uslov" + +#. Label of a Small Text field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Condition" +msgstr "Uslov" + +#. Label of a Code field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Condition" +msgstr "Uslov" + +#. Label of a HTML field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Condition Description" +msgstr "Opis uslova" + +#. Label of a JSON field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Condition JSON" +msgstr "Uslov JSON" + +#. Label of a Table field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Conditions" +msgstr "Uslovi" + +#. Label of a Section Break field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Conditions" +msgstr "Uslovi" + +#. Label of a Section Break field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Configuration" +msgstr "Konfiguracija" + +#: public/js/frappe/views/reports/report_view.js:456 +msgid "Configure Chart" +msgstr "Konfiguriši grafikon" + +#: public/js/frappe/form/grid_row.js:382 +msgid "Configure Columns" +msgstr "Konfiguriši kolone" + +#: core/doctype/recorder/recorder_list.js:200 +msgid "Configure Recorder" +msgstr "" + +#. Description of the 'Amended Documents' (Section Break) field in DocType +#. 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Configure how amended documents will be named.
\n\n" +"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n" +"Default Naming will make the amended document to behave same as new documents." +msgstr "Konfigurišite kako će se izmijenjeni dokumenti imenovati.
\n\n" +"Zadano ponašanje je praćenje brojača izmjena koji dodaje broj na kraj izvornog naziva koji označava izmijenjenu verziju.
\n\n" +"Zadano imenovanje omogućit će da se izmijenjeni dokument ponaša isto kao novi dokumenti." + +#. Description of a DocType +#: core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: core/doctype/user/user.js:384 public/js/frappe/dom.js:332 +#: www/update-password.html:30 +msgid "Confirm" +msgstr "Potvrdi" + +#: public/js/frappe/ui/messages.js:31 +msgctxt "Title of confirmation dialog" +msgid "Confirm" +msgstr "Potvrdi" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:92 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:100 +msgid "Confirm Deletion of Account" +msgstr "Potvrdi brisanje računa" + +#: core/doctype/user/user.js:177 +msgid "Confirm New Password" +msgstr "Potvrdi novu lozinku" + +#: www/update-password.html:24 +msgid "Confirm Password" +msgstr "Potvrdi lozinku" + +#: templates/emails/data_deletion_approval.html:6 +#: templates/emails/delete_data_confirmation.html:7 +msgid "Confirm Request" +msgstr "Potvrdite zahtjev" + +#: email/doctype/newsletter/newsletter.py:330 +msgid "Confirm Your Email" +msgstr "Potvrdite svoju e-poštu" + +#. Label of a Link field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Confirmation Email Template" +msgstr "Šablon e-pošte za potvrdu" + +#: email/doctype/newsletter/newsletter.py:379 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:393 +msgid "Confirmed" +msgstr "Potvrđeno" + +#: public/js/frappe/widgets/onboarding_widget.js:530 +msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." +msgstr "" + +#: integrations/doctype/connected_app/connected_app.js:25 +msgid "Connect to {}" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/connected_app/connected_app.json +msgid "Connected App" +msgstr "" + +#. Label of a Link field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Connected App" +msgstr "" + +#. Label of a Link field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Connected App" +msgstr "" + +#. Label of a Link field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Connected User" +msgstr "" + +#: public/js/frappe/form/print_utils.js:95 +#: public/js/frappe/form/print_utils.js:119 +msgid "Connected to QZ Tray!" +msgstr "" + +#: public/js/frappe/request.js:34 +msgid "Connection Lost" +msgstr "" + +#: templates/pages/integrations/gcalendar-success.html:3 +msgid "Connection Success" +msgstr "" + +#: public/js/frappe/dom.js:433 +msgid "Connection lost. Some features might not work." +msgstr "" + +#: public/js/frappe/form/dashboard.js:54 +msgid "Connections" +msgstr "" + +#. Label of a Tab Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Connections" +msgstr "" + +#. Label of a Tab Break field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Connections" +msgstr "" + +#. Label of a Tab Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Connections" +msgstr "" + +#. Label of a Code field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Console" +msgstr "" + +#. Name of a DocType +#: desk/doctype/console_log/console_log.json +msgid "Console Log" +msgstr "" + +#: desk/doctype/console_log/console_log.py:24 +msgid "Console Logs can not be deleted" +msgstr "" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Constraints" +msgstr "" + +#. Name of a DocType +#: contacts/doctype/contact/contact.json +#: core/doctype/communication/communication.js:113 +msgid "Contact" +msgstr "" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Contact" +msgstr "" + +#. Label of a Section Break field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Contact Details" +msgstr "" + +#. Name of a DocType +#: contacts/doctype/contact_email/contact_email.json +msgid "Contact Email" +msgstr "" + +#. Label of a Table field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Contact Numbers" +msgstr "" + +#. Name of a DocType +#: contacts/doctype/contact_phone/contact_phone.json +msgid "Contact Phone" +msgstr "" + +#: integrations/doctype/google_contacts/google_contacts.py:291 +msgid "Contact Synced with Google Contacts." +msgstr "" + +#: www/contact.html:4 +msgid "Contact Us" +msgstr "" + +#. Name of a DocType +#: website/doctype/contact_us_settings/contact_us_settings.json +msgid "Contact Us Settings" +msgstr "" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Contact Us Settings" +msgid "Contact Us Settings" +msgstr "" + +#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us +#. Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." +msgstr "" + +#: public/js/frappe/utils/utils.js:1729 +#: website/report/website_analytics/website_analytics.js:41 +msgid "Content" +msgstr "" + +#. Label of a Text Editor field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Content" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Content" +msgstr "" + +#. Label of a Text Editor field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Content" +msgstr "" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Content" +msgstr "" + +#. Label of a Text Editor field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Content" +msgstr "" + +#. Label of a Tab Break field in DocType 'Web Page' +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Content" +msgstr "" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Content" +msgstr "" + +#. Label of a Long Text field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Content" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Content (HTML)" +msgstr "" + +#. Label of a Markdown Editor field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Content (Markdown)" +msgstr "" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Content Hash" +msgstr "" + +#. Label of a Select field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Content Type" +msgstr "" + +#. Label of a Select field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Content Type" +msgstr "" + +#. Label of a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Content Type" +msgstr "" + +#: desk/doctype/workspace/workspace.py:83 +msgid "Content data shoud be a list" +msgstr "" + +#: website/doctype/web_page/web_page.js:91 +msgid "Content type for building the page" +msgstr "" + +#. Label of a Data field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Context" +msgstr "" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Context" +msgstr "" + +#. Label of a Code field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Context Script" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:209 +#: public/js/frappe/widgets/onboarding_widget.js:237 +#: public/js/frappe/widgets/onboarding_widget.js:277 +#: public/js/frappe/widgets/onboarding_widget.js:317 +#: public/js/frappe/widgets/onboarding_widget.js:366 +#: public/js/frappe/widgets/onboarding_widget.js:388 +#: public/js/frappe/widgets/onboarding_widget.js:428 +#: public/js/frappe/widgets/onboarding_widget.js:536 +msgid "Continue" +msgstr "" + +#. Label of a Check field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Contributed" +msgstr "" + +#. Label of a Data field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Contribution Document Name" +msgstr "" + +#. Label of a Select field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Contribution Status" +msgstr "" + +#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected. " +msgstr "" + +#: public/js/frappe/utils/utils.js:1031 +msgid "Copied to clipboard." +msgstr "" + +#: website/doctype/web_form/web_form.js:29 +msgid "Copy Embed Code" +msgstr "" + +#: public/js/frappe/form/templates/timeline_message_box.html:83 +msgid "Copy Link" +msgstr "" + +#: public/js/frappe/request.js:615 +msgid "Copy error to clipboard" +msgstr "" + +#: public/js/frappe/form/toolbar.js:388 +msgid "Copy to Clipboard" +msgstr "" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Copyright" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:118 +msgid "Core DocTypes cannot be customized." +msgstr "" + +#: desk/doctype/global_search_settings/global_search_settings.py:36 +msgid "Core Modules {0} cannot be searched in Global Search." +msgstr "" + +#: email/smtp.py:78 +msgid "Could not connect to outgoing email server" +msgstr "" + +#: model/document.py:932 +msgid "Could not find {0}" +msgstr "" + +#: core/doctype/data_import/importer.py:883 +msgid "Could not map column {0} to field {1}" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:355 +msgid "Couldn't save, please check the data you have entered" +msgstr "" + +#: public/js/frappe/ui/group_by/group_by.js:19 +#: public/js/frappe/ui/group_by/group_by.js:316 +#: workflow/doctype/workflow/workflow.js:162 +msgid "Count" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Count" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Count" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:538 +msgid "Count Customizations" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:523 +msgid "Count Filter" +msgstr "" + +#. Label of a Section Break field in DocType 'Workspace Shortcut' +#. Label of a Code field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Count Filter" +msgstr "" + +#. Label of a Int field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Counter" +msgstr "" + +#. Name of a DocType +#: geo/doctype/country/country.json +msgid "Country" +msgstr "" + +#. Label of a Link field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Country" +msgstr "" + +#. Label of a Link field in DocType 'Address Template' +#: contacts/doctype/address_template/address_template.json +msgctxt "Address Template" +msgid "Country" +msgstr "" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Country" +msgstr "" + +#. Label of a Link field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Country" +msgstr "" + +#: utils/__init__.py:116 +msgid "Country Code Required" +msgstr "" + +#. Label of a Data field in DocType 'Country' +#: geo/doctype/country/country.json +msgctxt "Country" +msgid "Country Name" +msgstr "" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "County" +msgstr "" + +#: public/js/frappe/utils/number_systems.js:23 +#: public/js/frappe/utils/number_systems.js:45 +msgctxt "Number system" +msgid "Cr" +msgstr "" + +#: core/doctype/communication/communication.js:117 +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: public/js/frappe/form/reminders.js:49 +#: public/js/frappe/views/file/file_view.js:112 +#: public/js/frappe/views/interaction.js:18 +#: public/js/frappe/views/reports/query_report.js:1186 +#: public/js/frappe/views/workspace/workspace.js:1228 +#: workflow/page/workflow_builder/workflow_builder.js:46 +msgid "Create" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Create" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Create" +msgstr "" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Create" +msgstr "" + +#: core/doctype/doctype/doctype_list.js:102 +msgid "Create & Continue" +msgstr "" + +#. Title of an Onboarding Step +#: website/onboarding_step/create_blogger/create_blogger.json +msgid "Create Blogger" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:186 +#: public/js/frappe/views/reports/query_report.js:231 +msgid "Create Card" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:284 +#: public/js/frappe/views/reports/query_report.js:1113 +msgid "Create Chart" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Create Contacts from Incoming Emails" +msgstr "" + +#. Title of an Onboarding Step +#: custom/onboarding_step/custom_field/custom_field.json +msgid "Create Custom Fields" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:936 +msgid "Create Duplicate" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Create Entry" +msgstr "" + +#. Label of a Check field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Create Log" +msgstr "" + +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:41 +#: public/js/frappe/views/treeview.js:361 +#: workflow/page/workflow_builder/workflow_builder.js:41 +msgid "Create New" +msgstr "" + +#: public/js/frappe/list/list_view.js:485 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "" + +#: core/doctype/doctype/doctype_list.js:100 +msgid "Create New DocType" +msgstr "" + +#: public/js/frappe/list/list_view_select.js:204 +msgid "Create New Kanban Board" +msgstr "" + +#: core/doctype/user/user.js:256 +msgid "Create User Email" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:476 +msgid "Create Workspace" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_start.html:16 +msgid "Create a New Format" +msgstr "" + +#: public/js/frappe/form/reminders.js:9 +msgid "Create a Reminder" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:537 +msgid "Create a new ..." +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:156 +msgid "Create a new record" +msgstr "" + +#: public/js/frappe/form/controls/link.js:292 +#: public/js/frappe/form/controls/link.js:294 +#: public/js/frappe/form/link_selector.js:139 +#: public/js/frappe/list/list_view.js:474 +#: public/js/frappe/web_form/web_form_list.js:225 +msgid "Create a new {0}" +msgstr "" + +#: www/login.html:142 +msgid "Create a {0} Account" +msgstr "" + +#. Description of a DocType +#: email/doctype/newsletter/newsletter.json +msgid "Create and send emails to a specific group of subscribers periodically." +msgstr "" + +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:34 +msgid "Create or Edit Print Format" +msgstr "" + +#: workflow/page/workflow_builder/workflow_builder.js:34 +msgid "Create or Edit Workflow" +msgstr "" + +#: public/js/frappe/list/list_view.js:477 +msgid "Create your first {0}" +msgstr "" + +#: workflow/doctype/workflow/workflow.js:16 +msgid "Create your workflow visually using the Workflow Builder." +msgstr "" + +#: public/js/frappe/views/file/file_view.js:318 +msgid "Created" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Created" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Created" +msgstr "" + +#. Label of a Datetime field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Created At" +msgstr "" + +#: model/meta.py:51 public/js/frappe/list/list_sidebar_group_by.js:73 +#: public/js/frappe/model/meta.js:203 public/js/frappe/model/model.js:113 +msgid "Created By" +msgstr "" + +#: workflow/doctype/workflow/workflow.py:65 +msgid "Created Custom Field {0} in {1}" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:241 +#: email/doctype/notification/notification.js:30 model/meta.py:46 +#: public/js/frappe/model/meta.js:198 public/js/frappe/model/model.js:115 +#: public/js/frappe/views/dashboard/dashboard_view.js:478 +msgid "Created On" +msgstr "" + +#: public/js/frappe/desk.js:497 public/js/frappe/views/treeview.js:376 +msgid "Creating {0}" +msgstr "" + +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 +msgid "Creation of this document is only permitted in developer mode." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Criticism" +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:66 +msgid "Criticize" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Cron" +msgstr "" + +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Cron" +msgstr "" + +#. Label of a Data field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Cron Format" +msgstr "" + +#. Label of a Data field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Cron Format" +msgstr "" + +#: core/doctype/scheduled_job_type/scheduled_job_type.py:57 +msgid "Cron format is required for job types with Cron frequency." +msgstr "" + +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Down" +msgstr "" + +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Up" +msgstr "" + +#: templates/includes/comments/comments.html:32 +msgid "Ctrl+Enter to add comment" +msgstr "" + +#. Name of a DocType +#: desk/page/setup_wizard/setup_wizard.js:403 +#: geo/doctype/currency/currency.json +msgid "Currency" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Currency" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Currency" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Currency" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Currency" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Currency" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Currency" +msgstr "" + +#. Label of a Data field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Currency Name" +msgstr "" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Currency Precision" +msgstr "" + +#. Description of a DocType +#: geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Current" +msgstr "" + +#. Label of a Link field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Current Job ID" +msgstr "" + +#. Label of a Int field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Current Value" +msgstr "" + +#: public/js/frappe/form/workflow.js:45 +msgid "Current status" +msgstr "" + +#: public/js/frappe/form/form_viewers.js:5 +msgid "Currently Viewing" +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:77 +msgid "Currently you have {0} review points" +msgstr "" + +#: core/doctype/user_type/user_type_list.js:7 +#: public/js/frappe/form/reminders.js:20 +msgid "Custom" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Custom" +msgstr "" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Custom" +msgstr "" + +#. Label of a Check field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Custom" +msgstr "" + +#. Label of a Check field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Custom" +msgstr "" + +#. Label of a Check field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Custom" +msgstr "" + +#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point +#. Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Custom" +msgstr "" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Custom" +msgstr "" + +#. Label of a Check field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Custom" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Custom" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Custom" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Custom" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Custom" +msgstr "" + +#. Label of a Check field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Custom Base URL" +msgstr "" + +#. Label of a Link field in DocType 'Workspace Custom Block' +#: desk/doctype/workspace_custom_block/workspace_custom_block.json +msgctxt "Workspace Custom Block" +msgid "Custom Block Name" +msgstr "" + +#. Label of a Tab Break field in DocType 'Workspace' +#. Label of a Table field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Custom Blocks" +msgstr "" + +#. Label of a Code field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Custom CSS" +msgstr "" + +#. Label of a Code field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Custom CSS" +msgstr "" + +#. Label of a Section Break field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Custom Configuration" +msgstr "" + +#. Name of a DocType +#: core/doctype/custom_docperm/custom_docperm.json +msgid "Custom DocPerm" +msgstr "" + +#. Title of an Onboarding Step +#: custom/onboarding_step/custom_doctype/custom_doctype.json +msgid "Custom Document Types" +msgstr "" + +#. Label of a Table field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Custom Document Types (Select Permission)" +msgstr "" + +#: core/doctype/user_type/user_type.py:104 +msgid "Custom Document Types Limit Exceeded" +msgstr "" + +#: desk/desktop.py:485 +msgid "Custom Documents" +msgstr "" + +#. Name of a DocType +#: custom/doctype/custom_field/custom_field.json +msgid "Custom Field" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Custom Field" +msgid "Custom Field" +msgstr "" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Custom Field" +msgstr "" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Custom Field" +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:218 +msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." +msgstr "" + +#. Subtitle of the Module Onboarding 'Customization' +#: custom/module_onboarding/customization/customization.json +msgid "Custom Field, Custom Doctype, Naming Series, Role Permission, Workflow, Print Formats, Reports" +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:260 +msgid "Custom Fields can only be added to a standard DocType." +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:257 +msgid "Custom Fields cannot be added to core DocTypes." +msgstr "" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Custom Footer" +msgstr "" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Custom Format" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Custom Group Search" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:121 +msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:190 +#: printing/page/print_format_builder/print_format_builder.js:720 +msgid "Custom HTML" +msgstr "" + +#. Name of a DocType +#: desk/doctype/custom_html_block/custom_html_block.json +msgid "Custom HTML Block" +msgstr "" + +#. Label of a HTML field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Custom HTML Help" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:113 +msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered" +msgstr "" + +#. Label of a Data field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Custom Label" +msgstr "" + +#. Label of a Data field in DocType 'Web Form List Column' +#: website/doctype/web_form_list_column/web_form_list_column.json +msgctxt "Web Form List Column" +msgid "Custom Label" +msgstr "" + +#. Label of a Table field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Custom Menu Items" +msgstr "" + +#. Label of a Code field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Custom Options" +msgstr "" + +#. Label of a Code field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Custom Overrides" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Custom Report" +msgstr "" + +#: desk/desktop.py:486 +msgid "Custom Reports" +msgstr "" + +#. Name of a DocType +#: core/doctype/custom_role/custom_role.json +msgid "Custom Role" +msgstr "" + +#. Label of a Code field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Custom SCSS" +msgstr "" + +#. Label of a Section Break field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Custom Sidebar Menu" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Translation" +msgid "Custom Translation" +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:373 +msgid "Custom field renamed to {0} successfully." +msgstr "" + +#: core/doctype/doctype/doctype_list.js:82 +msgid "Custom?" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Custom?" +msgstr "" + +#. Label of a Check field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Custom?" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#. Title of the Module Onboarding 'Customization' +#: core/workspace/build/build.json +#: custom/module_onboarding/customization/customization.json +msgid "Customization" +msgstr "" + +#. Group in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Customization" +msgstr "" + +#. Group in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Customization" +msgstr "" + +#. Label of a Tab Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Customization" +msgstr "" + +#. Success message of the Module Onboarding 'Customization' +#: custom/module_onboarding/customization/customization.json +msgid "Customization onboarding is all done!" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:522 +msgid "Customizations Discarded" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:397 +msgid "Customizations Reset" +msgstr "" + +#: modules/utils.py:91 +msgid "Customizations for {0} exported to:
{1}" +msgstr "" + +#: printing/page/print/print.js:171 +#: public/js/frappe/form/templates/print_layout.html:39 +#: public/js/frappe/form/toolbar.js:527 +#: public/js/frappe/views/dashboard/dashboard_view.js:196 +msgid "Customize" +msgstr "" + +#: public/js/frappe/list/list_view.js:1710 +msgctxt "Button in list view menu" +msgid "Customize" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:89 +msgid "Customize Child Table" +msgstr "" + +#: public/js/frappe/views/dashboard/dashboard_view.js:37 +msgid "Customize Dashboard" +msgstr "" + +#. Name of a DocType +#: automation/doctype/auto_repeat/auto_repeat.js:33 +#: custom/doctype/customize_form/customize_form.json +#: public/js/frappe/views/kanban/kanban_view.js:340 +msgid "Customize Form" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Customize Form" +msgid "Customize Form" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:100 +msgid "Customize Form - {0}" +msgstr "" + +#. Name of a DocType +#: custom/doctype/customize_form_field/customize_form_field.json +msgid "Customize Form Field" +msgstr "" + +#. Title of an Onboarding Step +#: custom/onboarding_step/print_format/print_format.json +msgid "Customize Print Formats" +msgstr "" + +#: public/js/frappe/views/file/file_view.js:144 +msgid "Cut" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Cyan" +msgstr "" + +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Cyan" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "DELETE" +msgstr "" + +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "DELETE" +msgstr "" + +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "DESC" +msgstr "" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "DESC" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "DLE" +msgstr "" + +#: templates/print_formats/standard_macros.html:207 +msgid "DRAFT" +msgstr "" + +#: public/js/frappe/utils/common.js:398 +#: website/report/website_analytics/website_analytics.js:23 +msgid "Daily" +msgstr "" + +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Daily" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Daily" +msgstr "" + +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Daily" +msgstr "" + +#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox +#. Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Daily" +msgstr "" + +#. Option for the 'Point Allocation Periodicity' (Select) field in DocType +#. 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Daily" +msgstr "" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Daily" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Daily" +msgstr "" + +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Daily" +msgstr "" + +#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup +#. Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Daily" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Daily" +msgstr "" + +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Daily" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Daily" +msgstr "" + +#: templates/emails/upcoming_events.html:8 +msgid "Daily Event Digest is sent for Calendar Events where reminders are set." +msgstr "" + +#: desk/doctype/event/event.py:93 +msgid "Daily Events should finish on the Same Day." +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Daily Long" +msgstr "" + +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Daily Long" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Danger" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Dark" +msgstr "" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Dark Color" +msgstr "" + +#: public/js/frappe/ui/theme_switcher.js:65 +msgid "Dark Theme" +msgstr "" + +#. Name of a DocType +#: core/page/dashboard_view/dashboard_view.js:10 +#: desk/doctype/dashboard/dashboard.json +#: public/js/frappe/ui/toolbar/search_utils.js:562 +msgid "Dashboard" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Dashboard" +msgid "Dashboard" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Dashboard" +msgstr "" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Dashboard" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Dashboard" +msgstr "" + +#. Name of a DocType +#: desk/doctype/dashboard_chart/dashboard_chart.json +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 +msgid "Dashboard Chart" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Dashboard Chart" +msgid "Dashboard Chart" +msgstr "" + +#. Name of a DocType +#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgid "Dashboard Chart Field" +msgstr "" + +#. Name of a DocType +#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Dashboard Chart Link" +msgstr "" + +#. Name of a DocType +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Dashboard Chart Source" +msgstr "" + +#. Name of a role +#: desk/doctype/dashboard/dashboard.json +#: desk/doctype/dashboard_chart/dashboard_chart.json +#: desk/doctype/number_card/number_card.json +msgid "Dashboard Manager" +msgstr "" + +#. Label of a Data field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Dashboard Name" +msgstr "" + +#. Name of a DocType +#: desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Dashboard Settings" +msgstr "" + +#. Label of a Tab Break field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Dashboards" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: automation/workspace/tools/tools.json +msgid "Data" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Data" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Data" +msgstr "" + +#. Label of a Code field in DocType 'Deleted Document' +#: core/doctype/deleted_document/deleted_document.json +msgctxt "Deleted Document" +msgid "Data" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Data" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Data" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Data" +msgstr "" + +#. Label of a Long Text field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Data" +msgstr "" + +#. Label of a Code field in DocType 'Version' +#: core/doctype/version/version.json +msgctxt "Version" +msgid "Data" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Data" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Data" +msgstr "" + +#. Label of a Table field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Data" +msgstr "" + +#. Label of a Code field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Data" +msgstr "" + +#: public/js/frappe/form/controls/data.js:58 +msgid "Data Clipped" +msgstr "" + +#. Name of a DocType +#: core/doctype/data_export/data_export.json +msgid "Data Export" +msgstr "" + +#. Name of a DocType +#: core/doctype/data_import/data_import.json +msgid "Data Import" +msgstr "" + +#. Label of a Link field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Data Import" +msgstr "" + +#. Name of a DocType +#: core/doctype/data_import_log/data_import_log.json +msgid "Data Import Log" +msgstr "" + +#: core/doctype/data_export/exporter.py:174 +msgid "Data Import Template" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:610 +msgid "Data Too Long" +msgstr "" + +#: model/base_document.py:723 +msgid "Data missing in table" +msgstr "" + +#. Label of a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Database Engine" +msgstr "" + +#. Label of a Section Break field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Database Processes" +msgstr "" + +#: public/js/frappe/doctype/index.js:38 +msgid "Database Row Size Utilization" +msgstr "" + +#. Name of a report +#: core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json +msgid "Database Storage Usage By Tables" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:244 +msgid "Database Table Row Size Limit" +msgstr "" + +#: public/js/frappe/doctype/index.js:40 +msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." +msgstr "" + +#: desk/report/todo/todo.py:38 email/doctype/newsletter/newsletter.js:109 +#: public/js/frappe/views/interaction.js:80 +msgid "Date" +msgstr "" + +#. Label of a Datetime field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Date" +msgstr "" + +#. Label of a Datetime field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Date" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Date" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Date" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Date" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Date" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Date" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Date" +msgstr "" + +#. Label of a Data field in DocType 'Country' +#: geo/doctype/country/country.json +msgctxt "Country" +msgid "Date Format" +msgstr "" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Date Format" +msgstr "" + +#: desk/page/leaderboard/leaderboard.js:165 +msgid "Date Range" +msgstr "" + +#. Label of a Section Break field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "Date Range" +msgstr "" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Date and Number Format" +msgstr "" + +#: public/js/frappe/form/controls/date.js:164 +msgid "Date {0} must be in format: {1}" +msgstr "" + +#: utils/password_strength.py:129 +msgid "Dates are often easy to guess." +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Datetime" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Datetime" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Datetime" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Datetime" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Datetime" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Datetime" +msgstr "" + +#: public/js/frappe/views/calendar/calendar.js:271 +msgid "Day" +msgstr "" + +#. Label of a Select field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Day" +msgstr "" + +#. Label of a Select field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Day" +msgstr "" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Day of Week" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Days After" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Days Before" +msgstr "" + +#. Label of a Int field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Days Before or After" +msgstr "" + +#: public/js/frappe/request.js:249 +msgid "Deadlock Occurred" +msgstr "" + +#: templates/emails/password_reset.html:1 +msgid "Dear" +msgstr "" + +#: templates/emails/administrator_logged_in.html:1 +msgid "Dear System Manager," +msgstr "" + +#: templates/emails/account_deletion_notification.html:1 +#: templates/emails/delete_data_confirmation.html:1 +msgid "Dear User," +msgstr "" + +#: templates/emails/download_data.html:1 +msgid "Dear {0}" +msgstr "" + +#. Label of a Code field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Debug Log" +msgstr "" + +#: templates/form_grid/fields.html:30 +msgid "Default" +msgstr "" + +#. Label of a Small Text field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Default" +msgstr "" + +#. Label of a Small Text field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Default" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Default" +msgstr "" + +#. Label of a Small Text field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Default" +msgstr "" + +#. Label of a Data field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Default" +msgstr "" + +#. Label of a Small Text field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Default" +msgstr "" + +#: contacts/doctype/address_template/address_template.py:41 +msgid "Default Address Template cannot be deleted" +msgstr "" + +#. Label of a Select field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Default Amendment Naming" +msgstr "" + +#. Label of a Link field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Default Email Template" +msgstr "" + +#. Label of a Link field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Default Email Template" +msgstr "" + +#: email/doctype/email_account/email_account_list.js:13 +msgid "Default Inbox" +msgstr "" + +#: email/doctype/email_account/email_account.py:201 +msgid "Default Incoming" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Default Incoming" +msgstr "" + +#. Label of a Check field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Default Letter Head" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgctxt "Amended Document Naming Settings" +msgid "Default Naming" +msgstr "" + +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Default Naming" +msgstr "" + +#: email/doctype/email_account/email_account.py:209 +msgid "Default Outgoing" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Default Outgoing" +msgstr "" + +#. Label of a Data field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Default Portal Home" +msgstr "" + +#. Label of a Link field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Default Print Format" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Default Print Format" +msgstr "" + +#. Label of a Link field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Default Print Language" +msgstr "" + +#. Label of a Data field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Default Redirect URI" +msgstr "" + +#. Label of a Link field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Default Role at Time of Signup" +msgstr "" + +#: email/doctype/email_account/email_account_list.js:16 +msgid "Default Sending" +msgstr "" + +#: email/doctype/email_account/email_account_list.js:7 +msgid "Default Sending and Inbox" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Default Sort Field" +msgstr "" + +#. Label of a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Default Sort Order" +msgstr "" + +#. Label of a Data field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Default Template For Field" +msgstr "" + +#: website/doctype/website_theme/website_theme.js:28 +msgid "Default Theme" +msgstr "" + +#. Label of a Link field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Default User Role" +msgstr "" + +#. Label of a Link field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Default User Type" +msgstr "" + +#. Label of a Text field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Default Value" +msgstr "" + +#. Label of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Default Value" +msgstr "" + +#. Label of a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Default View" +msgstr "" + +#. Label of a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Default View" +msgstr "" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Default Workspace" +msgstr "" + +#: core/doctype/doctype/doctype.py:1325 +msgid "Default for 'Check' type of field {0} must be either '0' or '1'" +msgstr "" + +#: core/doctype/doctype/doctype.py:1338 +msgid "Default value for {0} must be in the list of options." +msgstr "" + +#: core/doctype/session_default_settings/session_default_settings.py:38 +msgid "Default {0}" +msgstr "" + +#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Default: \"Contact Us\"" +msgstr "" + +#. Name of a DocType +#: core/doctype/defaultvalue/defaultvalue.json +msgid "DefaultValue" +msgstr "" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Defaults" +msgstr "" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Defaults" +msgstr "" + +#: email/doctype/email_account/email_account.py:220 +msgid "Defaults Updated" +msgstr "" + +#. Description of a DocType +#: workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of a DocType +#: workflow/doctype/workflow/workflow.json +msgid "Defines workflow states and rules for a document." +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Delayed" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:189 +#: public/js/frappe/form/footer/form_timeline.js:613 +#: public/js/frappe/form/grid.js:63 public/js/frappe/form/toolbar.js:423 +#: public/js/frappe/views/reports/report_view.js:1642 +#: public/js/frappe/views/treeview.js:313 +#: public/js/frappe/views/workspace/workspace.js:834 +#: templates/discussions/reply_card.html:35 +#: templates/discussions/reply_section.html:29 +msgid "Delete" +msgstr "" + +#: public/js/frappe/list/list_view.js:1927 +msgctxt "Button in list view actions menu" +msgid "Delete" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Delete" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Delete" +msgstr "" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Delete" +msgstr "" + +#: www/me.html:75 +msgid "Delete Account" +msgstr "" + +#: public/js/frappe/form/grid.js:63 +msgid "Delete All" +msgstr "" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 +msgid "Delete Data" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:103 +msgid "Delete Kanban Board" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:835 +msgid "Delete Workspace" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:862 +msgid "Delete and Generate New" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:719 +msgid "Delete comment?" +msgstr "" + +#: email/doctype/email_unsubscribe/email_unsubscribe.py:29 +msgid "Delete this record to allow sending to this email address" +msgstr "" + +#: public/js/frappe/list/list_view.js:1932 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} item permanently?" +msgstr "" + +#: public/js/frappe/list/list_view.js:1938 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} items permanently?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Deleted" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Deleted" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Deleted" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Deleted" +msgstr "" + +#. Label of a Data field in DocType 'Deleted Document' +#: core/doctype/deleted_document/deleted_document.json +msgctxt "Deleted Document" +msgid "Deleted DocType" +msgstr "" + +#. Name of a DocType +#: core/doctype/deleted_document/deleted_document.json +msgid "Deleted Document" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Deleted Document" +msgid "Deleted Documents" +msgstr "" + +#. Label of a Data field in DocType 'Deleted Document' +#: core/doctype/deleted_document/deleted_document.json +msgctxt "Deleted Document" +msgid "Deleted Name" +msgstr "" + +#: desk/reportview.py:506 +msgid "Deleting {0}" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:172 +msgid "Deleting {0} records..." +msgstr "" + +#: public/js/frappe/model/model.js:711 +msgid "Deleting {0}..." +msgstr "" + +#. Label of a Table field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Deletion Steps " +msgstr "" + +#: core/doctype/page/page.py:108 +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 +msgid "Deletion of this document is only permitted in developer mode." +msgstr "" + +#: public/js/frappe/views/reports/report_utils.js:276 +msgid "Delimiter must be a single character" +msgstr "" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Delivery Status" +msgstr "" + +#: templates/includes/oauth_confirmation.html:14 +msgid "Deny" +msgstr "" + +#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Deny" +msgstr "" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Department" +msgstr "" + +#. Label of a Data field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Dependencies" +msgstr "" + +#. Label of a Code field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Depends On" +msgstr "" + +#. Label of a Code field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Depends On" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:32 +msgid "Descendants Of" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:33 +msgid "Descendants Of (inclusive)" +msgstr "" + +#: desk/report/todo/todo.py:39 public/js/frappe/form/reminders.js:44 +#: public/js/frappe/widgets/widget_dialog.js:260 +msgid "Description" +msgstr "" + +#. Label of a Small Text field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Description" +msgstr "" + +#. Label of a Small Text field in DocType 'Blog Category' +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Description" +msgstr "" + +#. Label of a Text field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Description" +msgstr "" + +#. Label of a Small Text field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Description" +msgstr "" + +#. Label of a Small Text field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Description" +msgstr "" + +#. Label of a Small Text field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Description" +msgstr "" + +#. Label of a Text Editor field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Description" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Description" +msgstr "" + +#. Label of a Section Break field in DocType 'Onboarding Step' +#. Label of a Markdown Editor field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Description" +msgstr "" + +#. Label of a Small Text field in DocType 'Print Heading' +#: printing/doctype/print_heading/print_heading.json +msgctxt "Print Heading" +msgid "Description" +msgstr "" + +#. Label of a Small Text field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "Description" +msgstr "" + +#. Label of a Small Text field in DocType 'Tag' +#: desk/doctype/tag/tag.json +msgctxt "Tag" +msgid "Description" +msgstr "" + +#. Label of a Text Editor field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Description" +msgstr "" + +#. Label of a Text field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Description" +msgstr "" + +#. Label of a Small Text field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Description" +msgstr "" + +#. Label of a Text field in DocType 'Website Slideshow Item' +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgctxt "Website Slideshow Item" +msgid "Description" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Description" +msgstr "" + +#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" +msgstr "" + +#. Description of the 'Description' (Section Break) field in DocType +#. 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Description to inform the user about any action that is going to be performed" +msgstr "" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Designation" +msgstr "" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Desk Access" +msgstr "" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Desk Settings" +msgstr "" + +#. Label of a Select field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Desk Theme" +msgstr "" + +#. Name of a role +#: automation/doctype/reminder/reminder.json core/doctype/report/report.json +#: core/doctype/submission_queue/submission_queue.json +#: core/doctype/user_group/user_group.json +#: custom/doctype/doctype_layout/doctype_layout.json +#: desk/doctype/calendar_view/calendar_view.json +#: desk/doctype/custom_html_block/custom_html_block.json +#: desk/doctype/dashboard/dashboard.json +#: desk/doctype/dashboard_chart/dashboard_chart.json +#: desk/doctype/dashboard_settings/dashboard_settings.json +#: desk/doctype/form_tour/form_tour.json +#: desk/doctype/kanban_board/kanban_board.json +#: desk/doctype/list_filter/list_filter.json +#: desk/doctype/module_onboarding/module_onboarding.json +#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json +#: desk/doctype/onboarding_step/onboarding_step.json +#: email/doctype/document_follow/document_follow.json +#: email/doctype/email_template/email_template.json +#: integrations/doctype/google_calendar/google_calendar.json +#: integrations/doctype/google_contacts/google_contacts.json +#: printing/doctype/letter_head/letter_head.json +#: printing/doctype/network_printer_settings/network_printer_settings.json +#: printing/doctype/print_format/print_format.json +#: social/doctype/energy_point_log/energy_point_log.json +#: website/doctype/marketing_campaign/marketing_campaign.json +#: workflow/doctype/workflow_action/workflow_action.json +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Desk User" +msgstr "" + +#. Name of a DocType +#: desk/doctype/desktop_icon/desktop_icon.json +msgid "Desktop Icon" +msgstr "" + +#: desk/doctype/desktop_icon/desktop_icon.py:225 +msgid "Desktop Icon already exists" +msgstr "" + +#: desk/page/user_profile/user_profile_sidebar.html:45 +#: public/js/form_builder/store.js:259 public/js/form_builder/utils.js:38 +#: public/js/frappe/form/layout.js:135 public/js/frappe/views/treeview.js:276 +msgid "Details" +msgstr "" + +#. Label of a Tab Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Details" +msgstr "" + +#. Label of a Section Break field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Details" +msgstr "" + +#. Label of a Code field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Details" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:488 +msgid "Did not add" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:382 +msgid "Did not remove" +msgstr "" + +#: public/js/frappe/utils/diffview.js:57 +msgid "Diff" +msgstr "" + +#. Description of the 'States' (Section Break) field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." +msgstr "" + +#. Label of a Int field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Digits" +msgstr "" + +#. Label of a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Directory Server" +msgstr "" + +#. Label of a Check field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Disable Auto Refresh" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Disable Change Log Notification" +msgstr "" + +#. Label of a Check field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Disable Comment Count" +msgstr "" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Disable Comments" +msgstr "" + +#. Label of a Check field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Disable Count" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Disable Document Sharing" +msgstr "" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Disable Likes" +msgstr "" + +#: core/doctype/report/report.js:36 +msgid "Disable Report" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Disable SMTP server authentication" +msgstr "" + +#. Label of a Check field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Disable Sidebar Stats" +msgstr "" + +#: website/doctype/website_settings/website_settings.js:146 +msgid "Disable Signup for your site" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Disable Standard Email Footer" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Disable System Update Notification" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Disable Username/Password Login" +msgstr "" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Disable signups" +msgstr "" + +#: core/doctype/user/user_list.js:14 +#: public/js/frappe/form/templates/address_list.html:29 +#: public/js/frappe/model/indicator.js:108 +#: public/js/frappe/model/indicator.js:115 +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Milestone Tracker' +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgctxt "Milestone Tracker" +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Print Style' +#: printing/doctype/print_style/print_style.json +msgctxt "Print Style" +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Disabled" +msgstr "" + +#. Label of a Check field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Disabled" +msgstr "" + +#: email/doctype/email_account/email_account.js:237 +msgid "Disabled Auto Reply" +msgstr "" + +#: public/js/frappe/views/communication.js:30 +#: public/js/frappe/views/dashboard/dashboard_view.js:70 +#: public/js/frappe/views/workspace/workspace.js:513 +#: public/js/frappe/web_form/web_form.js:187 +msgid "Discard" +msgstr "" + +#: website/doctype/web_form/templates/web_form.html:41 +msgctxt "Button in web form" +msgid "Discard" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:184 +msgid "Discard?" +msgstr "" + +#. Name of a DocType +#: website/doctype/discussion_reply/discussion_reply.json +msgid "Discussion Reply" +msgstr "" + +#. Name of a DocType +#: website/doctype/discussion_topic/discussion_topic.json +msgid "Discussion Topic" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:623 +#: templates/discussions/reply_card.html:16 +#: templates/discussions/reply_section.html:29 +msgid "Dismiss" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:577 +msgctxt "Stop showing the onboarding widget." +msgid "Dismiss" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Display" +msgstr "" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Display" +msgstr "" + +#. Label of a Code field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Display Depends On" +msgstr "" + +#. Label of a Code field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Display Depends On (JS)" +msgstr "" + +#. Label of a Check field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Do Not Create New User " +msgstr "" + +#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Do not create new user if user with email does not exist in the system" +msgstr "" + +#: public/js/frappe/form/grid.js:1162 +msgid "Do not edit headers which are preset in the template" +msgstr "" + +#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:65 +msgid "Do not have permission to access bucket {0}." +msgstr "" + +#: core/doctype/system_settings/system_settings.js:66 +msgid "Do you still want to proceed?" +msgstr "" + +#: public/js/frappe/form/form.js:977 +msgid "Do you want to cancel all linked documents?" +msgstr "" + +#. Label of a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Doc Event" +msgstr "" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Doc Events" +msgstr "" + +#. Label of a Select field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Doc Status" +msgstr "" + +#. Name of a DocType +#: core/doctype/docfield/docfield.json +msgid "DocField" +msgstr "" + +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "DocField" +msgstr "" + +#. Name of a DocType +#: core/doctype/docperm/docperm.json +msgid "DocPerm" +msgstr "" + +#. Name of a DocType +#: core/doctype/docshare/docshare.json +msgid "DocShare" +msgstr "" + +#: workflow/doctype/workflow/workflow.js:264 +msgid "DocStatus of the following states have changed:
{0}
\n" +"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
\n" +"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n" +"\t\t\t\t" +msgstr "" + +#. Name of a DocType +#: core/doctype/data_export/exporter.py:26 core/doctype/doctype/doctype.json +#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 +#: website/doctype/website_slideshow/website_slideshow.js:18 +msgid "DocType" +msgstr "" + +#. Label of a Link field in DocType 'Amended Document Naming Settings' +#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgctxt "Amended Document Naming Settings" +msgid "DocType" +msgstr "" + +#. Label of a Link field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "DocType" +msgstr "" + +#. Label of a Link field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "DocType" +msgstr "" + +#. Label of a Link field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "DocType" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "DocType" +msgid "DocType" +msgstr "" + +#. Group in Module Def's connections +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "DocType" +msgstr "" + +#. Label of a Link field in DocType 'Permission Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "DocType" +msgstr "" + +#. Label of a Link field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "DocType" +msgstr "" + +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#. Label of a Link field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "DocType" +msgstr "" + +#. Label of a Link field in DocType 'Version' +#: core/doctype/version/version.json +msgctxt "Version" +msgid "DocType" +msgstr "" + +#. Label of a Link field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "DocType" +msgstr "" + +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "DocType" +msgstr "" + +#. Label of a Link field in DocType 'Workspace Quick List' +#: desk/doctype/workspace_quick_list/workspace_quick_list.json +msgctxt "Workspace Quick List" +msgid "DocType" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "DocType" +msgstr "" + +#: core/doctype/doctype/doctype.py:1526 +msgid "DocType {0} provided for the field {1} must have atleast one Link field" +msgstr "" + +#. Name of a DocType +#: core/doctype/doctype_action/doctype_action.json +msgid "DocType Action" +msgstr "" + +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "DocType Action" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#. Label of a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "DocType Event" +msgstr "" + +#. Name of a DocType +#: custom/doctype/doctype_layout/doctype_layout.json +msgid "DocType Layout" +msgstr "" + +#. Name of a DocType +#: custom/doctype/doctype_layout_field/doctype_layout_field.json +msgid "DocType Layout Field" +msgstr "" + +#. Name of a DocType +#: core/doctype/doctype_link/doctype_link.json +msgid "DocType Link" +msgstr "" + +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "DocType Link" +msgstr "" + +#: core/doctype/doctype/doctype_list.js:22 +msgid "DocType Name" +msgstr "" + +#. Name of a DocType +#: core/doctype/doctype_state/doctype_state.json +msgid "DocType State" +msgstr "" + +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "DocType State" +msgstr "" + +#. Label of a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "DocType View" +msgstr "" + +#: core/doctype/doctype/doctype.py:647 +msgid "DocType can not be merged" +msgstr "" + +#: core/doctype/doctype/doctype.py:641 +msgid "DocType can only be renamed by Administrator" +msgstr "" + +#. Description of a DocType +#: core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + +#: integrations/doctype/webhook/webhook.py:82 +msgid "DocType must be Submittable for the selected Doc Event" +msgstr "" + +#: client.py:421 +msgid "DocType must be a string" +msgstr "" + +#: public/js/form_builder/store.js:154 +msgid "DocType must have atleast one field" +msgstr "" + +#: core/doctype/log_settings/log_settings.py:58 +msgid "DocType not supported by Log Settings." +msgstr "" + +#. Description of the 'Document Type' (Link) field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "DocType on which this Workflow is applicable." +msgstr "" + +#: public/js/frappe/views/kanban/kanban_settings.js:4 +msgid "DocType required" +msgstr "" + +#: modules/utils.py:157 +msgid "DocType {0} does not exist." +msgstr "" + +#: modules/utils.py:220 +msgid "DocType {} not found" +msgstr "" + +#: core/doctype/doctype/doctype.py:1009 +msgid "DocType's name should not start or end with whitespace" +msgstr "" + +#: core/doctype/doctype/doctype.js:70 +msgid "DocTypes can not be modified, please use {0} instead" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:684 +msgid "Doctype" +msgstr "" + +#. Label of a Link field in DocType 'Document Follow' +#: email/doctype/document_follow/document_follow.json +msgctxt "Document Follow" +msgid "Doctype" +msgstr "" + +#: core/doctype/doctype/doctype.py:1003 +msgid "Doctype name is limited to {0} characters ({1})" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:3 +msgid "Doctype required" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1314 +msgid "Doctype with same route already exist. Please choose different title." +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "Document" +msgstr "" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Document" +msgstr "" + +#. Label of a Data field in DocType 'Milestone' +#: automation/doctype/milestone/milestone.json +msgctxt "Milestone" +msgid "Document" +msgstr "" + +#. Label of a Link field in DocType 'Notification Subscribed Document' +#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgctxt "Notification Subscribed Document" +msgid "Document" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Permission Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "Document" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Document Actions" +msgstr "" + +#. Name of a DocType +#: email/doctype/document_follow/document_follow.json +msgid "Document Follow" +msgstr "" + +#. Label of a Section Break field in DocType 'User' +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Document Follow" +msgstr "" + +#: desk/form/document_follow.py:84 +msgid "Document Follow Notification" +msgstr "" + +#. Label of a Data field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Document Link" +msgstr "" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Document Linking" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Document Links" +msgstr "" + +#: core/doctype/doctype/doctype.py:1160 +msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" +msgstr "" + +#: core/doctype/doctype/doctype.py:1180 +msgid "Document Links Row #{0}: Invalid doctype or fieldname." +msgstr "" + +#: core/doctype/doctype/doctype.py:1143 +msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" +msgstr "" + +#: core/doctype/doctype/doctype.py:1149 +msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:36 +#: public/js/frappe/form/form_tour.js:60 +msgid "Document Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Document Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Document Follow' +#: email/doctype/document_follow/document_follow.json +msgctxt "Document Follow" +msgid "Document Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "Document Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Tag Link' +#: desk/doctype/tag_link/tag_link.json +msgctxt "Tag Link" +msgid "Document Name" +msgstr "" + +#. Label of a Data field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Document Name" +msgstr "" + +#. Label of a Data field in DocType 'Version' +#: core/doctype/version/version.json +msgctxt "Version" +msgid "Document Name" +msgstr "" + +#: client.py:424 +msgid "Document Name must be a string" +msgstr "" + +#. Name of a DocType +#: core/doctype/document_naming_rule/document_naming_rule.json +msgid "Document Naming Rule" +msgstr "" + +#. Name of a DocType +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "Document Naming Rule Condition" +msgstr "" + +#. Name of a DocType +#: core/doctype/document_naming_settings/document_naming_settings.json +msgid "Document Naming Settings" +msgstr "" + +#: model/document.py:1540 +msgid "Document Queued" +msgstr "" + +#: core/doctype/deleted_document/deleted_document_list.js:38 +msgid "Document Restoration Summary" +msgstr "" + +#: core/doctype/deleted_document/deleted_document.py:68 +msgid "Document Restored" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:359 +#: public/js/frappe/widgets/onboarding_widget.js:401 +#: public/js/frappe/widgets/onboarding_widget.js:420 +#: public/js/frappe/widgets/onboarding_widget.js:439 +msgid "Document Saved" +msgstr "" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Document Share" +msgstr "" + +#. Name of a DocType +#: core/doctype/document_share_key/document_share_key.json +msgid "Document Share Key" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Document Share Key Expiry (in Days)" +msgstr "" + +#. Name of a report +#. Label of a Link in the Users Workspace +#: core/report/document_share_report/document_share_report.json +#: core/workspace/users/users.json +msgid "Document Share Report" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Document States" +msgstr "" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Document States" +msgstr "" + +#. Label of a Table field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Document States" +msgstr "" + +#: model/meta.py:47 public/js/frappe/model/meta.js:199 +#: public/js/frappe/model/model.js:127 +msgid "Document Status" +msgstr "" + +#. Label of a Link field in DocType 'Tag Link' +#: desk/doctype/tag_link/tag_link.json +msgctxt "Tag Link" +msgid "Document Tag" +msgstr "" + +#. Label of a Data field in DocType 'Tag Link' +#: desk/doctype/tag_link/tag_link.json +msgctxt "Tag Link" +msgid "Document Title" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:26 +#: core/page/permission_manager/permission_manager.js:49 +#: core/page/permission_manager/permission_manager.js:211 +#: core/page/permission_manager/permission_manager.js:443 +#: public/js/frappe/roles_editor.js:66 +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'DocType Layout' +#: custom/doctype/doctype_layout/doctype_layout.json +msgctxt "DocType Layout" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Global Search DocType' +#: desk/doctype/global_search_doctype/global_search_doctype.json +msgctxt "Global Search DocType" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Milestone' +#: automation/doctype/milestone/milestone.json +msgctxt "Milestone" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Number Card' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Document Type" +msgstr "" + +#. Label of a Data field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Session Default' +#: core/doctype/session_default/session_default.json +msgctxt "Session Default" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Tag Link' +#: desk/doctype/tag_link/tag_link.json +msgctxt "Tag Link" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'User Select Document Type' +#: core/doctype/user_select_document_type/user_select_document_type.json +msgctxt "User Select Document Type" +msgid "Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Document Type" +msgstr "" + +#: desk/doctype/number_card/number_card.py:56 +msgid "Document Type and Function are required to create a number card" +msgstr "" + +#: permissions.py:147 +msgid "Document Type is not importable" +msgstr "" + +#: permissions.py:143 +msgid "Document Type is not submittable" +msgstr "" + +#. Label of a Link field in DocType 'Milestone Tracker' +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgctxt "Milestone Tracker" +msgid "Document Type to Track" +msgstr "" + +#: desk/doctype/global_search_settings/global_search_settings.py:40 +msgid "Document Type {0} has been repeated." +msgstr "" + +#. Label of a Table field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Document Types" +msgstr "" + +#. Label of a Table field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Document Types (Select Permissions Only)" +msgstr "" + +#. Label of a Section Break field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Document Types and Permissions" +msgstr "" + +#: core/doctype/submission_queue/submission_queue.py:163 model/document.py:1742 +msgid "Document Unlocked" +msgstr "" + +#: public/js/frappe/list/list_view.js:1082 +msgid "Document has been cancelled" +msgstr "" + +#: public/js/frappe/list/list_view.js:1081 +msgid "Document has been submitted" +msgstr "" + +#: public/js/frappe/list/list_view.js:1080 +msgid "Document is in draft state" +msgstr "" + +#: public/js/frappe/form/workflow.js:45 +msgid "Document is only editable by users with role" +msgstr "" + +#: core/doctype/communication/communication.js:182 +msgid "Document not Relinked" +msgstr "" + +#: model/rename_doc.py:226 public/js/frappe/form/toolbar.js:145 +msgid "Document renamed from {0} to {1}" +msgstr "" + +#: public/js/frappe/form/toolbar.js:154 +msgid "Document renaming from {0} to {1} has been queued" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:387 +msgid "Document type is required to create a dashboard chart" +msgstr "" + +#: core/doctype/deleted_document/deleted_document.py:45 +msgid "Document {0} Already Restored" +msgstr "" + +#: workflow/doctype/workflow_action/workflow_action.py:198 +msgid "Document {0} has been set to state {1} by {2}" +msgstr "" + +#: client.py:443 +msgid "Document {0} {1} does not exist" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Documentation Link" +msgstr "" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Documentation URL" +msgstr "" + +#. Label of a Data field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Documentation URL" +msgstr "" + +#: public/js/frappe/form/templates/form_dashboard.html:17 +msgid "Documents" +msgstr "" + +#: core/doctype/deleted_document/deleted_document_list.js:25 +msgid "Documents restored successfully" +msgstr "" + +#: core/doctype/deleted_document/deleted_document_list.js:33 +msgid "Documents that failed to restore" +msgstr "" + +#: core/doctype/deleted_document/deleted_document_list.js:29 +msgid "Documents that were already restored" +msgstr "" + +#. Name of a DocType +#: core/doctype/domain/domain.json +msgid "Domain" +msgstr "" + +#. Label of a Data field in DocType 'Domain' +#: core/doctype/domain/domain.json +msgctxt "Domain" +msgid "Domain" +msgstr "" + +#. Label of a Link field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Domain" +msgstr "" + +#. Label of a Link field in DocType 'Has Domain' +#: core/doctype/has_domain/has_domain.json +msgctxt "Has Domain" +msgid "Domain" +msgstr "" + +#. Label of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Domain Name" +msgstr "" + +#. Name of a DocType +#: core/doctype/domain_settings/domain_settings.json +msgid "Domain Settings" +msgstr "" + +#. Label of a HTML field in DocType 'Domain Settings' +#: core/doctype/domain_settings/domain_settings.json +msgctxt "Domain Settings" +msgid "Domains HTML" +msgstr "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom +#. Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "" + +#: public/js/frappe/data_import/import_preview.js:268 +msgid "Don't Import" +msgstr "" + +#. Label of a Check field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Don't Override Status" +msgstr "" + +#. Label of a Check field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Don't Override Status" +msgstr "" + +#. Label of a Check field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Don't Send Emails" +msgstr "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize +#. Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "" + +#: www/login.html:119 www/login.html:135 www/update-password.html:34 +msgid "Don't have an account?" +msgstr "" + +#: public/js/frappe/ui/messages.js:231 +#: public/js/onboarding_tours/onboarding_tours.js:17 +msgid "Done" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Donut" +msgstr "" + +#: core/doctype/file/file.js:5 +#: email/doctype/auto_email_report/auto_email_report.js:8 +#: public/js/frappe/form/grid.js:63 +msgid "Download" +msgstr "" + +#: public/js/frappe/views/reports/report_utils.js:229 +msgctxt "Export report" +msgid "Download" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json desk/page/backups/backups.js:4 +msgid "Download Backups" +msgstr "" + +#: templates/emails/download_data.html:6 +msgid "Download Data" +msgstr "" + +#: desk/page/backups/backups.js:12 +msgid "Download Files Backup" +msgstr "" + +#: templates/emails/download_data.html:9 +msgid "Download Link" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:125 +msgid "Download PDF" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:765 +msgid "Download Report" +msgstr "" + +#. Label of a Button field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Download Template" +msgstr "" + +#: website/doctype/personal_data_download_request/personal_data_download_request.py:61 +#: website/doctype/personal_data_download_request/personal_data_download_request.py:69 +#: website/doctype/personal_data_download_request/test_personal_data_download_request.py:48 +msgid "Download Your Data" +msgstr "" + +#: public/js/frappe/model/indicator.js:73 +#: public/js/frappe/ui/filters/filter.js:494 +msgid "Draft" +msgstr "" + +#: public/js/frappe/views/workspace/blocks/header.js:46 +#: public/js/frappe/views/workspace/blocks/paragraph.js:136 +#: public/js/frappe/views/workspace/blocks/spacer.js:44 +#: public/js/frappe/views/workspace/workspace.js:576 +#: public/js/frappe/widgets/base_widget.js:33 +msgid "Drag" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_layout.html:3 +msgid "Drag elements from the sidebar to add. Drag them back to trash." +msgstr "" + +#. Label of a Password field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Dropbox Access Token" +msgstr "" + +#. Label of a Password field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Dropbox Refresh Token" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgid "Dropbox Settings" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Dropbox Settings" +msgid "Dropbox Settings" +msgstr "" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:347 +msgid "Dropbox Setup" +msgstr "" + +#. Label of a Section Break field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Dropdowns" +msgstr "" + +#. Label of a Date field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Due Date" +msgstr "" + +#. Label of a Select field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Due Date Based On" +msgstr "" + +#: public/js/frappe/form/grid_row_form.js:42 +#: public/js/frappe/form/toolbar.js:377 +#: public/js/frappe/views/workspace/workspace.js:819 +#: public/js/frappe/views/workspace/workspace.js:986 +msgid "Duplicate" +msgstr "" + +#: printing/doctype/print_format_field_template/print_format_field_template.py:53 +msgid "Duplicate Entry" +msgstr "" + +#: public/js/frappe/list/list_filter.js:137 +msgid "Duplicate Filter Name" +msgstr "" + +#: model/base_document.py:582 model/rename_doc.py:111 +msgid "Duplicate Name" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:558 +#: public/js/frappe/views/workspace/workspace.js:820 +msgid "Duplicate Workspace" +msgstr "" + +#: public/js/frappe/form/form.js:208 +msgid "Duplicate current row" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1001 +msgid "Duplicate of {0} named as {1} is created successfully" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Duration" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Duration" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Duration" +msgstr "" + +#. Label of a Float field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Duration" +msgstr "" + +#. Label of a Float field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Duration" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Duration" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Duration" +msgstr "" + +#. Label of a Section Break field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Dynamic Filters" +msgstr "" + +#. Label of a Code field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Dynamic Filters JSON" +msgstr "" + +#. Label of a Code field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Dynamic Filters JSON" +msgstr "" + +#. Label of a Section Break field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Dynamic Filters Section" +msgstr "" + +#. Name of a DocType +#: core/doctype/dynamic_link/dynamic_link.json +msgid "Dynamic Link" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Dynamic Link" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Dynamic Link" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Dynamic Link" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Dynamic Link" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Dynamic Link" +msgstr "" + +#. Label of a Section Break field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Dynamic Report Filters" +msgstr "" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Dynamic Route" +msgstr "" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Dynamic Template" +msgstr "" + +#: public/js/frappe/form/grid_row_form.js:42 +msgid "ESC" +msgstr "" + +#. Description of the Onboarding Step 'Setup Naming Series' +#: custom/onboarding_step/naming_series/naming_series.json +msgid "Each document created in ERPNext can have a unique ID generated for it, using a prefix defined for it. Though each document has some prefix pre-configured, you can further customize it using tools like Naming Series Tool and Document Naming Rule.\n" +msgstr "" + +#: core/page/dashboard_view/dashboard_view.js:169 +#: printing/page/print_format_builder/print_format_builder_start.html:8 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:85 +#: public/js/frappe/form/controls/markdown_editor.js:31 +#: public/js/frappe/form/footer/form_timeline.js:652 +#: public/js/frappe/form/footer/form_timeline.js:661 +#: public/js/frappe/form/templates/address_list.html:7 +#: public/js/frappe/form/templates/contact_list.html:7 +#: public/js/frappe/form/toolbar.js:672 +#: public/js/frappe/views/reports/query_report.js:813 +#: public/js/frappe/views/reports/query_report.js:1634 +#: public/js/frappe/views/workspace/workspace.js:459 +#: public/js/frappe/views/workspace/workspace.js:813 +#: public/js/frappe/widgets/base_widget.js:64 +#: public/js/frappe/widgets/chart_widget.js:298 +#: public/js/frappe/widgets/number_card_widget.js:331 +#: templates/discussions/reply_card.html:29 +#: templates/discussions/reply_section.html:29 +#: workflow/page/workflow_builder/workflow_builder.js:46 +#: workflow/page/workflow_builder/workflow_builder.js:84 +msgid "Edit" +msgstr "" + +#: public/js/frappe/list/list_view.js:2013 +msgctxt "Button in list view actions menu" +msgid "Edit" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Edit" +msgstr "" + +#: public/js/frappe/form/grid_row.js:337 +msgctxt "Edit grid row" +msgid "Edit" +msgstr "" + +#: templates/emails/auto_email_report.html:63 +msgid "Edit Auto Email Report Settings" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:38 +msgid "Edit Chart" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:50 +msgid "Edit Custom Block" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:719 +msgid "Edit Custom HTML" +msgstr "" + +#: public/js/frappe/form/toolbar.js:546 +msgid "Edit DocType" +msgstr "" + +#: public/js/frappe/list/list_view.js:1737 +msgctxt "Button in list view menu" +msgid "Edit DocType" +msgstr "" + +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:42 +#: workflow/page/workflow_builder/workflow_builder.js:42 +msgid "Edit Existing" +msgstr "" + +#: public/js/frappe/list/list_sidebar_group_by.js:55 +msgid "Edit Filters" +msgstr "" + +#: printing/doctype/print_format/print_format.js:28 +msgid "Edit Format" +msgstr "" + +#: public/js/frappe/form/quick_entry.js:280 +msgid "Edit Full Form" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_field.html:26 +msgid "Edit HTML" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:602 +#: printing/page/print_format_builder/print_format_builder_layout.html:8 +msgid "Edit Heading" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:42 +msgid "Edit Links" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:44 +msgid "Edit Number Card" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:46 +msgid "Edit Onboarding" +msgstr "" + +#: public/js/print_format_builder/print_format_builder.bundle.js:24 +msgid "Edit Print Format" +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:273 +#: desk/page/user_profile/user_profile_sidebar.html:51 www/me.html:27 +msgid "Edit Profile" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:173 +msgid "Edit Properties" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:48 +msgid "Edit Quick List" +msgstr "" + +#: website/doctype/web_form/templates/web_form.html:20 +msgctxt "Button in web form" +msgid "Edit Response" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:40 +msgid "Edit Shortcut" +msgstr "" + +#: public/js/frappe/utils/web_template.js:5 +msgid "Edit Values" +msgstr "" + +#. Label of a Button field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Edit Values" +msgstr "" + +#. Label of a Button field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Edit Values" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:814 +msgid "Edit Workspace" +msgstr "" + +#: desk/doctype/note/note.js:11 +msgid "Edit mode" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:713 +msgid "Edit to add content" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:442 +msgctxt "Button in web form" +msgid "Edit your response" +msgstr "" + +#: workflow/doctype/workflow/workflow.js:18 +msgid "Edit your workflow visually using the Workflow Builder." +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:647 +#: public/js/frappe/widgets/widget_dialog.js:52 +msgid "Edit {0}" +msgstr "" + +#: core/doctype/doctype/doctype_list.js:57 +msgid "Editable Grid" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Editable Grid" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Editable Grid" +msgstr "" + +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Editing Row" +msgstr "" + +#: public/js/print_format_builder/print_format_builder.bundle.js:14 +#: public/js/workflow_builder/workflow_builder.bundle.js:20 +msgid "Editing {0}" +msgstr "" + +#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS +#. Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Eg. smsgateway.com/api/send_sms.cgi" +msgstr "" + +#: rate_limiter.py:139 +msgid "Either key or IP flag is required." +msgstr "" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Element Selector" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: automation/workspace/tools/tools.json +#: core/doctype/success_action/success_action.js:57 +#: email/doctype/newsletter/newsletter.js:156 +#: public/js/frappe/form/success_action.js:85 +#: public/js/frappe/form/toolbar.js:341 +#: templates/includes/comments/comments.html:25 templates/signup.html:9 +#: www/login.html:7 www/login.py:93 +msgid "Email" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Email" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Email" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Email" +msgstr "" + +#. Label of a Data field in DocType 'Email Group Member' +#: email/doctype/email_group_member/email_group_member.json +msgctxt "Email Group Member" +msgid "Email" +msgstr "" + +#. Label of a Data field in DocType 'Email Unsubscribe' +#: email/doctype/email_unsubscribe/email_unsubscribe.json +msgctxt "Email Unsubscribe" +msgid "Email" +msgstr "" + +#. Label of a Data field in DocType 'Event Participants' +#: desk/doctype/event_participants/event_participants.json +msgctxt "Event Participants" +msgid "Email" +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Email" +msgstr "" + +#. Label of a Data field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Email" +msgstr "" + +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Email" +msgstr "" + +#. Label of a Data field in DocType 'User' +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Email" +msgstr "" + +#. Name of a DocType +#: core/doctype/communication/communication.js:199 +#: email/doctype/email_account/email_account.json +msgid "Email Account" +msgstr "" + +#. Label of a Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Email Account" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Email Account" +msgid "Email Account" +msgstr "" + +#. Linked DocType in Email Domain's connections +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Email Account" +msgstr "" + +#. Label of a Data field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Email Account" +msgstr "" + +#. Label of a Link field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Email Account" +msgstr "" + +#. Label of a Link field in DocType 'Unhandled Email' +#: email/doctype/unhandled_email/unhandled_email.json +msgctxt "Unhandled Email" +msgid "Email Account" +msgstr "" + +#. Label of a Link field in DocType 'User Email' +#: core/doctype/user_email/user_email.json +msgctxt "User Email" +msgid "Email Account" +msgstr "" + +#: email/doctype/email_account/email_account.py:316 +msgid "Email Account Disabled." +msgstr "" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Email Account Name" +msgstr "" + +#: core/doctype/user/user.py:743 +msgid "Email Account added multiple times" +msgstr "" + +#: email/smtp.py:43 +msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:470 www/complete_signup.html:11 +#: www/login.html:164 www/login.html:196 +msgid "Email Address" +msgstr "" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Email Address" +msgstr "" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Email Address" +msgstr "" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Email Address" +msgstr "" + +#. Label of a Data field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Email Address" +msgstr "" + +#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Email Address whose Google Contacts are to be synced." +msgstr "" + +#: email/doctype/email_group/email_group.js:43 +msgid "Email Addresses" +msgstr "" + +#. Description of the 'Send Notification to' (Small Text) field in DocType +#. 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Email Addresses" +msgstr "" + +#. Name of a DocType +#: email/doctype/email_domain/email_domain.json +msgid "Email Domain" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Email Domain" +msgid "Email Domain" +msgstr "" + +#. Name of a DocType +#: email/doctype/email_flag_queue/email_flag_queue.json +msgid "Email Flag Queue" +msgstr "" + +#. Label of a Small Text field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Email Footer Address" +msgstr "" + +#. Name of a DocType +#: email/doctype/email_group/email_group.json +msgid "Email Group" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Email Group" +msgid "Email Group" +msgstr "" + +#. Label of a Link field in DocType 'Email Group Member' +#: email/doctype/email_group_member/email_group_member.json +msgctxt "Email Group Member" +msgid "Email Group" +msgstr "" + +#. Label of a Link field in DocType 'Newsletter Email Group' +#: email/doctype/newsletter_email_group/newsletter_email_group.json +msgctxt "Newsletter Email Group" +msgid "Email Group" +msgstr "" + +#. Name of a DocType +#: email/doctype/email_group_member/email_group_member.json +msgid "Email Group Member" +msgstr "" + +#. Linked DocType in Email Group's connections +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Email Group Member" +msgstr "" + +#. Label of a Data field in DocType 'Contact Email' +#: contacts/doctype/contact_email/contact_email.json +msgctxt "Contact Email" +msgid "Email ID" +msgstr "" + +#. Label of a Data field in DocType 'Email Rule' +#: email/doctype/email_rule/email_rule.json +msgctxt "Email Rule" +msgid "Email ID" +msgstr "" + +#. Label of a Data field in DocType 'User Email' +#: core/doctype/user_email/user_email.json +msgctxt "User Email" +msgid "Email ID" +msgstr "" + +#. Label of a Table field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Email IDs" +msgstr "" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Email Id" +msgstr "" + +#. Label of a Section Break field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Email Inbox" +msgstr "" + +#. Name of a DocType +#: email/doctype/email_queue/email_queue.json +msgid "Email Queue" +msgstr "" + +#. Name of a DocType +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Email Queue Recipient" +msgstr "" + +#: email/queue.py:160 +msgid "Email Queue flushing aborted due to too many failures." +msgstr "" + +#. Description of a DocType +#: email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" + +#. Label of a HTML field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "Email Reply Help" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Email Retry Limit" +msgstr "" + +#. Name of a DocType +#: email/doctype/email_rule/email_rule.json +msgid "Email Rule" +msgstr "" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Email Sent" +msgstr "" + +#. Label of a Check field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Email Sent" +msgstr "" + +#. Label of a Datetime field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Email Sent At" +msgstr "" + +#. Label of a Section Break field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Email Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Email Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Email Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Email Settings" +msgstr "" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Email Signature" +msgstr "" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Email Status" +msgstr "" + +#. Label of a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Email Sync Option" +msgstr "" + +#. Name of a DocType +#: email/doctype/email_template/email_template.json +#: public/js/frappe/views/communication.js:95 +msgid "Email Template" +msgstr "" + +#. Label of a Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Email Template" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Email Template" +msgid "Email Template" +msgstr "" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Email Threads on Assigned Document" +msgstr "" + +#. Label of a Small Text field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Email To" +msgstr "" + +#. Name of a DocType +#: email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Email Unsubscribe" +msgstr "" + +#: core/doctype/communication/communication.js:342 +msgid "Email has been marked as spam" +msgstr "" + +#: core/doctype/communication/communication.js:355 +msgid "Email has been moved to trash" +msgstr "" + +#: public/js/frappe/views/communication.js:799 +msgid "Email not sent to {0} (unsubscribed / disabled)" +msgstr "" + +#: utils/oauth.py:158 +msgid "Email not verified with {0}" +msgstr "" + +#: email/queue.py:137 +msgid "Emails are muted" +msgstr "" + +#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Emails will be sent with next possible workflow actions" +msgstr "" + +#: website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + +#. Label of a Check field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Enable" +msgstr "" + +#. Label of a Check field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Enable" +msgstr "" + +#. Label of a Check field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Enable" +msgstr "" + +#. Label of a Check field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "Enable" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.py:117 +msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Enable Auto Reply" +msgstr "" + +#. Label of a Check field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Enable Automatic Backup" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Enable Automatic Linking in Documents" +msgstr "" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Enable Comments" +msgstr "" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Enable Email Notification" +msgstr "" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Enable Email Notifications" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:90 +#: integrations/doctype/google_contacts/google_contacts.py:36 +#: website/doctype/website_settings/website_settings.py:129 +msgid "Enable Google API in Google Settings." +msgstr "" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Enable Google indexing" +msgstr "" + +#: email/doctype/email_account/email_account.py:202 +msgid "Enable Incoming" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Enable Incoming" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Enable Onboarding" +msgstr "" + +#: email/doctype/email_account/email_account.py:210 +msgid "Enable Outgoing" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Enable Outgoing" +msgstr "" + +#. Label of a Check field in DocType 'User Email' +#: core/doctype/user_email/user_email.json +msgctxt "User Email" +msgid "Enable Outgoing" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Enable Password Policy" +msgstr "" + +#. Label of a Check field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Enable Prepared Report" +msgstr "" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Enable Print Server" +msgstr "" + +#. Label of a Check field in DocType 'Push Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "Enable Push Notification Relay" +msgstr "" + +#. Label of a Check field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Enable Rate Limit" +msgstr "" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Enable Raw Printing" +msgstr "" + +#: core/doctype/report/report.js:36 +msgid "Enable Report" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Enable Scheduled Jobs" +msgstr "" + +#: core/doctype/rq_job/rq_job_list.js:23 +msgid "Enable Scheduler" +msgstr "Omogući Planer" + +#. Label of a Check field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Enable Security" +msgstr "" + +#. Label of a Check field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Enable Social Login" +msgstr "" + +#. Label of a Check field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Enable Social Sharing" +msgstr "" + +#: website/doctype/website_settings/website_settings.js:139 +msgid "Enable Tracking Page Views" +msgstr "" + +#: twofactor.py:449 +msgid "Enable Two Factor Auth" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Enable Two Factor Auth" +msgstr "" + +#. Title of an Onboarding Step +#: website/onboarding_step/enable_website_tracking/enable_website_tracking.json +msgid "Enable Website Tracking" +msgstr "" + +#: printing/doctype/print_format_field_template/print_format_field_template.py:28 +msgid "Enable developer mode to create a standard Print Template" +msgstr "" + +#: website/doctype/web_template/web_template.py:33 +msgid "Enable developer mode to create a standard Web Template" +msgstr "" + +#. Description of the 'Enable Email Notification' (Check) field in DocType +#. 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Enable email notification for any comment or likes received on your Blog Post." +msgstr "" + +#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Enable if on click\n" +"opens modal." +msgstr "" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Enable in-app website tracking" +msgstr "" + +#: public/js/frappe/model/indicator.js:106 +#: public/js/frappe/model/indicator.js:117 +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'Language' +#: core/doctype/language/language.json +msgctxt "Language" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Enabled" +msgstr "" + +#. Label of a Check field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Enabled" +msgstr "" + +#: core/doctype/rq_job/rq_job_list.js:29 +msgid "Enabled Scheduler" +msgstr "Omogućen Planer" + +#: email/doctype/email_account/email_account.py:927 +msgid "Enabled email inbox for user {0}" +msgstr "" + +#: core/doctype/server_script/server_script.py:268 +msgid "Enabled scheduled execution for script {0}" +msgstr "" + +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Enables Calendar and Gantt views." +msgstr "" + +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Enables Calendar and Gantt views." +msgstr "" + +#: email/doctype/email_account/email_account.js:232 +msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" +msgstr "" + +#. Description of a DocType +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + +#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push +#. Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgstr "" + +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Enabling this will submit documents in background" +msgstr "" + +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Enabling this will submit documents in background" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Encrypt Backups" +msgstr "" + +#: utils/password.py:181 +msgid "Encryption key is in invalid format!" +msgstr "" + +#: utils/password.py:195 +msgid "Encryption key is invalid! Please check site_config.json" +msgstr "" + +#: public/js/frappe/utils/common.js:416 +msgid "End Date" +msgstr "" + +#. Label of a Date field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "End Date" +msgstr "" + +#. Label of a Date field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "End Date" +msgstr "" + +#. Label of a Datetime field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "End Date" +msgstr "" + +#. Label of a Select field in DocType 'Calendar View' +#: desk/doctype/calendar_view/calendar_view.json +msgctxt "Calendar View" +msgid "End Date Field" +msgstr "" + +#: website/doctype/web_page/web_page.py:208 +msgid "End Date cannot be before Start Date!" +msgstr "" + +#. Label of a Datetime field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Ended At" +msgstr "" + +#. Label of a Datetime field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Ended At" +msgstr "" + +#. Label of a Data field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Endpoint URL" +msgstr "" + +#. Label of a Section Break field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Endpoints" +msgstr "" + +#. Label of a Datetime field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Ends on" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Energy Point" +msgstr "" + +#. Name of a DocType +#: social/doctype/energy_point_log/energy_point_log.json +msgid "Energy Point Log" +msgstr "" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Energy Point Log" +msgstr "" + +#. Name of a DocType +#: social/doctype/energy_point_rule/energy_point_rule.json +msgid "Energy Point Rule" +msgstr "" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Energy Point Rule" +msgstr "" + +#. Name of a DocType +#: social/doctype/energy_point_settings/energy_point_settings.json +msgid "Energy Point Settings" +msgstr "" + +#: desk/doctype/notification_log/notification_log.py:159 +msgid "Energy Point Update on {0}" +msgstr "" + +#: desk/page/user_profile/user_profile.html:28 +#: desk/page/user_profile/user_profile_controller.js:402 +#: templates/emails/energy_points_summary.html:39 +msgid "Energy Points" +msgstr "" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Energy Points" +msgstr "" + +#. Label of a Data field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Enqueued By" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:107 +msgid "Ensure the user and group search paths are correct." +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:93 +msgid "Enter Client Id and Client Secret in Google Settings." +msgstr "" + +#: templates/includes/login/login.js:359 +msgid "Enter Code displayed in OTP App." +msgstr "" + +#: public/js/frappe/views/communication.js:754 +msgid "Enter Email Recipient(s)" +msgstr "" + +#. Label of a Link field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Enter Form Type" +msgstr "" + +#: public/js/frappe/ui/messages.js:94 +msgctxt "Title of prompt dialog" +msgid "Enter Value" +msgstr "" + +#: public/js/frappe/form/form_tour.js:58 +msgid "Enter a name for this {0}" +msgstr "" + +#. Description of the 'User Defaults' (Table) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"." +msgstr "" + +#: public/js/frappe/views/file/file_view.js:111 +msgid "Enter folder name" +msgstr "" + +#. Description of the 'Static Parameters' (Table) field in DocType 'SMS +#. Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" +msgstr "" + +#. Description of the 'Message Parameter' (Data) field in DocType 'SMS +#. Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Enter url parameter for message" +msgstr "" + +#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS +#. Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Enter url parameter for receiver nos" +msgstr "" + +#: public/js/frappe/ui/messages.js:332 +msgid "Enter your password" +msgstr "" + +#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 +msgid "Entity Name" +msgstr "" + +#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 +msgid "Entity Type" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:16 +msgid "Equals" +msgstr "" + +#: desk/page/backups/backups.js:35 model/base_document.py:723 +#: model/base_document.py:729 public/js/frappe/ui/messages.js:22 +msgid "Error" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Error" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Error" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Label of a Code field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Error" +msgstr "" + +#. Label of a Code field in DocType 'Email Queue Recipient' +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgctxt "Email Queue Recipient" +msgid "Error" +msgstr "" + +#. Label of a Code field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Error" +msgstr "" + +#. Label of a Code field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Error" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Error" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:240 +msgctxt "Title of error message in web form" +msgid "Error" +msgstr "" + +#. Label of a Text field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Error" +msgstr "" + +#: www/error.html:34 +msgid "Error Code: {0}" +msgstr "" + +#. Name of a DocType +#: core/doctype/error_log/error_log.json +msgid "Error Log" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Error Log" +msgid "Error Logs" +msgstr "" + +#. Label of a Text field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Error Message" +msgstr "" + +#: public/js/frappe/form/print_utils.js:126 +msgid "Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." +msgstr "" + +#: email/doctype/email_domain/email_domain.py:32 +msgid "Error connecting via IMAP/POP3: {e}" +msgstr "" + +#: email/doctype/email_domain/email_domain.py:33 +msgid "Error connecting via SMTP: {e}" +msgstr "" + +#: email/doctype/email_domain/email_domain.py:100 +msgid "Error has occurred in {0}" +msgstr "" + +#: public/js/frappe/form/script_manager.js:187 +msgid "Error in Client Script" +msgstr "" + +#: public/js/frappe/form/script_manager.js:241 +msgid "Error in Client Script." +msgstr "" + +#: printing/doctype/letter_head/letter_head.js:21 +msgid "Error in Header/Footer Script" +msgstr "" + +#: email/doctype/notification/notification.py:394 +#: email/doctype/notification/notification.py:510 +#: email/doctype/notification/notification.py:516 +msgid "Error in Notification" +msgstr "" + +#: utils/pdf.py:52 +msgid "Error in print format on line {0}: {1}" +msgstr "" + +#: email/doctype/email_account/email_account.py:614 +msgid "Error while connecting to email account {0}" +msgstr "" + +#: email/doctype/notification/notification.py:507 +msgid "Error while evaluating Notification {0}. Please fix your template." +msgstr "" + +#: model/document.py:818 +msgid "Error: Document has been modified after you have opened it" +msgstr "" + +#: model/base_document.py:737 +msgid "Error: Value missing for {0}: {1}" +msgstr "" + +#. Name of a DocType +#: desk/doctype/event/event.json +msgid "Event" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Event" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Event" +msgstr "" + +#. Label of a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Event Category" +msgstr "" + +#. Label of a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Event Frequency" +msgstr "" + +#. Name of a DocType +#: desk/doctype/event_participants/event_participants.json +msgid "Event Participants" +msgstr "" + +#. Label of a Table field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Event Participants" +msgstr "" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Event Reminders" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:452 +#: integrations/doctype/google_calendar/google_calendar.py:536 +msgid "Event Synced with Google Calendar." +msgstr "" + +#. Label of a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Event Type" +msgstr "" + +#. Label of a Data field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Event Type" +msgstr "" + +#: desk/doctype/event/event.py:261 +msgid "Events in Today's Calendar" +msgstr "" + +#. Description of the Onboarding Step 'Create Custom Fields' +#: custom/onboarding_step/custom_field/custom_field.json +msgid "Every form in ERPNext has a standard set of fields. If you need to capture some information, but there is no standard Field available for it, you can insert Custom Field for it.\n\n" +"Once custom fields are added, you can use them for reports and analytics charts as well.\n" +msgstr "" + +#: public/js/frappe/form/templates/set_sharing.html:11 +msgid "Everyone" +msgstr "" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Everyone" +msgstr "" + +#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard +#. Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" +msgstr "" + +#. Label of a Int field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Exact Copies" +msgstr "" + +#. Label of a HTML field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Example" +msgstr "" + +#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal +#. Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Example: \"/desk\"" +msgstr "" + +#. Description of the 'Path' (Data) field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Example: #Tree/Account" +msgstr "" + +#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Example: 00001" +msgstr "" + +#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." +msgstr "" + +#. Description of the 'Description' (Small Text) field in DocType 'Assignment +#. Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Example: {{ subject }}" +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Excel" +msgstr "" + +#: public/js/frappe/form/controls/password.js:91 +msgid "Excellent" +msgstr "" + +#. Label of a Text field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Exception" +msgstr "" + +#. Label of a Code field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Exception" +msgstr "" + +#. Label of a Long Text field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Exception" +msgstr "" + +#: desk/doctype/system_console/system_console.js:17 +#: desk/doctype/system_console/system_console.js:22 +msgid "Execute" +msgstr "" + +#. Label of a Section Break field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Execute" +msgstr "" + +#: desk/doctype/system_console/system_console.js:10 +msgid "Execute Console script" +msgstr "" + +#: desk/doctype/system_console/system_console.js:18 +msgid "Executing..." +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1978 +msgid "Execution Time: {0} sec" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Executive" +msgstr "" + +#: public/js/frappe/widgets/base_widget.js:157 +msgid "Expand" +msgstr "" + +#: public/js/frappe/form/controls/code.js:147 +msgctxt "Enlarge code field." +msgid "Expand" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1964 +#: public/js/frappe/views/treeview.js:125 +msgid "Expand All" +msgstr "" + +#: public/js/frappe/form/templates/form_sidebar.html:23 +msgid "Experimental" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Expert" +msgstr "" + +#. Label of a Datetime field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Expiration time" +msgstr "" + +#. Label of a Datetime field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Expiration time" +msgstr "" + +#. Label of a Date field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Expire Notification On" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Expired" +msgstr "" + +#. Label of a Int field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Expires In" +msgstr "" + +#. Label of a Int field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Expires In" +msgstr "" + +#. Label of a Date field in DocType 'Document Share Key' +#: core/doctype/document_share_key/document_share_key.json +msgctxt "Document Share Key" +msgid "Expires On" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Expiry time of QR Code Image Page" +msgstr "" + +#: core/doctype/recorder/recorder_list.js:37 +#: public/js/frappe/data_import/data_exporter.js:91 +#: public/js/frappe/data_import/data_exporter.js:242 +#: public/js/frappe/views/reports/query_report.js:1669 +#: public/js/frappe/views/reports/report_view.js:1549 +msgid "Export" +msgstr "" + +#: public/js/frappe/list/list_view.js:2035 +msgctxt "Button in list view actions menu" +msgid "Export" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Export" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Export" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:244 +msgid "Export 1 record" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1560 +msgid "Export All {0} rows?" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:220 +msgid "Export Custom Permissions" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:200 +msgid "Export Customizations" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:14 +msgid "Export Data" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Data Export" +msgid "Export Data" +msgstr "" + +#: core/doctype/data_import/data_import.js:86 +#: public/js/frappe/data_import/import_preview.js:195 +msgid "Export Errored Rows" +msgstr "" + +#. Label of a Data field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Export From" +msgstr "" + +#: core/doctype/data_import/data_import.js:524 +msgid "Export Import Log" +msgstr "" + +#: public/js/frappe/views/reports/report_utils.js:227 +msgctxt "Export report" +msgid "Export Report: {0}" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:26 +msgid "Export Type" +msgstr "" + +#: public/js/frappe/views/file/file_view.js:154 +msgid "Export as zip" +msgstr "" + +#: public/js/frappe/utils/tools.js:11 +msgid "Export not allowed. You need {0} role to export." +msgstr "" + +#. Description of the 'Export without main header' (Check) field in DocType +#. 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Export the data without any header notes and column descriptions" +msgstr "" + +#. Label of a Check field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Export without main header" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:246 +msgid "Export {0} records" +msgstr "" + +#. Label of a Data field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Expose Recipients" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Expression" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Expression" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Expression (old style)" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Expression (old style)" +msgstr "" + +#. Description of the 'Condition' (Data) field in DocType 'Notification +#. Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "Expression, Optional" +msgstr "" + +#. Label of a Section Break field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Extra Parameters" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Facebook" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Failed" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Failed" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Failed" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Failed" +msgstr "" + +#. Label of a Int field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Failed Job Count" +msgstr "" + +#: model/workflow.py:298 +msgid "Failed Transactions" +msgstr "" + +#: utils/synchronization.py:46 +msgid "Failed to aquire lock: {}. Lock may be held by another process." +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:358 +msgid "Failed to change password." +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:220 +msgid "Failed to complete setup" +msgstr "" + +#: integrations/doctype/webhook/webhook.py:151 +msgid "Failed to compute request body: {}" +msgstr "" + +#: printing/doctype/network_printer_settings/network_printer_settings.py:46 +#: printing/doctype/network_printer_settings/network_printer_settings.py:48 +msgid "Failed to connect to server" +msgstr "" + +#: auth.py:654 +msgid "Failed to decode token, please provide a valid base64-encoded token." +msgstr "" + +#: core/doctype/rq_job/rq_job_list.js:33 +msgid "Failed to enable scheduler: {0}" +msgstr "Omogućavanje planera nije uspjelo: {0}" + +#: integrations/doctype/webhook/webhook.py:139 +msgid "Failed to evaluate conditions: {}" +msgstr "" + +#: types/exporter.py:197 +msgid "Failed to export python type hints" +msgstr "" + +#: core/doctype/document_naming_settings/document_naming_settings.py:249 +msgid "Failed to generate names from the series" +msgstr "" + +#: core/doctype/document_naming_settings/document_naming_settings.js:75 +msgid "Failed to generate preview of series" +msgstr "" + +#: handler.py:76 +msgid "Failed to get method for command {0} with {1}" +msgstr "" + +#: api/v2.py:48 +msgid "Failed to get method {0} with {1}" +msgstr "" + +#: model/virtual_doctype.py:63 +msgid "Failed to import virtual doctype {}, is controller file present?" +msgstr "" + +#: utils/image.py:73 +msgid "Failed to optimize image: {0}" +msgstr "" + +#: email/doctype/email_queue/email_queue.py:280 +msgid "Failed to send email with subject:" +msgstr "" + +#: desk/doctype/notification_log/notification_log.py:41 +msgid "Failed to send notification email" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.py:23 +msgid "Failed to update global settings" +msgstr "" + +#: core/doctype/data_import/data_import.js:465 +msgid "Failure" +msgstr "" + +#. Label of a Attach field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "FavIcon" +msgstr "" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Fax" +msgstr "" + +#: website/doctype/blog_post/templates/blog_post_row.html:19 +msgid "Featured" +msgstr "" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Featured" +msgstr "" + +#: public/js/frappe/form/templates/form_sidebar.html:33 +msgid "Feedback" +msgstr "" + +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#. Label of a Section Break field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Feedback" +msgstr "" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Feedback Request" +msgstr "" + +#. Label of a Small Text field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Fetch From" +msgstr "" + +#. Label of a Small Text field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Fetch From" +msgstr "" + +#. Label of a Small Text field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Fetch From" +msgstr "" + +#: website/doctype/website_slideshow/website_slideshow.js:15 +msgid "Fetch Images" +msgstr "" + +#: website/doctype/website_slideshow/website_slideshow.js:13 +msgid "Fetch attached images from document" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Fetch on Save if Empty" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Fetch on Save if Empty" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Fetch on Save if Empty" +msgstr "" + +#: desk/doctype/global_search_settings/global_search_settings.py:61 +msgid "Fetching default Global Search documents." +msgstr "" + +#: desk/page/leaderboard/leaderboard.js:131 +#: public/js/frappe/list/bulk_operations.js:297 +#: public/js/frappe/list/list_view_permission_restrictions.html:3 +#: public/js/frappe/views/reports/query_report.js:235 +#: public/js/frappe/views/reports/query_report.js:1723 +msgid "Field" +msgstr "" + +#. Label of a Select field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Field" +msgstr "" + +#. Label of a Select field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Field" +msgstr "" + +#. Label of a Select field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "Field" +msgstr "" + +#. Label of a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Field" +msgstr "" + +#. Label of a Select field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Field" +msgstr "" + +#. Label of a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Field" +msgstr "" + +#. Label of a Select field in DocType 'Web Form List Column' +#: website/doctype/web_form_list_column/web_form_list_column.json +msgctxt "Web Form List Column" +msgid "Field" +msgstr "" + +#: core/doctype/doctype/doctype.py:416 +msgid "Field \"route\" is mandatory for Web Views" +msgstr "" + +#: core/doctype/doctype/doctype.py:1475 +msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." +msgstr "" + +#: desk/doctype/bulk_update/bulk_update.js:17 +msgid "Field \"value\" is mandatory. Please specify value to be updated" +msgstr "" + +#. Label of a Text field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Field Description" +msgstr "" + +#: core/doctype/doctype/doctype.py:1040 +msgid "Field Missing" +msgstr "" + +#. Label of a Select field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Field Name" +msgstr "" + +#. Label of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Field Name" +msgstr "" + +#: public/js/print_format_builder/utils.js:69 +msgid "Field Template" +msgstr "" + +#. Label of a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Field To Check" +msgstr "" + +#: templates/form_grid/fields.html:40 +msgid "Field Type" +msgstr "" + +#. Label of a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Field Type" +msgstr "" + +#: desk/reportview.py:182 +msgid "Field not permitted in query" +msgstr "" + +#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)" +msgstr "" + +#. Label of a Select field in DocType 'Milestone Tracker' +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgctxt "Milestone Tracker" +msgid "Field to Track" +msgstr "" + +#: custom/doctype/property_setter/property_setter.py:51 +msgid "Field type cannot be changed for {0}" +msgstr "" + +#: database/database.py:838 +msgid "Field {0} does not exist on {1}" +msgstr "" + +#: desk/form/meta.py:203 +msgid "Field {0} is referring to non-existing doctype {1}." +msgstr "" + +#: public/js/frappe/form/form.js:1730 +msgid "Field {0} not found." +msgstr "" + +#: custom/doctype/custom_field/custom_field.js:120 +#: public/js/frappe/form/grid_row.js:430 +msgid "Fieldname" +msgstr "" + +#. Label of a Data field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Fieldname" +msgstr "" + +#. Label of a Select field in DocType 'DocType Layout Field' +#: custom/doctype/doctype_layout_field/doctype_layout_field.json +msgctxt "DocType Layout Field" +msgid "Fieldname" +msgstr "" + +#. Label of a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Fieldname" +msgstr "" + +#. Label of a Data field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Fieldname" +msgstr "" + +#. Label of a Data field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Fieldname" +msgstr "" + +#. Label of a Data field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Fieldname" +msgstr "" + +#. Label of a Select field in DocType 'Webhook Data' +#: integrations/doctype/webhook_data/webhook_data.json +msgctxt "Webhook Data" +msgid "Fieldname" +msgstr "" + +#: core/doctype/doctype/doctype.py:265 +msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1039 +msgid "Fieldname called {0} must exist to enable autonaming" +msgstr "" + +#: database/schema.py:125 database/schema.py:356 +msgid "Fieldname is limited to 64 characters ({0})" +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:195 +msgid "Fieldname not set for Custom Field" +msgstr "" + +#: custom/doctype/custom_field/custom_field.js:107 +msgid "Fieldname which will be the DocType for this link field." +msgstr "" + +#: public/js/form_builder/store.js:175 +msgid "Fieldname {0} appears multiple times" +msgstr "" + +#: database/schema.py:346 +msgid "Fieldname {0} cannot have special characters like {1}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1846 +msgid "Fieldname {0} conflicting with meta object" +msgstr "" + +#: core/doctype/doctype/doctype.py:495 public/js/form_builder/utils.js:302 +msgid "Fieldname {0} is restricted" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_settings.js:111 +msgid "Fields" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form' +#. Label of a Table field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Fields" +msgstr "" + +#. Label of a Table field in DocType 'DocType' +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Fields" +msgstr "" + +#. Label of a Table field in DocType 'DocType Layout' +#: custom/doctype/doctype_layout/doctype_layout.json +msgctxt "DocType Layout" +msgid "Fields" +msgstr "" + +#. Label of a Code field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Fields" +msgstr "" + +#. Label of a HTML field in DocType 'List View Settings' +#. Label of a Code field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Fields" +msgstr "" + +#. Label of a Small Text field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Fields" +msgstr "" + +#. Label of a Table field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Fields" +msgstr "" + +#. Label of a HTML field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Fields Multicheck" +msgstr "" + +#: core/doctype/file/file.py:404 +msgid "Fields `file_name` or `file_url` must be set for File" +msgstr "" + +#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" +msgstr "" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Fieldtype" +msgstr "" + +#. Label of a Select field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Fieldtype" +msgstr "" + +#. Label of a Select field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Fieldtype" +msgstr "" + +#. Label of a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Fieldtype" +msgstr "" + +#. Label of a Data field in DocType 'Web Form List Column' +#: website/doctype/web_form_list_column/web_form_list_column.json +msgctxt "Web Form List Column" +msgid "Fieldtype" +msgstr "" + +#. Label of a Select field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Fieldtype" +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:191 +msgid "Fieldtype cannot be changed from {0} to {1}" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:584 +msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" +msgstr "" + +#. Name of a DocType +#: core/doctype/file/file.json +msgid "File" +msgstr "" + +#. Label of a shortcut in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "File" +msgid "File" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "File" +msgstr "" + +#: core/doctype/file/utils.py:128 +msgid "File '{0}' not found" +msgstr "" + +#. Label of a Check field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "File Backup" +msgstr "" + +#. Label of a Check field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "File Backup" +msgstr "" + +#. Label of a Section Break field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "File Information" +msgstr "" + +#: public/js/frappe/views/file/file_view.js:74 +msgid "File Manager" +msgstr "" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "File Name" +msgstr "" + +#. Label of a Int field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "File Size" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:19 +msgid "File Type" +msgstr "" + +#. Label of a Data field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "File Type" +msgstr "" + +#. Label of a Select field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "File Type" +msgstr "" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "File Type" +msgstr "" + +#. Label of a Code field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "File URL" +msgstr "" + +#: desk/page/backups/backups.py:107 +msgid "File backup is ready" +msgstr "" + +#: core/doctype/file/file.py:577 +msgid "File name cannot have {0}" +msgstr "" + +#: utils/csvutils.py:26 +msgid "File not attached" +msgstr "" + +#: core/doctype/file/file.py:682 public/js/frappe/request.js:197 +#: utils/file_manager.py:221 +msgid "File size exceeded the maximum allowed size of {0} MB" +msgstr "" + +#: public/js/frappe/request.js:195 +msgid "File too big" +msgstr "" + +#: core/doctype/file/file.py:372 +msgid "File type of {0} is not allowed" +msgstr "" + +#: core/doctype/file/file.py:360 core/doctype/file/file.py:420 +msgid "File {0} does not exist" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "File" +msgid "Files" +msgstr "" + +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Files" +msgstr "" + +#: core/doctype/prepared_report/prepared_report.js:8 +#: desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: desk/doctype/number_card/number_card.js:205 +#: desk/doctype/number_card/number_card.js:333 +#: email/doctype/auto_email_report/auto_email_report.js:90 +#: public/js/frappe/list/base_list.js:878 +#: public/js/frappe/ui/filters/filter_list.js:134 +#: website/doctype/web_form/web_form.js:197 +msgid "Filter" +msgstr "" + +#: public/js/frappe/list/list_sidebar.html:35 +msgid "Filter By" +msgstr "" + +#. Label of a Section Break field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Filter Data" +msgstr "" + +#. Label of a HTML field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Filter List" +msgstr "" + +#. Label of a Text field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Filter Meta" +msgstr "" + +#: public/js/frappe/list/list_filter.js:33 +msgid "Filter Name" +msgstr "" + +#. Label of a Data field in DocType 'List Filter' +#: desk/doctype/list_filter/list_filter.json +msgctxt "List Filter" +msgid "Filter Name" +msgstr "" + +#. Label of a HTML field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Filter Values" +msgstr "" + +#: utils/data.py:2019 +msgid "Filter must be a tuple or list (in a list)" +msgstr "" + +#: utils/data.py:2027 +msgid "Filter must have 4 values (doctype, fieldname, operator, value): {0}" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_sidebar.html:3 +msgid "Filter..." +msgstr "" + +#. Label of a Data field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Filtered By" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:33 +msgid "Filtered Records" +msgstr "" + +#: website/doctype/blog_post/blog_post.py:262 +#: website/doctype/help_article/help_article.py:91 www/list.py:45 +msgid "Filtered by \"{0}\"" +msgstr "" + +#. Label of a Code field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Filters" +msgstr "" + +#. Label of a Text field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Filters" +msgstr "" + +#. Label of a Section Break field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Filters" +msgstr "" + +#. Label of a Code field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Filters" +msgstr "" + +#. Label of a Long Text field in DocType 'List Filter' +#: desk/doctype/list_filter/list_filter.json +msgctxt "List Filter" +msgid "Filters" +msgstr "" + +#. Label of a Section Break field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Filters" +msgstr "" + +#. Label of a Section Break field in DocType 'Prepared Report' +#. Label of a Small Text field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Filters" +msgstr "" + +#. Label of a Section Break field in DocType 'Report' +#. Label of a Table field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Filters" +msgstr "" + +#: public/js/frappe/ui/filters/filter_list.js:133 +msgid "Filters {0}" +msgstr "" + +#. Label of a Code field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Filters Configuration" +msgstr "" + +#. Label of a HTML field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Filters Display" +msgstr "" + +#. Label of a Code field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Filters JSON" +msgstr "" + +#. Label of a Code field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Filters JSON" +msgstr "" + +#. Label of a Section Break field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Filters Section" +msgstr "" + +#: public/js/frappe/form/controls/link.js:488 +msgid "Filters applied for {0}" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:186 +msgid "Filters saved" +msgstr "" + +#. Description of the 'Script' (Code) field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Filters will be accessible via filters.

Send output as result = [result], or for old style data = [columns], [result]" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1350 +msgid "Filters:" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:572 +msgid "Find '{0}' in ..." +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:327 +#: public/js/frappe/ui/toolbar/awesome_bar.js:328 +#: public/js/frappe/ui/toolbar/search_utils.js:141 +#: public/js/frappe/ui/toolbar/search_utils.js:144 +msgid "Find {0} in {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Finished" +msgstr "" + +#. Label of a Datetime field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Finished At" +msgstr "" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "First Day of the Week" +msgstr "" + +#: www/complete_signup.html:15 +msgid "First Name" +msgstr "" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "First Name" +msgstr "" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "First Name" +msgstr "" + +#. Label of a Data field in DocType 'Success Action' +#: core/doctype/success_action/success_action.json +msgctxt "Success Action" +msgid "First Success Message" +msgstr "" + +#: core/report/transaction_log_report/transaction_log_report.py:49 +msgid "First Transaction" +msgstr "" + +#: core/doctype/data_export/exporter.py:185 +msgid "First data column must be blank." +msgstr "" + +#: website/doctype/website_slideshow/website_slideshow.js:7 +msgid "First set the name and save the record." +msgstr "" + +#. Label of a Data field in DocType 'Language' +#: core/doctype/language/language.json +msgctxt "Language" +msgid "Flag" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Float" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Float" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Float" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Float" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Float" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Float" +msgstr "" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Float Precision" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Fold" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Fold" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Fold" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Fold" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Fold" +msgstr "" + +#: core/doctype/doctype/doctype.py:1399 +msgid "Fold can not be at the end of the form" +msgstr "" + +#: core/doctype/doctype/doctype.py:1397 +msgid "Fold must come before a Section Break" +msgstr "" + +#. Label of a Link field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Folder" +msgstr "" + +#. Label of a Data field in DocType 'IMAP Folder' +#: email/doctype/imap_folder/imap_folder.json +msgctxt "IMAP Folder" +msgid "Folder Name" +msgstr "" + +#: public/js/frappe/views/file/file_view.js:100 +msgid "Folder name should not include '/' (slash)" +msgstr "" + +#: core/doctype/file/file.py:466 +msgid "Folder {0} is not empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Folio" +msgstr "" + +#: public/js/frappe/form/sidebar/form_sidebar.js:232 +#: public/js/frappe/form/templates/form_sidebar.html:129 +msgid "Follow" +msgstr "" + +#: public/js/frappe/form/templates/form_sidebar.html:124 +msgid "Followed by" +msgstr "" + +#: email/doctype/auto_email_report/auto_email_report.py:130 +msgid "Following Report Filters have missing values:" +msgstr "" + +#: website/doctype/web_form/web_form.py:108 +msgid "Following fields are missing:" +msgstr "" + +#: public/js/frappe/ui/field_group.js:133 +msgid "Following fields have invalid values:" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:353 +msgid "Following fields have missing values" +msgstr "" + +#: public/js/frappe/ui/field_group.js:120 +msgid "Following fields have missing values:" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:30 +msgid "Following links are broken in the email content: {0}" +msgstr "" + +#. Label of a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Font" +msgstr "" + +#. Label of a Data field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Font Properties" +msgstr "" + +#. Label of a Int field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Font Size" +msgstr "" + +#. Label of a Float field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Font Size" +msgstr "" + +#. Label of a Data field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Font Size" +msgstr "" + +#. Label of a Section Break field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Fonts" +msgstr "" + +#. Label of a Text Editor field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Footer" +msgstr "" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Footer" +msgstr "" + +#. Label of a Section Break field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Footer" +msgstr "" + +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer" +msgstr "" + +#. Label of a Small Text field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer \"Powered By\"" +msgstr "" + +#. Label of a Select field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer Based On" +msgstr "" + +#. Label of a Text Editor field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Footer Content" +msgstr "" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer Details" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer HTML" +msgstr "" + +#: printing/doctype/letter_head/letter_head.py:75 +msgid "Footer HTML set from attachment {0}" +msgstr "" + +#. Label of a Section Break field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer Image" +msgstr "" + +#. Label of a Section Break field in DocType 'Website Settings' +#. Label of a Table field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer Items" +msgstr "" + +#. Label of a Attach Image field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer Logo" +msgstr "" + +#. Label of a Code field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer Script" +msgstr "" + +#. Label of a Link field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer Template" +msgstr "" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Footer Template Values" +msgstr "" + +#: printing/page/print/print.js:116 +msgid "Footer might not be visible as {0} option is disabled
" +msgstr "" + +#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer will display correctly only in PDF" +msgstr "" + +#. Description of the 'Row Name' (Data) field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "For DocType Link / DocType Action" +msgstr "" + +#. Label of a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "For Document Event" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:155 +msgid "For Document Type" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:568 +msgid "For Example: {} Open" +msgstr "" + +#. Description of the 'Options' (Small Text) field in DocType 'Customize Form +#. Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "For Links, enter the DocType as range.\n" +"For Select, enter list of Options, each on a new line." +msgstr "" + +#. Description of the 'Options' (Small Text) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "For Links, enter the DocType as range.\n" +"For Select, enter list of Options, each on a new line." +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:10 +#: core/doctype/user_permission/user_permission_list.js:148 +msgid "For User" +msgstr "" + +#. Label of a Link field in DocType 'List Filter' +#: desk/doctype/list_filter/list_filter.json +msgctxt "List Filter" +msgid "For User" +msgstr "" + +#. Label of a Link field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "For User" +msgstr "" + +#. Label of a Data field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "For User" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "For Value" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1975 +#: public/js/frappe/views/reports/report_view.js:96 +msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." +msgstr "" + +#: 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 "" + +#: printing/page/print_format_builder/print_format_builder.js:744 +msgid "For example: If you want to include the document ID, use {0}" +msgstr "" + +#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "For example: {} Open" +msgstr "" + +#. Description of the 'Client Script' (Code) field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "For help see Client Script API and Examples" +msgstr "" + +#. Description of the 'Enable Automatic Linking in Documents' (Check) field in +#. DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "For more information, click here." +msgstr "" + +#: 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' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com" +msgstr "" + +#: core/doctype/data_export/exporter.py:197 +msgid "For updating, you can update only selective columns." +msgstr "" + +#: core/doctype/doctype/doctype.py:1690 +msgid "For {0} at level {1} in {2} in row {3}" +msgstr "" + +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgctxt "OAuth Provider Settings" +msgid "Force" +msgstr "" + +#. Label of a Check field in DocType 'Package Import' +#: core/doctype/package_import/package_import.json +msgctxt "Package Import" +msgid "Force" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Force Re-route to Default View" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Force Re-route to Default View" +msgstr "" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Force Show" +msgstr "" + +#: core/doctype/rq_job/rq_job.js:13 +msgid "Force Stop job" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Force User to Reset Password" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Force Web Capture Mode for Uploads" +msgstr "" + +#: www/login.html:35 +msgid "Forgot Password?" +msgstr "" + +#: printing/page/print/print.js:83 +msgid "Form" +msgstr "" + +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Form" +msgstr "" + +#. Label of a Tab Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Form" +msgstr "" + +#. Label of a Tab Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Form" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Form" +msgstr "" + +#. Label of a Tab Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Form" +msgstr "" + +#. Label of a HTML field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Form Builder" +msgstr "" + +#. Label of a HTML field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Form Builder" +msgstr "" + +#. Label of a Code field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Form Dict" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Form Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Form Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Form Settings" +msgstr "" + +#. Name of a DocType +#: desk/doctype/form_tour/form_tour.json +msgid "Form Tour" +msgstr "" + +#. Label of a Link field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Form Tour" +msgstr "" + +#. Name of a DocType +#: desk/doctype/form_tour_step/form_tour_step.json +msgid "Form Tour Step" +msgstr "" + +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Form URL-Encoded" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:567 +msgid "Format" +msgstr "" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Format" +msgstr "" + +#. Label of a Data field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Format" +msgstr "" + +#. Label of a Code field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Format Data" +msgstr "" + +#: core/doctype/communication/communication.js:70 +msgid "Forward" +msgstr "" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Forward To Email Address" +msgstr "" + +#. Label of a Data field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Fraction" +msgstr "" + +#. Label of a Int field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Fraction Units" +msgstr "" + +#: www/login.html:61 www/login.html:142 www/login.py:44 www/login.py:133 +msgid "Frappe" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Frappe" +msgstr "" + +#: public/js/frappe/ui/toolbar/about.js:4 +msgid "Frappe Framework" +msgstr "" + +#: public/js/frappe/ui/theme_switcher.js:59 +msgid "Frappe Light" +msgstr "" + +#. Label of a standard help item +#. Type: Action +#: hooks.py +msgid "Frappe Support" +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "Frappe page builder using components" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat_schedule.html:5 +#: public/js/frappe/utils/common.js:395 +msgid "Frequency" +msgstr "" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Frequency" +msgstr "" + +#. Label of a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Frequency" +msgstr "" + +#. Label of a Select field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Frequency" +msgstr "" + +#. Label of a Select field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Frequency" +msgstr "" + +#. Label of a Select field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Frequency" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Friday" +msgstr "" + +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Friday" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Friday" +msgstr "" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Friday" +msgstr "" + +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Friday" +msgstr "" + +#: public/js/frappe/views/communication.js:185 +#: public/js/frappe/views/inbox/inbox_view.js:70 +msgid "From" +msgstr "" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "From" +msgstr "" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "From" +msgstr "" + +#: website/report/website_analytics/website_analytics.js:8 +msgid "From Date" +msgstr "" + +#. Label of a Date field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "From Date" +msgstr "" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "From Date Field" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1689 +msgid "From Document Type" +msgstr "" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "From Full Name" +msgstr "" + +#. Label of a Link field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "From User" +msgstr "" + +#: public/js/frappe/utils/diffview.js:31 +msgid "From version" +msgstr "" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgctxt "Dashboard Chart Link" +msgid "Full" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:464 templates/signup.html:4 +msgid "Full Name" +msgstr "" + +#. Label of a Data field in DocType 'About Us Team Member' +#: website/doctype/about_us_team_member/about_us_team_member.json +msgctxt "About Us Team Member" +msgid "Full Name" +msgstr "" + +#. Label of a Data field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Full Name" +msgstr "" + +#. Label of a Data field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Full Name" +msgstr "" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Full Name" +msgstr "" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Full Name" +msgstr "" + +#: printing/page/print/print.js:67 +#: public/js/frappe/form/templates/print_layout.html:42 +msgid "Full Page" +msgstr "" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Full Width" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:245 +#: public/js/frappe/widgets/widget_dialog.js:705 +msgid "Function" +msgstr "" + +#. Label of a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Function" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:712 +msgid "Function Based On" +msgstr "" + +#: __init__.py:933 +msgid "Function {0} is not whitelisted." +msgstr "" + +#: public/js/frappe/views/treeview.js:402 +msgid "Further nodes can be only created under 'Group' type nodes" +msgstr "" + +#: core/doctype/communication/communication.js:291 +msgid "Fw: {0}" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "GET" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "GMail" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "GNU Affero General Public License" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "GNU General Public License" +msgstr "" + +#: public/js/frappe/views/gantt/gantt_view.js:10 +msgid "Gantt" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Gantt" +msgstr "" + +#. Name of a DocType +#: contacts/doctype/gender/gender.json +msgid "Gender" +msgstr "" + +#. Label of a Link field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Gender" +msgstr "" + +#. Label of a Data field in DocType 'Gender' +#: contacts/doctype/gender/gender.json +msgctxt "Gender" +msgid "Gender" +msgstr "" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Gender" +msgstr "" + +#: www/contact.html:29 +msgid "General" +msgstr "" + +#. Title of an Onboarding Step +#: custom/onboarding_step/report_builder/report_builder.json +msgid "Generate Custom Reports" +msgstr "" + +#. Label of a Button field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Generate Keys" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:807 +msgid "Generate New Report" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:368 +msgid "Generate Random Password" +msgstr "" + +#: public/js/frappe/ui/toolbar/toolbar.js:147 +#: public/js/frappe/utils/utils.js:1763 +msgid "Generate Tracking URL" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Geolocation" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Geolocation" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Geolocation" +msgstr "" + +#: email/doctype/notification/notification.js:170 +msgid "Get Alerts for Today" +msgstr "" + +#: desk/page/backups/backups.js:19 +msgid "Get Backup Encryption Key" +msgstr "" + +#. Label of a Button field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Get Contacts" +msgstr "" + +#: website/doctype/web_form/web_form.js:93 +msgid "Get Fields" +msgstr "" + +#: printing/doctype/letter_head/letter_head.js:32 +msgid "Get Header and Footer wkhtmltopdf variables" +msgstr "" + +#: public/js/frappe/form/multi_select_dialog.js:85 +msgid "Get Items" +msgstr "" + +#: integrations/doctype/connected_app/connected_app.js:6 +msgid "Get OpenID Configuration" +msgstr "" + +#: www/printview.html:22 +msgid "Get PDF" +msgstr "" + +#. Description of the 'Try a Naming Series' (Data) field in DocType 'Document +#. Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Get a preview of generated names with a series." +msgstr "" + +#. Description of the 'Email Threads on Assigned Document' (Check) field in +#. DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +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' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Get your globally recognized avatar from Gravatar.com" +msgstr "" + +#. Label of a Data field in DocType 'Installed Application' +#: core/doctype/installed_application/installed_application.json +msgctxt "Installed Application" +msgid "Git Branch" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "GitHub" +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "Github flavoured markdown syntax" +msgstr "" + +#: social/doctype/energy_point_settings/energy_point_settings.js:7 +#: social/doctype/energy_point_settings/energy_point_settings.js:14 +msgid "Give Review Points" +msgstr "" + +#. Name of a DocType +#: desk/doctype/global_search_doctype/global_search_doctype.json +msgid "Global Search DocType" +msgstr "" + +#: desk/doctype/global_search_settings/global_search_settings.js:24 +msgid "Global Search Document Types Reset." +msgstr "" + +#. Name of a DocType +#: desk/doctype/global_search_settings/global_search_settings.json +msgid "Global Search Settings" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:121 +msgid "Global Shortcuts" +msgstr "" + +#. Label of a Check field in DocType 'Email Unsubscribe' +#: email/doctype/email_unsubscribe/email_unsubscribe.json +msgctxt "Email Unsubscribe" +msgid "Global Unsubscribe" +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:68 +#: public/js/frappe/form/toolbar.js:767 +msgid "Go" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:246 +#: public/js/frappe/widgets/onboarding_widget.js:326 +msgid "Go Back" +msgstr "" + +#: 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' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Go to Page" +msgstr "" + +#: public/js/workflow_builder/workflow_builder.bundle.js:41 +msgid "Go to Workflow" +msgstr "" + +#: desk/doctype/workspace/workspace.js:18 +msgid "Go to Workspace" +msgstr "" + +#: public/js/frappe/form/form.js:144 +msgid "Go to next record" +msgstr "" + +#: public/js/frappe/form/form.js:154 +msgid "Go to previous record" +msgstr "" + +#: 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' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Go to this URL after completing the form" +msgstr "" + +#: core/doctype/doctype/doctype.js:54 +#: custom/doctype/client_script/client_script.js:10 +msgid "Go to {0}" +msgstr "" + +#: core/doctype/data_import/data_import.js:92 +#: core/doctype/doctype/doctype.js:58 +#: custom/doctype/customize_form/customize_form.js:104 +#: custom/doctype/doctype_layout/doctype_layout.js:42 +#: workflow/doctype/workflow/workflow.js:44 +msgid "Go to {0} List" +msgstr "" + +#: core/doctype/page/page.js:11 +msgid "Go to {0} Page" +msgstr "" + +#: utils/goal.py:115 utils/goal.py:122 +msgid "Goal" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Google" +msgstr "" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Google Analytics ID" +msgstr "" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Google Analytics anonymise IP" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/google_calendar/google_calendar.json +msgid "Google Calendar" +msgstr "" + +#. Label of a Section Break field in DocType 'Event' +#. Label of a Link field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Google Calendar" +msgstr "" + +#. Label of a Section Break field in DocType 'Google Calendar' +#. Label of a Link in the Integrations Workspace +#: integrations/doctype/google_calendar/google_calendar.json +#: integrations/workspace/integrations/integrations.json +msgctxt "Google Calendar" +msgid "Google Calendar" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:776 +msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:252 +msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:572 +msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:289 +msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." +msgstr "" + +#: integrations/doctype/google_contacts/google_contacts.py:232 +msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:455 +msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:539 +msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." +msgstr "" + +#. Label of a Data field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Google Calendar Event ID" +msgstr "" + +#. Label of a Data field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Google Calendar ID" +msgstr "" + +#. Label of a Data field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Google Calendar ID" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:167 +msgid "Google Calendar has been configured." +msgstr "" + +#. Name of a DocType +#: integrations/doctype/google_contacts/google_contacts.json +msgid "Google Contacts" +msgstr "" + +#. Label of a Section Break field in DocType 'Contact' +#. Label of a Link field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Google Contacts" +msgstr "" + +#. Label of a Section Break field in DocType 'Google Contacts' +#. Label of a Link in the Integrations Workspace +#: integrations/doctype/google_contacts/google_contacts.json +#: integrations/workspace/integrations/integrations.json +msgctxt "Google Contacts" +msgid "Google Contacts" +msgstr "" + +#: integrations/doctype/google_contacts/google_contacts.py:137 +msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." +msgstr "" + +#: integrations/doctype/google_contacts/google_contacts.py:294 +msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." +msgstr "" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Google Contacts Id" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/google_drive/google_drive.json +msgid "Google Drive" +msgstr "" + +#. Label of a Section Break field in DocType 'Google Drive' +#. Label of a Link in the Integrations Workspace +#: integrations/doctype/google_drive/google_drive.json +#: integrations/workspace/integrations/integrations.json +msgctxt "Google Drive" +msgid "Google Drive" +msgstr "" + +#: integrations/doctype/google_drive/google_drive.py:117 +msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}" +msgstr "" + +#: integrations/doctype/google_drive/google_drive.py:132 +msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}" +msgstr "" + +#: integrations/doctype/google_drive/google_drive.py:193 +msgid "Google Drive - Could not locate - {0}" +msgstr "" + +#: integrations/doctype/google_drive/google_drive.py:204 +msgid "Google Drive Backup Successful." +msgstr "" + +#. Label of a Section Break field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "Google Drive Picker" +msgstr "" + +#. Label of a Check field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "Google Drive Picker Enabled" +msgstr "" + +#. Label of a Data field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Google Font" +msgstr "" + +#. Label of a Data field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Google Font" +msgstr "" + +#. Label of a Data field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Google Meet Link" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgid "Google Services" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/google_settings/google_settings.json +msgid "Google Settings" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Google Settings" +msgid "Google Settings" +msgstr "" + +#: utils/csvutils.py:201 +msgid "Google Sheets URL is invalid or not publicly accessible." +msgstr "" + +#: utils/csvutils.py:206 +msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." +msgstr "" + +#. Label of a HTML field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Google Snippet Preview" +msgstr "" + +#. Label of a Select field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Grant Type" +msgstr "" + +#: public/js/frappe/form/dashboard.js:34 +#: public/js/frappe/form/templates/form_dashboard.html:10 +msgid "Graph" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Gray" +msgstr "" + +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Gray" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Green" +msgstr "" + +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Green" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:126 +msgid "Grid Shortcuts" +msgstr "" + +#. Label of a Data field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Group" +msgstr "" + +#. Label of a Data field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Group" +msgstr "" + +#. Label of a Data field in DocType 'Website Sidebar Item' +#: website/doctype/website_sidebar_item/website_sidebar_item.json +msgctxt "Website Sidebar Item" +msgid "Group" +msgstr "" + +#: website/report/website_analytics/website_analytics.js:32 +msgid "Group By" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Group By" +msgstr "" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Group By Based On" +msgstr "" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Group By Type" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:398 +msgid "Group By field is required to create a dashboard chart" +msgstr "" + +#: public/js/frappe/views/treeview.js:401 +msgid "Group Node" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Group Object Class" +msgstr "" + +#: public/js/frappe/ui/group_by/group_by.js:413 +msgid "Grouped by {0}" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "HEAD" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "HH:mm" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "HH:mm:ss" +msgstr "" + +#: printing/doctype/print_format/print_format.py:90 +#: website/doctype/web_page/web_page.js:92 +msgid "HTML" +msgstr "" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "HTML" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "HTML" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "HTML" +msgstr "" + +#. Label of a Section Break field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "HTML" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "HTML" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "HTML" +msgstr "" + +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "HTML" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "HTML" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "HTML" +msgstr "" + +#. Label of a Code field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "HTML" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "HTML" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "HTML" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "HTML Editor" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "HTML Editor" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "HTML Editor" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "HTML Page" +msgstr "" + +#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "HTML for header section. Optional" +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "HTML with jinja support" +msgstr "" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgctxt "Dashboard Chart Link" +msgid "Half" +msgstr "" + +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Half Yearly" +msgstr "" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Half Yearly" +msgstr "" + +#: public/js/frappe/utils/common.js:402 +msgid "Half-yearly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Half-yearly" +msgstr "" + +#. Label of a Check field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Has Attachment" +msgstr "" + +#. Name of a DocType +#: core/doctype/has_domain/has_domain.json +msgid "Has Domain" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Has Next Condition" +msgstr "" + +#. Name of a DocType +#: core/doctype/has_role/has_role.json +msgid "Has Role" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Has Web View" +msgstr "" + +#: templates/signup.html:19 +msgid "Have an account? Login" +msgstr "" + +#. Label of a Section Break field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Header" +msgstr "" + +#. Label of a Check field in DocType 'SMS Parameter' +#: core/doctype/sms_parameter/sms_parameter.json +msgctxt "SMS Parameter" +msgid "Header" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Header" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Website Slideshow' +#: website/doctype/website_slideshow/website_slideshow.json +msgctxt "Website Slideshow" +msgid "Header" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Header HTML" +msgstr "" + +#: printing/doctype/letter_head/letter_head.py:63 +msgid "Header HTML set from attachment {0}" +msgstr "" + +#. Label of a Code field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Header Script" +msgstr "" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Header and Breadcrumbs" +msgstr "" + +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Header, Robots" +msgstr "" + +#: printing/doctype/letter_head/letter_head.js:30 +msgid "Header/Footer scripts can be used to add dynamic behaviours." +msgstr "" + +#. Label of a Table field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Headers" +msgstr "" + +#. Label of a Code field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Headers" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:602 +msgid "Heading" +msgstr "" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Heading" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Heading" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Heading" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Heading" +msgstr "" + +#. Label of a Data field in DocType 'Website Slideshow Item' +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgctxt "Website Slideshow Item" +msgid "Heading" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Heatmap" +msgstr "" + +#: templates/emails/new_user.html:2 +msgid "Hello" +msgstr "" + +#: public/js/frappe/form/templates/form_sidebar.html:40 +#: public/js/frappe/form/workflow.js:23 +#: public/js/frappe/ui/toolbar/navbar.html:86 public/js/frappe/utils/help.js:27 +msgid "Help" +msgstr "" + +#. Label of a HTML field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Help" +msgstr "" + +#. Label of a Section Break field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Help" +msgstr "" + +#. Name of a DocType +#: website/doctype/help_article/help_article.json +msgid "Help Article" +msgstr "" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Help Article" +msgid "Help Article" +msgstr "" + +#. Label of a Int field in DocType 'Help Category' +#: website/doctype/help_category/help_category.json +msgctxt "Help Category" +msgid "Help Articles" +msgstr "" + +#. Name of a DocType +#: website/doctype/help_category/help_category.json +msgid "Help Category" +msgstr "" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Help Category" +msgid "Help Category" +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:83 +msgid "Help Dropdown" +msgstr "" + +#. Label of a Table field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Help Dropdown" +msgstr "" + +#. Label of a HTML field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Help HTML" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:149 +msgid "Help on Search" +msgstr "" + +#. Description of the 'Content' (Text Editor) field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")" +msgstr "" + +#. Label of a Int field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Helpful" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Helvetica" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Helvetica Neue" +msgstr "" + +#: public/js/frappe/utils/utils.js:1760 +msgid "Here's your tracking URL" +msgstr "" + +#: www/qrcode.html:9 +msgid "Hi {0}" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_field.html:3 +msgid "Hidden" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Hidden" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Hidden" +msgstr "" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Hidden" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Hidden" +msgstr "" + +#. Label of a Check field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Hidden" +msgstr "" + +#. Label of a Check field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Hidden" +msgstr "" + +#. Label of a Check field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Hidden" +msgstr "" + +#. Label of a Check field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Hidden" +msgstr "" + +#. Label of a Check field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Hidden" +msgstr "" + +#. Label of a Section Break field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Hidden Fields" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:825 +#: public/js/frappe/widgets/base_widget.js:46 +#: public/js/frappe/widgets/base_widget.js:176 +#: templates/includes/login/login.js:83 +msgid "Hide" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Hide" +msgstr "" + +#. Label of a Check field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Hide Block" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Hide Border" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Hide Border" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Hide Border" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Hide Buttons" +msgstr "" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Hide CTA" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Hide Copy" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Hide Copy" +msgstr "" + +#. Label of a Check field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Hide Custom DocTypes and Reports" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Hide Days" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Hide Days" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Hide Days" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:96 +msgid "Hide Descendants" +msgstr "" + +#. Label of a Check field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Hide Descendants" +msgstr "" + +#: www/error.html:41 www/error.html:56 +msgid "Hide Error" +msgstr "" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Hide Login" +msgstr "" + +#: public/js/form_builder/form_builder.bundle.js:43 +#: public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Hide Preview" +msgstr "" + +#. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Hide Previous, Next and Close button on highlight dialog." +msgstr "" + +#: public/js/frappe/list/list_filter.js:87 +msgid "Hide Saved" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Hide Seconds" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Hide Seconds" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Hide Seconds" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Hide Sidebar, Menu, and Comments" +msgstr "" + +#. Label of a Check field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Hide Standard Menu" +msgstr "" + +#: public/js/frappe/list/list_view.js:1612 +msgid "Hide Tags" +msgstr "" + +#: public/js/frappe/views/calendar/calendar.js:185 +msgid "Hide Weekends" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:826 +msgid "Hide Workspace" +msgstr "" + +#. Description of the 'Hide Descendants' (Check) field in DocType 'User +#. Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Hide descendant records of For Value." +msgstr "" + +#: public/js/frappe/form/layout.js:260 +msgid "Hide details" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Hide footer in auto email reports" +msgstr "" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Hide footer signup" +msgstr "" + +#: public/js/frappe/form/sidebar/assign_to.js:198 +msgid "High" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "High" +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Higher priority rule will be applied first" +msgstr "" + +#. Label of a Text field in DocType 'Company History' +#: website/doctype/company_history/company_history.json +msgctxt "Company History" +msgid "Highlight" +msgstr "" + +#: www/update-password.html:274 +msgid "Hint: Include symbols, numbers and capital letters in the password" +msgstr "" + +#: core/doctype/file/utils.py:28 public/js/frappe/views/file/file_view.js:67 +#: public/js/frappe/views/file/file_view.js:88 +#: public/js/frappe/views/pageview.js:153 templates/doc.html:19 +#: templates/includes/navbar/navbar.html:9 +#: website/doctype/blog_post/blog_post.py:153 +#: website/doctype/blog_post/blog_post.py:265 +#: website/doctype/blog_post/blog_post.py:267 +#: website/web_template/primary_navbar/primary_navbar.html:9 www/contact.py:22 +#: www/error.html:30 www/login.html:150 www/message.html:34 +msgid "Home" +msgstr "" + +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Home" +msgstr "" + +#. Label of a Data field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Home Page" +msgstr "" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Home Page" +msgstr "" + +#. Label of a Code field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Home Settings" +msgstr "" + +#: core/doctype/file/test_file.py:303 core/doctype/file/test_file.py:305 +#: core/doctype/file/test_file.py:369 +msgid "Home/Test Folder 1" +msgstr "" + +#: core/doctype/file/test_file.py:358 +msgid "Home/Test Folder 1/Test Folder 3" +msgstr "" + +#: core/doctype/file/test_file.py:314 +msgid "Home/Test Folder 2" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Hourly" +msgstr "" + +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Hourly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Hourly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Hourly Long" +msgstr "" + +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Hourly Long" +msgstr "" + +#. Description of the 'Password Reset Link Generation Limit' (Int) field in +#. DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Hourly rate limit for generating password reset links" +msgstr "" + +#. Description of the 'Number Format' (Select) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "How should this currency be formatted? If not set, will use system defaults" +msgstr "" + +#: core/doctype/data_import/importer.py:1115 +#: core/doctype/data_import/importer.py:1121 +#: core/doctype/data_import/importer.py:1186 +#: core/doctype/data_import/importer.py:1189 desk/report/todo/todo.py:36 +#: model/meta.py:45 public/js/frappe/data_import/data_exporter.js:329 +#: public/js/frappe/data_import/data_exporter.js:344 +#: public/js/frappe/list/list_view.js:356 +#: public/js/frappe/list/list_view.js:420 public/js/frappe/model/meta.js:197 +#: public/js/frappe/model/model.js:112 +msgid "ID" +msgstr "" + +#: desk/reportview.py:435 public/js/frappe/views/reports/report_view.js:917 +msgctxt "Label of name column in report" +msgid "ID" +msgstr "" + +#. Description of the 'Field Name' (Data) field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "ID (name) of the entity whose property is to be set" +msgstr "" + +#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique." +msgstr "" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "IMAP Details" +msgstr "" + +#. Name of a DocType +#: email/doctype/imap_folder/imap_folder.json +msgid "IMAP Folder" +msgstr "" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "IMAP Folder" +msgstr "" + +#. Label of a Table field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "IMAP Folder" +msgstr "" + +#. Label of a Data field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "IP Address" +msgstr "" + +#. Label of a Data field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "IP Address" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:643 +#: public/js/frappe/views/workspace/workspace.js:971 +#: public/js/frappe/views/workspace/workspace.js:1216 +msgid "Icon" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Icon" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Icon" +msgstr "" + +#. Label of a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Icon" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Icon" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Icon" +msgstr "" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Icon" +msgstr "" + +#. Label of a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Icon" +msgstr "" + +#. Label of a Icon field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Icon" +msgstr "" + +#. Label of a Data field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Icon" +msgstr "" + +#. Label of a Data field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Icon" +msgstr "" + +#. Description of the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Icon will appear on the button" +msgstr "" + +#. Label of a Section Break field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Identity Details" +msgstr "" + +#. Label of a Int field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Idx" +msgstr "" + +#. Description of the 'Apply Strict User Permissions' (Check) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" +msgstr "" + +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "If Checked workflow status will not override status in list view" +msgstr "" + +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "If Checked workflow status will not override status in list view" +msgstr "" + +#: core/doctype/doctype/doctype.py:1702 public/js/frappe/roles_editor.js:66 +msgid "If Owner" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:25 +msgid "If a Role does not have access at Level 0, then higher levels are meaningless." +msgstr "" + +#. Description of the 'Is Active' (Check) field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "If checked, all other workflows become inactive." +msgstr "" + +#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print +#. Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive" +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "If checked, users will not see the Confirm Access dialog." +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "If disabled, this role will be removed from all users." +msgstr "" + +#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth +#. Enabled' (Check) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" +msgstr "" + +#. Description of the 'Bypass restricted IP Address check If Two Factor Auth +#. Enabled' (Check) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" +msgstr "" + +#. Description of the 'Track Changes' (Check) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "If enabled, changes to the document are tracked and shown in timeline" +msgstr "" + +#. Description of the 'Track Views' (Check) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "If enabled, document views are tracked, this can happen multiple times" +msgstr "" + +#. Description of the 'Track Seen' (Check) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "If enabled, the document is marked as seen, the first time a user opens it" +msgstr "" + +#. Description of the 'Send System Notification' (Check) field in DocType +#. 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." +msgstr "" + +#. Description of the 'Enable Password Policy' (Check) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong." +msgstr "" + +#. Description of the 'Bypass Two Factor Auth for users who login from +#. restricted IP Address' (Check) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" +msgstr "" + +#. Description of the 'Notify Users On Every Login' (Check) field in DocType +#. 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." +msgstr "" + +#. Description of the 'Default Workspace' (Link) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "If non standard port (e.g. 587)" +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" +msgstr "" + +#. Description of the 'Currency Precision' (Select) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "If not set, the currency precision will depend on number format" +msgstr "" + +#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." +msgstr "" + +#. Description of the 'Condition' (Code) field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed'\n" +msgstr "" + +#. Description of the 'User Type' (Link) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:38 +msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." +msgstr "" + +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom +#. Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "" + +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "" + +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "If user is the owner" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "If user is the owner" +msgstr "" + +#: core/doctype/data_export/exporter.py:204 +msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." +msgstr "" + +#: core/doctype/data_export/exporter.py:188 +msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." +msgstr "" + +#: core/doctype/data_export/exporter.py:186 +msgid "If you are uploading new records, leave the \"name\" (ID) column blank." +msgstr "" + +#: utils/password.py:197 +msgid "If you have recently restored the site you may need to copy the site config contaning original Encryption Key." +msgstr "" + +#: core/doctype/doctype/doctype.js:80 +msgid "If you just want to customize for your site, use {0} instead." +msgstr "" + +#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "If you set this, this Item will come in a drop-down under the selected parent." +msgstr "" + +#: templates/emails/administrator_logged_in.html:3 +msgid "If you think this is unauthorized, please change the Administrator password." +msgstr "" + +#. Description of the 'Source Text' (Code) field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Ignore User Permissions" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Ignore User Permissions" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Ignore User Permissions" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Ignore XSS Filter" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Ignore XSS Filter" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Ignore XSS Filter" +msgstr "" + +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Ignore attachments over this size" +msgstr "" + +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Ignore attachments over this size" +msgstr "" + +#. Label of a Table field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Ignored Apps" +msgstr "" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:348 +msgid "Illegal Access Token. Please try again" +msgstr "" + +#: model/workflow.py:139 +msgid "Illegal Document Status for {0}" +msgstr "" + +#: model/db_query.py:440 model/db_query.py:443 model/db_query.py:1106 +msgid "Illegal SQL Query" +msgstr "" + +#: utils/jinja.py:95 +msgid "Illegal template" +msgstr "" + +#. Label of a Attach Image field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Image" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Image" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Image" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Image" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Image" +msgstr "" + +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Label of a Attach Image field in DocType 'Letter Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Image" +msgstr "" + +#. Label of a Attach Image field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Image" +msgstr "" + +#. Label of a Attach field in DocType 'Website Slideshow Item' +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgctxt "Website Slideshow Item" +msgid "Image" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Image" +msgstr "" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Image Field" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Image Field" +msgstr "" + +#. Label of a Float field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Image Height" +msgstr "" + +#. Label of a Attach field in DocType 'About Us Team Member' +#: website/doctype/about_us_team_member/about_us_team_member.json +msgctxt "About Us Team Member" +msgid "Image Link" +msgstr "" + +#. Label of a Float field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Image Width" +msgstr "" + +#: core/doctype/doctype/doctype.py:1455 +msgid "Image field must be a valid fieldname" +msgstr "" + +#: core/doctype/doctype/doctype.py:1457 +msgid "Image field must be of type Attach Image" +msgstr "" + +#: core/doctype/file/utils.py:136 +msgid "Image link '{0}' is not valid" +msgstr "" + +#: core/doctype/file/file.js:91 +msgid "Image optimized" +msgstr "" + +#: public/js/frappe/views/image/image_view.js:13 +msgid "Images" +msgstr "" + +#: core/doctype/user/user.js:356 +msgid "Impersonate" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Impersonate" +msgstr "" + +#: core/doctype/user/user.js:383 +msgid "Impersonate as {0}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:233 +msgid "Impersonated by {0}" +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:21 +msgid "Impersonating {0}" +msgstr "" + +#: core/doctype/log_settings/log_settings.py:57 +msgid "Implement `clear_old_logs` method to enable auto error clearing." +msgstr "" + +#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Implicit" +msgstr "" + +#: core/doctype/recorder/recorder_list.js:16 +#: email/doctype/email_group/email_group.js:31 +msgid "Import" +msgstr "" + +#: public/js/frappe/list/list_view.js:1674 +msgctxt "Button in list view menu" +msgid "Import" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Import" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Import" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Data Import" +msgid "Import Data" +msgstr "" + +#: email/doctype/email_group/email_group.js:14 +msgid "Import Email From" +msgstr "" + +#. Label of a Attach field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import File" +msgstr "" + +#. Label of a Section Break field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import File Errors and Warnings" +msgstr "" + +#. Label of a Section Break field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import Log" +msgstr "" + +#. Label of a HTML field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import Log Preview" +msgstr "" + +#. Label of a HTML field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import Preview" +msgstr "" + +#: core/doctype/data_import/data_import.js:41 +msgid "Import Progress" +msgstr "" + +#: email/doctype/email_group/email_group.js:8 +#: email/doctype/email_group/email_group.js:30 +msgid "Import Subscribers" +msgstr "" + +#. Label of a Select field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import Type" +msgstr "" + +#. Label of a HTML field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import Warnings" +msgstr "" + +#: public/js/frappe/views/file/file_view.js:117 +msgid "Import Zip" +msgstr "" + +#. Label of a Data field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Import from Google Sheets" +msgstr "" + +#: core/doctype/data_import/importer.py:593 +msgid "Import template should be of type .csv, .xlsx or .xls" +msgstr "" + +#: core/doctype/data_import/importer.py:463 +msgid "Import template should contain a Header and atleast one row." +msgstr "" + +#: core/doctype/data_import/data_import.js:165 +msgid "Import timed out, please re-try." +msgstr "" + +#: core/doctype/data_import/data_import.py:60 +msgid "Importing {0} is not allowed." +msgstr "" + +#: integrations/doctype/google_contacts/google_contacts.js:19 +msgid "Importing {0} of {1}" +msgstr "" + +#: core/doctype/data_import/data_import.js:35 +msgid "Importing {0} of {1}, {2}" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:20 +msgid "In" +msgstr "" + +#. Description of the 'Force User to Reset Password' (Int) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "In Days" +msgstr "" + +#. Description of the Onboarding Step 'Setup Limited Access for a User' +#: custom/onboarding_step/role_permissions/role_permissions.json +msgid "In ERPNext, you can add your Employees as Users, and give them restricted access. Tools like Role Permission and User Permission allow you to define rules which give restricted access to the user to masters and transactions." +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "In Filter" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "In Filter" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "In Global Search" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "In Global Search" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "In Global Search" +msgstr "" + +#: core/doctype/doctype/doctype.js:95 +msgid "In Grid View" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "In List Filter" +msgstr "" + +#: core/doctype/doctype/doctype.js:96 +msgid "In List View" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "In List View" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "In List View" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "In List View" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "In Preview" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "In Preview" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "In Preview" +msgstr "" + +#: core/doctype/data_import/data_import.js:42 +msgid "In Progress" +msgstr "" + +#: database/database.py:240 +msgid "In Read Only Mode" +msgstr "" + +#. Label of a Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "In Reply To" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "In Standard Filter" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "In Standard Filter" +msgstr "" + +#. Description of the Onboarding Step 'Generate Custom Reports' +#: custom/onboarding_step/report_builder/report_builder.json +msgid "In each module, you will find a host of single-click reports, ranging from financial statements to sales and purchase analytics and stock tracking reports. If a required new report is not available out-of-the-box, you can create custom reports in ERPNext by pulling values from the same multiple ERPNext tables.\n" +msgstr "" + +#. Description of the 'Font Size' (Float) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "In points. Default is 9." +msgstr "" + +#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "In seconds" +msgstr "" + +#: core/doctype/recorder/recorder_list.js:209 +msgid "Inactive" +msgstr "" + +#: public/js/frappe/ui/field_group.js:131 +msgid "Inavlid Values" +msgstr "" + +#: email/doctype/email_account/email_account_list.js:19 +msgid "Inbox" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Inbox" +msgstr "" + +#. Name of a role +#: core/doctype/communication/communication.json +#: email/doctype/email_account/email_account.json +msgid "Inbox User" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Include Name Field" +msgstr "" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Include Search in Top Bar" +msgstr "" + +#: website/doctype/website_theme/website_theme.js:61 +msgid "Include Theme from Apps" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Include Web View Link in Email" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1505 +msgid "Include filters" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1497 +msgid "Include indentation" +msgstr "" + +#: public/js/frappe/form/controls/password.js:107 +msgid "Include symbols, numbers and capital letters in the password" +msgstr "" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Incoming (POP/IMAP) Settings" +msgstr "" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Incoming Server" +msgstr "" + +#. Label of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Incoming Server" +msgstr "" + +#. Label of a Section Break field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Incoming Settings" +msgstr "" + +#: email/doctype/email_domain/email_domain.py:32 +msgid "Incoming email account not correct" +msgstr "" + +#: model/virtual_doctype.py:79 model/virtual_doctype.py:92 +msgid "Incomplete Virtual Doctype Implementation" +msgstr "" + +#: auth.py:232 +msgid "Incomplete login details" +msgstr "" + +#: email/smtp.py:104 +msgid "Incorrect Configuration" +msgstr "" + +#: utils/csvutils.py:209 +msgid "Incorrect URL" +msgstr "" + +#: utils/password.py:89 +msgid "Incorrect User or Password" +msgstr "" + +#: twofactor.py:176 twofactor.py:188 +msgid "Incorrect Verification code" +msgstr "" + +#: model/document.py:1356 +msgid "Incorrect value in row {0}: {1} must be {2} {3}" +msgstr "" + +#: model/document.py:1360 +msgid "Incorrect value: {0} must be {1} {2}" +msgstr "" + +#: model/meta.py:48 public/js/frappe/model/meta.js:200 +#: public/js/frappe/model/model.js:114 +#: public/js/frappe/views/reports/report_view.js:938 +msgid "Index" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Index" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Index" +msgstr "" + +#. Label of a Int field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Index" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Index Web Pages for Search" +msgstr "" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Indexing authorization code" +msgstr "" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Indexing refresh token" +msgstr "" + +#. Label of a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Indicator" +msgstr "" + +#. Label of a Select field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Indicator Color" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:650 +#: public/js/frappe/views/workspace/workspace.js:978 +#: public/js/frappe/views/workspace/workspace.js:1222 +msgid "Indicator color" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Info" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Info" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Info" +msgstr "" + +#: core/doctype/data_export/exporter.py:144 +msgid "Info:" +msgstr "" + +#. Label of a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Initial Sync Count" +msgstr "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "InnoDB" +msgstr "" + +#: core/doctype/data_import/data_import_list.js:39 +msgid "Insert" +msgstr "" + +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Above" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1729 +msgid "Insert After" +msgstr "" + +#. Label of a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Insert After" +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:249 +msgid "Insert After cannot be set as {0}" +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:242 +msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" +msgstr "" + +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Below" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:359 +msgid "Insert Column Before {0}" +msgstr "" + +#: public/js/frappe/form/controls/markdown_editor.js:82 +msgid "Insert Image in Markdown" +msgstr "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Insert New Records" +msgstr "" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Insert Style" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:662 +#: public/js/frappe/ui/toolbar/search_utils.js:663 +msgid "Install {0} from Marketplace" +msgstr "" + +#. Name of a DocType +#: core/doctype/installed_application/installed_application.json +msgid "Installed Application" +msgstr "" + +#. Name of a DocType +#: core/doctype/installed_applications/installed_applications.json +msgid "Installed Applications" +msgstr "" + +#. Label of a Table field in DocType 'Installed Applications' +#: core/doctype/installed_applications/installed_applications.json +msgctxt "Installed Applications" +msgid "Installed Applications" +msgstr "" + +#: core/doctype/installed_applications/installed_applications.js:18 +#: public/js/frappe/ui/toolbar/about.js:8 +msgid "Installed Apps" +msgstr "" + +#. Label of a HTML field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Instructions" +msgstr "" + +#: templates/includes/login/login.js:262 +msgid "Instructions Emailed" +msgstr "" + +#: permissions.py:822 +msgid "Insufficient Permission Level for {0}" +msgstr "" + +#: database/query.py:375 desk/form/load.py:40 model/document.py:237 +msgid "Insufficient Permission for {0}" +msgstr "" + +#: desk/reportview.py:339 +msgid "Insufficient Permissions for deleting Report" +msgstr "" + +#: desk/reportview.py:310 +msgid "Insufficient Permissions for editing Report" +msgstr "" + +#: core/doctype/doctype/doctype.py:444 +msgid "Insufficient attachment limit" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Int" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Int" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Int" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Int" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Int" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Int" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Int" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/integration_request/integration_request.json +msgid "Integration Request" +msgstr "" + +#. Name of a Workspace +#: integrations/workspace/integrations/integrations.json +msgid "Integrations" +msgstr "" + +#. Group in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Integrations" +msgstr "" + +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Integrations" +msgstr "" + +#. Description of the 'Delivery Status' (Select) field in DocType +#. 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Integrations can use this field to set email delivery status" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Inter" +msgstr "" + +#: desk/page/user_profile/user_profile_sidebar.html:37 +msgid "Interests" +msgstr "" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Interests" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Intermediate" +msgstr "" + +#: public/js/frappe/request.js:232 +msgid "Internal Server Error" +msgstr "" + +#. Description of a DocType +#: core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + +#: desk/page/user_profile/user_profile_sidebar.html:22 +msgid "Intro" +msgstr "" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Intro Video URL" +msgstr "" + +#. Description of the 'Company Introduction' (Text Editor) field in DocType +#. 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Introduce your company to the website visitor." +msgstr "" + +#. Label of a Section Break field in DocType 'Contact Us Settings' +#. Label of a Text Editor field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Introduction" +msgstr "" + +#. Label of a Text Editor field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Introduction" +msgstr "" + +#. Title of an Onboarding Step +#: website/onboarding_step/introduction_to_website/introduction_to_website.json +msgid "Introduction to Website" +msgstr "" + +#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us +#. Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Introductory information for the Contact Us Page" +msgstr "" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Introspection URI" +msgstr "" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Invalid" +msgstr "" + +#: public/js/form_builder/utils.js:221 public/js/frappe/form/grid_row.js:769 +#: public/js/frappe/form/layout.js:774 +msgid "Invalid \"depends_on\" expression" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:510 +msgid "Invalid \"depends_on\" expression set in filter {0}" +msgstr "" + +#: public/js/frappe/form/save.js:206 +msgid "Invalid \"mandatory_depends_on\" expression" +msgstr "" + +#: utils/nestedset.py:177 +msgid "Invalid Action" +msgstr "" + +#: utils/csvutils.py:35 +msgid "Invalid CSV Format" +msgstr "" + +#: integrations/doctype/webhook/webhook.py:90 +msgid "Invalid Condition: {}" +msgstr "" + +#: email/smtp.py:134 +msgid "Invalid Credentials" +msgstr "" + +#: utils/data.py:125 utils/data.py:289 +msgid "Invalid Date" +msgstr "" + +#: www/list.py:85 +msgid "Invalid DocType" +msgstr "" + +#: database/query.py:97 +msgid "Invalid DocType: {0}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1221 +msgid "Invalid Fieldname" +msgstr "" + +#: core/doctype/file/file.py:206 +msgid "Invalid File URL" +msgstr "" + +#: public/js/form_builder/store.js:221 +msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" +msgstr "" + +#: utils/dashboard.py:61 +msgid "Invalid Filter Value" +msgstr "" + +#: website/doctype/website_settings/website_settings.py:83 +msgid "Invalid Home Page" +msgstr "" + +#: utils/verified_command.py:48 www/update-password.html:151 +msgid "Invalid Link" +msgstr "" + +#: www/login.py:112 +msgid "Invalid Login Token" +msgstr "" + +#: templates/includes/login/login.js:291 +msgid "Invalid Login. Try again." +msgstr "" + +#: email/receive.py:105 email/receive.py:142 +msgid "Invalid Mail Server. Please rectify and try again." +msgstr "" + +#: model/naming.py:94 +msgid "Invalid Naming Series: {}" +msgstr "" + +#: core/doctype/rq_job/rq_job.py:113 +msgid "Invalid Operation" +msgstr "" + +#: core/doctype/doctype/doctype.py:1578 core/doctype/doctype/doctype.py:1587 +msgid "Invalid Option" +msgstr "" + +#: email/smtp.py:103 +msgid "Invalid Outgoing Mail Server or Port: {0}" +msgstr "" + +#: email/doctype/auto_email_report/auto_email_report.py:188 +msgid "Invalid Output Format" +msgstr "" + +#: integrations/doctype/connected_app/connected_app.py:167 +msgid "Invalid Parameters." +msgstr "" + +#: core/doctype/user/user.py:1229 www/update-password.html:121 +#: www/update-password.html:142 www/update-password.html:144 +#: www/update-password.html:245 +msgid "Invalid Password" +msgstr "" + +#: utils/__init__.py:109 +msgid "Invalid Phone Number" +msgstr "" + +#: auth.py:93 utils/oauth.py:179 utils/oauth.py:186 www/login.py:112 +msgid "Invalid Request" +msgstr "" + +#: desk/search.py:26 +msgid "Invalid Search Field {0}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1163 +msgid "Invalid Table Fieldname" +msgstr "" + +#: public/js/workflow_builder/store.js:182 +msgid "Invalid Transition" +msgstr "" + +#: core/doctype/file/file.py:217 public/js/frappe/widgets/widget_dialog.js:604 +#: utils/csvutils.py:201 utils/csvutils.py:222 +msgid "Invalid URL" +msgstr "" + +#: email/receive.py:150 +msgid "Invalid User Name or Support Password. Please rectify and try again." +msgstr "" + +#: integrations/doctype/webhook/webhook.py:119 +msgid "Invalid Webhook Secret" +msgstr "" + +#: desk/reportview.py:167 +msgid "Invalid aggregate function" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:368 +msgid "Invalid column" +msgstr "" + +#: model/document.py:851 model/document.py:865 +msgid "Invalid docstatus" +msgstr "" + +#: public/js/frappe/utils/dashboard_utils.js:229 +msgid "Invalid expression set in filter {0}" +msgstr "" + +#: public/js/frappe/utils/dashboard_utils.js:219 +msgid "Invalid expression set in filter {0} ({1})" +msgstr "" + +#: utils/data.py:2126 +msgid "Invalid field name {0}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1048 +msgid "Invalid fieldname '{0}' in autoname" +msgstr "" + +#: client.py:344 +msgid "Invalid file path: {0}" +msgstr "" + +#: database/query.py:173 public/js/frappe/ui/filters/filter_list.js:201 +msgid "Invalid filter: {0}" +msgstr "" + +#: desk/doctype/dashboard/dashboard.py:67 +#: desk/doctype/dashboard_chart/dashboard_chart.py:414 +msgid "Invalid json added in the custom options: {0}" +msgstr "" + +#: model/naming.py:466 +msgid "Invalid name type (integer) for varchar name column" +msgstr "" + +#: model/naming.py:55 +msgid "Invalid naming series {}: dot (.) missing" +msgstr "" + +#: core/doctype/data_import/importer.py:434 +msgid "Invalid or corrupted content for import" +msgstr "" + +#: website/doctype/website_settings/website_settings.py:139 +msgid "Invalid redirect regex in row #{}: {}" +msgstr "" + +#: app.py:305 +msgid "Invalid request arguments" +msgstr "" + +#: integrations/doctype/connected_app/connected_app.py:173 +msgid "Invalid state." +msgstr "" + +#: core/doctype/data_import/importer.py:411 +msgid "Invalid template file for import" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:164 +#: integrations/doctype/ldap_settings/ldap_settings.py:335 +msgid "Invalid username or password" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:229 +msgctxt "Error message in web form" +msgid "Invalid values for fields:" +msgstr "" + +#: core/doctype/doctype/doctype.py:1513 +msgid "Invalid {0} condition" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Inverse" +msgstr "" + +#: contacts/doctype/contact/contact.js:30 +msgid "Invite as User" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:22 +msgid "Is" +msgstr "" + +#. Label of a Check field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Is Active" +msgstr "" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Is Attachments Folder" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Is Calendar and Gantt" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Calendar and Gantt" +msgstr "" + +#: core/doctype/doctype/doctype_list.js:49 +msgid "Is Child Table" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Child Table" +msgstr "" + +#. Label of a Check field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Is Child Table" +msgstr "" + +#. Label of a Check field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Is Complete" +msgstr "" + +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Is Complete" +msgstr "" + +#. Label of a Check field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Is Completed" +msgstr "" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Is Custom" +msgstr "" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Is Custom" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Is Custom Field" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:69 +msgid "Is Default" +msgstr "" + +#. Label of a Check field in DocType 'Address Template' +#: contacts/doctype/address_template/address_template.json +msgctxt "Address Template" +msgid "Is Default" +msgstr "" + +#. Label of a Check field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Is Default" +msgstr "" + +#. Label of a Check field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "Is Default" +msgstr "" + +#. Label of a Check field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Is Dynamic URL?" +msgstr "" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Is Folder" +msgstr "" + +#: public/js/frappe/list/list_filter.js:43 +msgid "Is Global" +msgstr "" + +#. Label of a Check field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Is Hidden" +msgstr "" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Is Home Folder" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Is Mandatory Field" +msgstr "" + +#. Label of a Check field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Is Optional State" +msgstr "" + +#. Label of a Check field in DocType 'Contact Email' +#: contacts/doctype/contact_email/contact_email.json +msgctxt "Contact Email" +msgid "Is Primary" +msgstr "" + +#. Label of a Check field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Is Primary Contact" +msgstr "" + +#. Label of a Check field in DocType 'Contact Phone' +#: contacts/doctype/contact_phone/contact_phone.json +msgctxt "Contact Phone" +msgid "Is Primary Mobile" +msgstr "" + +#. Label of a Check field in DocType 'Contact Phone' +#: contacts/doctype/contact_phone/contact_phone.json +msgctxt "Contact Phone" +msgid "Is Primary Phone" +msgstr "" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Is Private" +msgstr "" + +#. Label of a Check field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Is Public" +msgstr "" + +#. Label of a Check field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Is Public" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Published Field" +msgstr "" + +#: core/doctype/doctype/doctype.py:1464 +msgid "Is Published Field must be a valid fieldname" +msgstr "" + +#. Label of a Check field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Is Query Report" +msgstr "" + +#. Label of a Check field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Is Remote Request?" +msgstr "" + +#: core/doctype/doctype/doctype_list.js:64 +msgid "Is Single" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Single" +msgstr "" + +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Is Single" +msgstr "" + +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Is Skipped" +msgstr "" + +#. Label of a Check field in DocType 'Email Rule' +#: email/doctype/email_rule/email_rule.json +msgctxt "Email Rule" +msgid "Is Spam" +msgstr "" + +#. Label of a Check field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Is Standard" +msgstr "" + +#. Label of a Check field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Is Standard" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Is Standard" +msgstr "" + +#. Label of a Check field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Is Standard" +msgstr "" + +#. Label of a Check field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Is Standard" +msgstr "" + +#. Label of a Check field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Is Standard" +msgstr "" + +#. Label of a Select field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Is Standard" +msgstr "" + +#. Label of a Check field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Is Standard" +msgstr "" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Is Standard" +msgstr "" + +#: core/doctype/doctype/doctype_list.js:39 +msgid "Is Submittable" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Submittable" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Is System Generated" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Is System Generated" +msgstr "" + +#. Label of a Check field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Is System Generated" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Is Table" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Is Table Field" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Tree" +msgstr "" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Is Unique" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Is Virtual" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Is Virtual" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Is Virtual" +msgstr "" + +#: core/doctype/file/utils.py:157 utils/file_manager.py:311 +msgid "It is risky to delete this file: {0}. Please contact your System Manager." +msgstr "" + +#. Label of a Data field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Item Label" +msgstr "" + +#. Label of a Select field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Item Type" +msgstr "" + +#: utils/nestedset.py:228 +msgid "Item cannot be added to its own descendants" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "JS" +msgstr "" + +#. Label of a HTML field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "JS Message" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "JSON" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "JSON" +msgstr "" + +#. Label of a Code field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "JSON" +msgstr "" + +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "JSON" +msgstr "" + +#. Label of a Code field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "JSON Request Body" +msgstr "" + +#: templates/signup.html:5 +msgid "Jane Doe" +msgstr "" + +#. Label of a Code field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "JavaScript" +msgstr "" + +#. Description of the 'Javascript' (Code) field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" +msgstr "" + +#. Label of a Section Break field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "Javascript" +msgstr "" + +#. Label of a Code field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Javascript" +msgstr "" + +#. Label of a Code field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Javascript" +msgstr "" + +#. Label of a Code field in DocType 'Website Script' +#: website/doctype/website_script/website_script.json +msgctxt "Website Script" +msgid "Javascript" +msgstr "" + +#: www/login.html:71 +msgid "Javascript is disabled on your browser" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Jinja" +msgstr "" + +#. Label of a Data field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Job ID" +msgstr "" + +#. Label of a Data field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Job ID" +msgstr "" + +#. Label of a Link field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Job Id" +msgstr "" + +#. Label of a Section Break field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Job Info" +msgstr "" + +#. Label of a Data field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Job Name" +msgstr "" + +#. Label of a Section Break field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Job Status" +msgstr "" + +#: core/doctype/rq_job/rq_job.js:24 +msgid "Job Stopped Successfully" +msgstr "" + +#: core/doctype/rq_job/rq_job.py:113 +msgid "Job is not running." +msgstr "" + +#: desk/doctype/event/event.js:55 +msgid "Join video conference with {0}" +msgstr "" + +#: public/js/frappe/form/toolbar.js:355 public/js/frappe/form/toolbar.js:757 +msgid "Jump to field" +msgstr "" + +#: public/js/frappe/utils/number_systems.js:17 +#: public/js/frappe/utils/number_systems.js:31 +#: public/js/frappe/utils/number_systems.js:53 +msgctxt "Number system" +msgid "K" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Kanban" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Kanban" +msgstr "" + +#. Name of a DocType +#: desk/doctype/kanban_board/kanban_board.json +msgid "Kanban Board" +msgstr "" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Kanban Board" +msgstr "" + +#. Label of a Link field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Kanban Board" +msgstr "" + +#. Name of a DocType +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Kanban Board Column" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:385 +msgid "Kanban Board Name" +msgstr "" + +#. Label of a Data field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Kanban Board Name" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:262 +msgctxt "Button in kanban view menu" +msgid "Kanban Settings" +msgstr "" + +#. Description of a DocType +#: core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + +#. Label of a Data field in DocType 'DefaultValue' +#: core/doctype/defaultvalue/defaultvalue.json +msgctxt "DefaultValue" +msgid "Key" +msgstr "" + +#. Label of a Data field in DocType 'Document Share Key' +#: core/doctype/document_share_key/document_share_key.json +msgctxt "Document Share Key" +msgid "Key" +msgstr "" + +#. Label of a Data field in DocType 'Query Parameters' +#: integrations/doctype/query_parameters/query_parameters.json +msgctxt "Query Parameters" +msgid "Key" +msgstr "" + +#. Label of a Data field in DocType 'Webhook Data' +#: integrations/doctype/webhook_data/webhook_data.json +msgctxt "Webhook Data" +msgid "Key" +msgstr "" + +#. Label of a Small Text field in DocType 'Webhook Header' +#: integrations/doctype/webhook_header/webhook_header.json +msgctxt "Webhook Header" +msgid "Key" +msgstr "" + +#. Label of a Data field in DocType 'Website Meta Tag' +#: website/doctype/website_meta_tag/website_meta_tag.json +msgctxt "Website Meta Tag" +msgid "Key" +msgstr "" + +#. Label of a standard help item +#. Type: Action +#: hooks.py public/js/frappe/ui/keyboard.js:129 +msgid "Keyboard Shortcuts" +msgstr "" + +#: public/js/frappe/utils/number_systems.js:37 +msgctxt "Number system" +msgid "Kh" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: website/doctype/help_article/help_article.py:80 +#: website/doctype/help_article/templates/help_article_list.html:2 +#: website/doctype/help_article/templates/help_article_list.html:11 +#: website/workspace/website/website.json +msgid "Knowledge Base" +msgstr "" + +#. Name of a role +#: website/doctype/help_article/help_article.json +msgid "Knowledge Base Contributor" +msgstr "" + +#. Name of a role +#: website/doctype/help_article/help_article.json +msgid "Knowledge Base Editor" +msgstr "" + +#: public/js/frappe/utils/number_systems.js:27 +#: public/js/frappe/utils/number_systems.js:49 +msgctxt "Number system" +msgid "L" +msgstr "" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Auth" +msgstr "" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Custom Settings" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Email Field" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP First Name Field" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Group Mapping' +#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgctxt "LDAP Group Mapping" +msgid "LDAP Group" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Group Field" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group Mapping" +msgstr "" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#. Label of a Table field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Group Mappings" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Group Member attribute" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Last Name Field" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Middle Name Field" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Mobile Field" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:162 +msgid "LDAP Not Installed" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Phone Field" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Search String" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:129 +msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" +msgstr "" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Search and Paths" +msgstr "" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Security" +msgstr "" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Server Settings" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Server Url" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Settings" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "LDAP Settings" +msgid "LDAP Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP User Creation and Mapping" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP Username Field" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:308 +#: integrations/doctype/ldap_settings/ldap_settings.py:425 +msgid "LDAP is not enabled." +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP search path for Groups" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "LDAP search path for Users" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:101 +msgid "LDAP settings incorrect. validation response was: {0}" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:474 +#: public/js/frappe/widgets/widget_dialog.js:255 +#: public/js/frappe/widgets/widget_dialog.js:645 +#: public/js/frappe/widgets/widget_dialog.js:678 +#: templates/form_grid/fields.html:37 +msgid "Label" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Label" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'DocType Layout Field' +#: custom/doctype/doctype_layout_field/doctype_layout_field.json +msgctxt "DocType Layout Field" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Workspace Chart' +#: desk/doctype/workspace_chart/workspace_chart.json +msgctxt "Workspace Chart" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Workspace Custom Block' +#: desk/doctype/workspace_custom_block/workspace_custom_block.json +msgctxt "Workspace Custom Block" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Workspace Number Card' +#: desk/doctype/workspace_number_card/workspace_number_card.json +msgctxt "Workspace Number Card" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Workspace Quick List' +#: desk/doctype/workspace_quick_list/workspace_quick_list.json +msgctxt "Workspace Quick List" +msgid "Label" +msgstr "" + +#. Label of a Data field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Label" +msgstr "" + +#. Label of a HTML field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Label Help" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Label and Type" +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:143 +msgid "Label is mandatory" +msgstr "" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Landing Page" +msgstr "" + +#: public/js/frappe/form/print_utils.js:28 +msgid "Landscape" +msgstr "" + +#. Name of a DocType +#: core/doctype/language/language.json printing/page/print/print.js:104 +#: public/js/frappe/form/templates/print_layout.html:11 +msgid "Language" +msgstr "" + +#. Label of a Link field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Language" +msgstr "" + +#. Label of a Link field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Language" +msgstr "" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Language" +msgstr "" + +#. Label of a Data field in DocType 'Language' +#: core/doctype/language/language.json +msgctxt "Language" +msgid "Language Code" +msgstr "" + +#. Label of a Data field in DocType 'Language' +#: core/doctype/language/language.json +msgctxt "Language" +msgid "Language Name" +msgstr "" + +#. Label of a Datetime field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Active" +msgstr "" + +#. Label of a Datetime field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Last Backup On" +msgstr "" + +#. Label of a Datetime field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Last Execution" +msgstr "" + +#. Label of a Datetime field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Last Heartbeat" +msgstr "" + +#. Label of a Read Only field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last IP" +msgstr "" + +#. Label of a Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Known Versions" +msgstr "" + +#. Label of a Read Only field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Login" +msgstr "" + +#: email/doctype/notification/notification.js:31 +msgid "Last Modified Date" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:242 +#: public/js/frappe/views/dashboard/dashboard_view.js:479 +msgid "Last Modified On" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Last Month" +msgstr "" + +#: www/complete_signup.html:19 +msgid "Last Name" +msgstr "" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Last Name" +msgstr "" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Name" +msgstr "" + +#. Label of a Date field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Password Reset Date" +msgstr "" + +#. Label of a Date field in DocType 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Last Point Allocation Date" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Last Quarter" +msgstr "" + +#. Label of a Datetime field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Last Reset Password Key Generated On" +msgstr "" + +#. Label of a Datetime field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Last Sync On" +msgstr "" + +#. Label of a Datetime field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Last Synced On" +msgstr "" + +#: model/meta.py:50 public/js/frappe/model/meta.js:202 +#: public/js/frappe/model/model.js:120 +msgid "Last Updated By" +msgstr "" + +#: model/meta.py:49 public/js/frappe/model/meta.js:201 +#: public/js/frappe/model/model.js:116 +msgid "Last Updated On" +msgstr "" + +#. Label of a Link field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Last User" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Last Week" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Last Year" +msgstr "" + +#: public/js/frappe/widgets/chart_widget.js:698 +msgid "Last synced {0}" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:186 +msgid "Layout Reset" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:178 +msgid "Layout will be reset to standard layout, are you sure you want to do this?" +msgstr "" + +#: desk/page/leaderboard/leaderboard.js:15 +#: desk/page/user_profile/user_profile_sidebar.html:55 +msgid "Leaderboard" +msgstr "" + +#. Label of an action in the Onboarding Step 'Customize Print Formats' +#: custom/onboarding_step/print_format/print_format.json +msgid "Learn about Standard and Custom Print Formats" +msgstr "" + +#. Title of an Onboarding Step +#: website/onboarding_step/web_page_tour/web_page_tour.json +msgid "Learn about Web Pages" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Custom Fields' +#: custom/onboarding_step/custom_field/custom_field.json +msgid "Learn how to add Custom Fields" +msgstr "" + +#: website/web_template/section_with_features/section_with_features.html:26 +msgid "Learn more" +msgstr "" + +#. Label of an action in the Onboarding Step 'Generate Custom Reports' +#: custom/onboarding_step/report_builder/report_builder.json +msgid "Learn more about Report Builders" +msgstr "" + +#. Label of an action in the Onboarding Step 'Custom Document Types' +#: custom/onboarding_step/custom_doctype/custom_doctype.json +msgid "Learn more about creating new DocTypes" +msgstr "" + +#. Description of the 'Repeat Till' (Date) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Leave blank to repeat always" +msgstr "" + +#: core/doctype/communication/mixins.py:207 +#: email/doctype/email_account/email_account.py:654 +msgid "Leave this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Ledger" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Left" +msgstr "" + +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Left" +msgstr "" + +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Left" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:483 +msgctxt "alignment" +msgid "Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Left Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Left Center" +msgstr "" + +#: email/doctype/email_unsubscribe/email_unsubscribe.py:58 +msgid "Left this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Legal" +msgstr "" + +#. Label of a Int field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Length" +msgstr "" + +#. Label of a Int field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Length" +msgstr "" + +#. Label of a Int field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Length" +msgstr "" + +#: public/js/frappe/ui/chart.js:11 +msgid "Length of passed data array is greater than value of maximum allowed label points!" +msgstr "" + +#: database/schema.py:132 +msgid "Length of {0} should be between 1 and 1000" +msgstr "" + +#: public/js/frappe/widgets/chart_widget.js:674 +msgid "Less" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:439 +msgid "Let us continue with the onboarding" +msgstr "" + +#: public/js/frappe/views/workspace/blocks/onboarding.js:94 +#: public/js/frappe/widgets/onboarding_widget.js:602 +msgid "Let's Get Started" +msgstr "" + +#. Title of the Module Onboarding 'Website' +#: website/module_onboarding/website/website.json +msgid "Let's Set Up Your Website." +msgstr "" + +#: utils/password_strength.py:111 +msgid "Let's avoid repeated words and characters" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:459 +msgid "Let's set up your account" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:268 +#: public/js/frappe/widgets/onboarding_widget.js:309 +#: public/js/frappe/widgets/onboarding_widget.js:380 +#: public/js/frappe/widgets/onboarding_widget.js:419 +msgid "Let's take you back to onboarding" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Letter" +msgstr "" + +#. Name of a DocType +#: printing/doctype/letter_head/letter_head.json +#: printing/page/print/print.js:127 public/js/frappe/form/print_utils.js:18 +#: public/js/frappe/form/templates/print_layout.html:16 +#: public/js/frappe/list/bulk_operations.js:51 +msgid "Letter Head" +msgstr "" + +#. Label of a Link field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Letter Head" +msgstr "" + +#. Label of a Select field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Letter Head Based On" +msgstr "" + +#. Label of a Section Break field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Letter Head Image" +msgstr "" + +#. Label of a Data field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Letter Head Name" +msgstr "" + +#: printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "" + +#: printing/doctype/letter_head/letter_head.py:48 +msgid "Letter Head cannot be both disabled and default" +msgstr "" + +#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Letter Head in HTML" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:213 +#: public/js/frappe/roles_editor.js:66 +msgid "Level" +msgstr "" + +#. Label of a Int field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Level" +msgstr "" + +#. Label of a Int field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Level" +msgstr "" + +#. Label of a Select field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Level" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:461 +msgid "Level 0 is for document level permissions, higher levels for field level permissions." +msgstr "" + +#. Label of a Data field in DocType 'Review Level' +#: social/doctype/review_level/review_level.json +msgctxt "Review Level" +msgid "Level Name" +msgstr "" + +#. Label of a Markdown Editor field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "License" +msgstr "" + +#. Label of a Select field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "License Type" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Light" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Light Blue" +msgstr "" + +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Light Blue" +msgstr "" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Light Color" +msgstr "" + +#: public/js/frappe/ui/theme_switcher.js:60 +msgid "Light Theme" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:18 +msgid "Like" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Like" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Like" +msgstr "" + +#. Label of a Int field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Like limit" +msgstr "" + +#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Like limit per hour" +msgstr "" + +#: templates/includes/likes/likes.py:30 +msgid "Like on {0}: {1}" +msgstr "" + +#: desk/like.py:91 +msgid "Liked" +msgstr "" + +#: model/meta.py:53 public/js/frappe/model/meta.js:205 +#: public/js/frappe/model/model.js:124 +msgid "Liked By" +msgstr "" + +#. Label of a Int field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Likes" +msgstr "" + +#. Label of a Int field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Limit" +msgstr "" + +#. Label of a Check field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Limit Number of DB Backups" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Line" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Link" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Link" +msgstr "" + +#. Label of a Small Text field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Link" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Link" +msgstr "" + +#. Label of a Data field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Link" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Link" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Link" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Link" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Link" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Link" +msgstr "" + +#. Label of a Tab Break field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Link Cards" +msgstr "" + +#. Label of a Int field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Link Count" +msgstr "" + +#. Label of a Section Break field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Link Details" +msgstr "" + +#. Label of a Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Link DocType" +msgstr "" + +#. Label of a Link field in DocType 'Communication Link' +#: core/doctype/communication_link/communication_link.json +msgctxt "Communication Link" +msgid "Link DocType" +msgstr "" + +#. Label of a Link field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Link DocType" +msgstr "" + +#. Label of a Link field in DocType 'Dynamic Link' +#: core/doctype/dynamic_link/dynamic_link.json +msgctxt "Dynamic Link" +msgid "Link Document Type" +msgstr "" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:402 +#: workflow/doctype/workflow_action/workflow_action.py:197 +msgid "Link Expired" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Link Field Results Limit" +msgstr "" + +#. Label of a Data field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Link Fieldname" +msgstr "" + +#. Label of a JSON field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Link Filters" +msgstr "" + +#. Label of a JSON field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Link Filters" +msgstr "" + +#. Label of a JSON field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Link Filters" +msgstr "" + +#. Label of a JSON field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Link Filters" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Link Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Communication Link' +#: core/doctype/communication_link/communication_link.json +msgctxt "Communication Link" +msgid "Link Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Dynamic Link' +#: core/doctype/dynamic_link/dynamic_link.json +msgctxt "Dynamic Link" +msgid "Link Name" +msgstr "" + +#. Label of a Read Only field in DocType 'Communication Link' +#: core/doctype/communication_link/communication_link.json +msgctxt "Communication Link" +msgid "Link Title" +msgstr "" + +#. Label of a Read Only field in DocType 'Dynamic Link' +#: core/doctype/dynamic_link/dynamic_link.json +msgctxt "Dynamic Link" +msgid "Link Title" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Link To" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Link To" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:358 +msgid "Link To in Row" +msgstr "" + +#. Label of a Select field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Link Type" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:354 +msgid "Link Type in Row" +msgstr "" + +#: website/doctype/about_us_settings/about_us_settings.js:6 +msgid "Link for About Us Page is \"/about\"." +msgstr "" + +#. Description of the 'Home Page' (Data) field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Linked" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Linked" +msgstr "" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Linked Documents" +msgstr "" + +#: public/js/frappe/form/linked_with.js:23 +msgid "Linked With" +msgstr "" + +#: contacts/doctype/address/address.js:39 +#: contacts/doctype/contact/contact.js:87 public/js/frappe/form/toolbar.js:366 +msgid "Links" +msgstr "" + +#. Label of a Table field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Links" +msgstr "" + +#. Label of a Table field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Links" +msgstr "" + +#. Label of a Table field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Links" +msgstr "" + +#. Label of a Table field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Links" +msgstr "" + +#. Label of a Table field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Links" +msgstr "" + +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "List" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "List" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "List" +msgstr "" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "List / Search Settings" +msgstr "" + +#. Label of a Table field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "List Columns" +msgstr "" + +#. Name of a DocType +#: desk/doctype/list_filter/list_filter.json +msgid "List Filter" +msgstr "" + +#. Label of a HTML field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "List Setting Message" +msgstr "" + +#: public/js/frappe/list/list_view.js:1754 +msgctxt "Button in list view menu" +msgid "List Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "List Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "List Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "List Settings" +msgstr "" + +#. Name of a DocType +#: desk/doctype/list_view_settings/list_view_settings.json +msgid "List View Settings" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:161 +msgid "List a document type" +msgstr "" + +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +msgstr "" + +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +msgstr "" + +#. Description of a DocType +#: core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:542 +msgid "Lists" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Load Balancing" +msgstr "" + +#: public/js/frappe/list/base_list.js:378 +#: website/doctype/blog_post/templates/blog_post_list.html:50 +#: website/doctype/help_article/templates/help_article_list.html:30 +msgid "Load More" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:214 +msgctxt "Form timeline" +msgid "Load More Communications" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:165 +#: public/js/frappe/form/controls/multicheck.js:13 +#: public/js/frappe/form/linked_with.js:13 +#: public/js/frappe/list/base_list.js:490 +#: public/js/frappe/list/list_view.js:333 public/js/frappe/ui/listing.html:16 +#: public/js/frappe/views/reports/query_report.js:1015 +msgid "Loading" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:107 +msgid "Loading Filters..." +msgstr "" + +#: core/doctype/data_import/data_import.js:257 +msgid "Loading import file..." +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:20 +msgid "Loading user profile" +msgstr "" + +#: public/js/frappe/ui/toolbar/about.js:8 +msgid "Loading versions..." +msgstr "" + +#: public/js/frappe/form/sidebar/share.js:51 +#: public/js/frappe/list/list_sidebar.js:216 +#: public/js/frappe/list/list_sidebar_group_by.js:125 +#: public/js/frappe/views/kanban/kanban_board.html:11 +#: public/js/frappe/widgets/chart_widget.js:50 +#: public/js/frappe/widgets/number_card_widget.js:174 +#: public/js/frappe/widgets/quick_list_widget.js:126 +msgid "Loading..." +msgstr "" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Location" +msgstr "" + +#. Label of a Code field in DocType 'Package Import' +#: core/doctype/package_import/package_import.json +msgctxt "Package Import" +msgid "Log" +msgstr "" + +#. Label of a Section Break field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Log Data" +msgstr "" + +#. Label of a Link field in DocType 'Logs To Clear' +#: core/doctype/logs_to_clear/logs_to_clear.json +msgctxt "Logs To Clear" +msgid "Log DocType" +msgstr "" + +#: templates/emails/login_with_email_link.html:28 +msgid "Log In To {0}" +msgstr "" + +#. Label of a Int field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Log Index" +msgstr "" + +#. Name of a DocType +#: core/doctype/log_setting_user/log_setting_user.json +msgid "Log Setting User" +msgstr "" + +#. Name of a DocType +#: core/doctype/log_settings/log_settings.json public/js/frappe/logtypes.js:20 +msgid "Log Settings" +msgstr "" + +#: www/app.py:21 +msgid "Log in to access this page." +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py website/doctype/website_settings/website_settings.py:182 +msgid "Log out" +msgstr "" + +#: handler.py:123 +msgid "Logged Out" +msgstr "" + +#: public/js/frappe/web_form/webform_script.js:16 +#: templates/discussions/discussions_section.html:60 +#: templates/discussions/reply_section.html:44 +#: templates/includes/navbar/dropdown_login.html:15 +#: templates/includes/navbar/navbar_login.html:24 +#: website/page_renderers/not_permitted_page.py:22 www/login.html:42 +msgid "Login" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Login" +msgstr "" + +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Login" +msgstr "" + +#. Label of a Int field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Login After" +msgstr "" + +#. Label of a Int field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Login Before" +msgstr "" + +#: public/js/frappe/desk.js:235 +msgid "Login Failed please try again" +msgstr "" + +#: email/doctype/email_account/email_account.py:141 +msgid "Login Id is required" +msgstr "" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Login Methods" +msgstr "" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Login Page" +msgstr "" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Login Required" +msgstr "" + +#: www/login.py:136 +msgid "Login To {0}" +msgstr "" + +#: twofactor.py:260 +msgid "Login Verification Code from {}" +msgstr "" + +#: www/login.html:97 +msgid "Login With {0}" +msgstr "" + +#: templates/emails/new_message.html:4 +msgid "Login and view in Browser" +msgstr "" + +#: website/doctype/web_form/web_form.js:367 +msgid "Login is required to see web form list view. Enable {0} to see list settings" +msgstr "" + +#: templates/includes/login/login.js:70 +msgid "Login link sent to your email" +msgstr "" + +#: auth.py:316 auth.py:319 +msgid "Login not allowed at this time" +msgstr "" + +#: twofactor.py:164 +msgid "Login session expired, refresh page to retry" +msgstr "" + +#: templates/includes/comments/comments.html:110 +msgid "Login to comment" +msgstr "" + +#: templates/includes/comments/comments.html:6 +msgid "Login to start a new discussion" +msgstr "" + +#: www/login.html:61 +msgid "Login to {0}" +msgstr "" + +#: www/login.html:106 +msgid "Login with Email Link" +msgstr "" + +#: www/login.html:46 +msgid "Login with LDAP" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Login with email link" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Login with email link expiry (in minutes)" +msgstr "" + +#: auth.py:129 +msgid "Login with username and password is not allowed." +msgstr "" + +#. Label of a Int field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Logo Width" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Logout" +msgstr "" + +#: core/doctype/user/user.js:183 +msgid "Logout All Sessions" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Logout All Sessions on Password Reset" +msgstr "" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Logout From All Devices After Changing Password" +msgstr "" + +#. Label of a Card Break in the Users Workspace +#: core/workspace/users/users.json +msgid "Logs" +msgstr "" + +#. Group in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Logs" +msgstr "" + +#. Name of a DocType +#: core/doctype/logs_to_clear/logs_to_clear.json +msgid "Logs To Clear" +msgstr "" + +#. Label of a Table field in DocType 'Log Settings' +#: core/doctype/log_settings/log_settings.json +msgctxt "Log Settings" +msgid "Logs to Clear" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Long Text" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Long Text" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Long Text" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:322 +msgid "Looks like you didn't change the value" +msgstr "" + +#: www/third_party_apps.html:57 +msgid "Looks like you haven’t added any third party apps." +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:308 +msgid "Looks like you haven’t received any notifications." +msgstr "" + +#: public/js/frappe/form/sidebar/assign_to.js:190 +msgid "Low" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Low" +msgstr "" + +#: public/js/frappe/utils/number_systems.js:13 +msgctxt "Number system" +msgid "M" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "MIT License" +msgstr "" + +#. Label of a Text Editor field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Main Section" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Main Section (HTML)" +msgstr "" + +#. Label of a Markdown Editor field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Main Section (Markdown)" +msgstr "" + +#. Name of a role +#: contacts/doctype/contact/contact.json +msgid "Maintenance Manager" +msgstr "" + +#. Name of a role +#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +msgid "Maintenance User" +msgstr "" + +#. Label of a Int field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Major" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Make \"name\" searchable in Global Search" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Make Attachments Public by Default" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Make Attachments Public by Default" +msgstr "" + +#. Description of the 'Disable Username/Password Login' (Check) field in +#. DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" +msgstr "" + +#: utils/password_strength.py:92 +msgid "Make use of longer keyboard patterns" +msgstr "" + +#: public/js/frappe/form/multi_select_dialog.js:86 +msgid "Make {0}" +msgstr "" + +#: website/doctype/web_page/web_page.js:77 +msgid "Makes the page public" +msgstr "" + +#: www/me.html:50 +msgid "Manage third party apps" +msgstr "" + +#: www/me.html:59 +msgid "Manage your apps" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Mandatory" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Mandatory" +msgstr "" + +#. Label of a Check field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Mandatory" +msgstr "" + +#. Label of a Check field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Mandatory" +msgstr "" + +#. Label of a Check field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Mandatory" +msgstr "" + +#. Label of a Code field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Mandatory Depends On" +msgstr "" + +#. Label of a Code field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Mandatory Depends On" +msgstr "" + +#. Label of a Code field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Mandatory Depends On" +msgstr "" + +#. Label of a Code field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Mandatory Depends On (JS)" +msgstr "" + +#: website/doctype/web_form/web_form.py:411 +msgid "Mandatory Information missing:" +msgstr "" + +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +msgid "Mandatory field: set role for" +msgstr "" + +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +msgid "Mandatory field: {0}" +msgstr "" + +#: public/js/frappe/form/save.js:167 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "" + +#: public/js/frappe/form/save.js:172 +msgid "Mandatory fields required in {0}" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:234 +msgctxt "Error message in web form" +msgid "Mandatory fields required:" +msgstr "" + +#: core/doctype/data_export/exporter.py:142 +msgid "Mandatory:" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Map" +msgstr "" + +#: public/js/frappe/data_import/import_preview.js:190 +#: public/js/frappe/data_import/import_preview.js:302 +msgid "Map Columns" +msgstr "" + +#: public/js/frappe/data_import/import_preview.js:290 +msgid "Map columns from {0} to fields in {1}" +msgstr "" + +#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Map route parameters into form variables. Example /project/<name>" +msgstr "" + +#: core/doctype/data_import/importer.py:874 +msgid "Mapping column {0} to field {1}" +msgstr "" + +#. Label of a Float field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Margin Bottom" +msgstr "" + +#. Label of a Float field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Margin Left" +msgstr "" + +#. Label of a Float field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Margin Right" +msgstr "" + +#. Label of a Float field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Margin Top" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:44 +msgid "Mark all as read" +msgstr "" + +#: core/doctype/communication/communication.js:78 +#: core/doctype/communication/communication_list.js:19 +msgid "Mark as Read" +msgstr "" + +#: core/doctype/communication/communication.js:95 +msgid "Mark as Spam" +msgstr "" + +#: core/doctype/communication/communication.js:78 +#: core/doctype/communication/communication_list.js:22 +msgid "Mark as Unread" +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "Markdown" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Markdown" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Markdown" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Markdown" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Markdown" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Markdown Editor" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Markdown Editor" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Markdown Editor" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Markdown Editor" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Marked As Spam" +msgstr "" + +#. Name of a DocType +#: website/doctype/marketing_campaign/marketing_campaign.json +msgid "Marketing Campaign" +msgstr "" + +#. Description of the 'Limit' (Int) field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Max 500 records at a time" +msgstr "" + +#. Label of a Int field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Max Attachment Size (in MB)" +msgstr "" + +#. Label of a Int field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Max Attachments" +msgstr "" + +#. Label of a Int field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Max Attachments" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Max File Size (MB)" +msgstr "" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Max Height" +msgstr "" + +#. Label of a Int field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Max Length" +msgstr "" + +#. Label of a Int field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Max Value" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Max auto email report per user" +msgstr "" + +#: core/doctype/doctype/doctype.py:1291 +msgid "Max width for type Currency is 100px in row {0}" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Maximum" +msgstr "" + +#: core/doctype/file/file.py:317 +msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." +msgstr "" + +#. Label of a Select field in DocType 'List View Settings' +#: desk/doctype/list_view_settings/list_view_settings.json +msgctxt "List View Settings" +msgid "Maximum Number of Fields" +msgstr "" + +#. Label of a Int field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Maximum Points" +msgstr "" + +#: public/js/frappe/form/sidebar/attachments.js:38 +msgid "Maximum attachment limit of {0} has been reached." +msgstr "" + +#. Description of the 'Maximum Points' (Int) field in DocType 'Energy Point +#. Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Maximum points allowed after multiplying points with the multiplier value\n" +"(Note: For no limit leave this field empty or set 0)" +msgstr "" + +#: model/rename_doc.py:667 +msgid "Maximum {0} rows allowed" +msgstr "" + +#: public/js/frappe/list/list_sidebar_group_by.js:221 +msgid "Me" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:14 +msgid "Meaning of Submit, Cancel, Amend" +msgstr "" + +#: public/js/frappe/form/sidebar/assign_to.js:194 +#: public/js/frappe/utils/utils.js:1722 +#: website/report/website_analytics/website_analytics.js:40 +msgid "Medium" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Medium" +msgstr "" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Medium" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Meeting" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Meeting" +msgstr "" + +#. Label of a Data field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Meets Condition?" +msgstr "" + +#. Group in Email Group's connections +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Members" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Mention" +msgstr "" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Mentions" +msgstr "" + +#: public/js/frappe/ui/page.html:40 public/js/frappe/ui/page.js:155 +msgid "Menu" +msgstr "" + +#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:724 +msgid "Merge with existing" +msgstr "" + +#: utils/nestedset.py:304 +msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" +msgstr "" + +#: core/doctype/data_import/data_import.js:489 +#: public/js/frappe/ui/messages.js:175 +#: public/js/frappe/views/communication.js:114 www/message.html:3 +#: www/message.html:25 +msgid "Message" +msgstr "" + +#. Label of a Text Editor field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Message" +msgstr "" + +#. Label of a Section Break field in DocType 'Auto Email Report' +#. Label of a Text Editor field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Message" +msgstr "" + +#. Label of a Text field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Message" +msgstr "" + +#. Label of a Text Editor field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Message" +msgstr "" + +#: __init__.py:617 public/js/frappe/ui/messages.js:265 +msgctxt "Default title of the message dialog" +msgid "Message" +msgstr "" + +#. Label of a Code field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Message" +msgstr "" + +#. Label of a Text Editor field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Message" +msgstr "" + +#. Label of a Section Break field in DocType 'Notification' +#. Label of a Code field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Message" +msgstr "" + +#. Label of a Text Editor field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Message" +msgstr "" + +#. Label of a Small Text field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "Message" +msgstr "" + +#. Label of a Data field in DocType 'Success Action' +#: core/doctype/success_action/success_action.json +msgctxt "Success Action" +msgid "Message" +msgstr "" + +#. Label of a Text field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Message" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Message (HTML)" +msgstr "" + +#. Label of a Markdown Editor field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Message (Markdown)" +msgstr "" + +#. Label of a HTML field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Message Examples" +msgstr "" + +#. Label of a Small Text field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Message ID" +msgstr "" + +#. Label of a Small Text field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Message ID" +msgstr "" + +#. Label of a Data field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Message Parameter" +msgstr "" + +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Message Type" +msgstr "" + +#: public/js/frappe/views/communication.js:933 +msgid "Message clipped" +msgstr "" + +#: email/doctype/email_account/email_account.py:317 +msgid "Message from server: {0}" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.js:102 +msgid "Message not setup" +msgstr "" + +#. Description of the 'Success Message' (Text) field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Message to be displayed on successful completion" +msgstr "" + +#. Label of a Code field in DocType 'Unhandled Email' +#: email/doctype/unhandled_email/unhandled_email.json +msgctxt "Unhandled Email" +msgid "Message-id" +msgstr "" + +#. Label of a Code field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Messages" +msgstr "" + +#. Label of a Section Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Meta" +msgstr "" + +#: website/doctype/web_page/web_page.js:124 +msgid "Meta Description" +msgstr "" + +#. Label of a Small Text field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Meta Description" +msgstr "" + +#. Label of a Small Text field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Meta Description" +msgstr "" + +#: website/doctype/web_page/web_page.js:131 +msgid "Meta Image" +msgstr "" + +#. Label of a Attach Image field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Meta Image" +msgstr "" + +#. Label of a Attach Image field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Meta Image" +msgstr "" + +#. Label of a Section Break field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Meta Tags" +msgstr "" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Meta Tags" +msgstr "" + +#. Label of a Table field in DocType 'Website Route Meta' +#: website/doctype/website_route_meta/website_route_meta.json +msgctxt "Website Route Meta" +msgid "Meta Tags" +msgstr "" + +#: website/doctype/web_page/web_page.js:117 +msgid "Meta Title" +msgstr "" + +#. Label of a Data field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Meta Title" +msgstr "" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Meta Title" +msgstr "" + +#: website/doctype/web_page/web_page.js:110 +msgid "Meta title for SEO" +msgstr "" + +#. Label of a Data field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Method" +msgstr "" + +#. Label of a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Method" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Method" +msgstr "" + +#. Label of a Data field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Method" +msgstr "" + +#. Label of a Select field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Method" +msgstr "" + +#. Label of a Data field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Method" +msgstr "" + +#: desk/doctype/number_card/number_card.py:70 +msgid "Method is required to create a number card" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Mid Center" +msgstr "" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Middle Name" +msgstr "" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Middle Name" +msgstr "" + +#. Name of a DocType +#: automation/doctype/milestone/milestone.json +msgid "Milestone" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Milestone" +msgid "Milestone" +msgstr "" + +#. Name of a DocType +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Milestone Tracker" +msgstr "" + +#. Label of a Link field in DocType 'Milestone' +#: automation/doctype/milestone/milestone.json +msgctxt "Milestone" +msgid "Milestone Tracker" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Minimum" +msgstr "" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Minimum Password Score" +msgstr "" + +#. Label of a Int field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Minor" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:102 +#: integrations/doctype/ldap_settings/ldap_settings.py:107 +#: integrations/doctype/ldap_settings/ldap_settings.py:116 +#: integrations/doctype/ldap_settings/ldap_settings.py:124 +#: integrations/doctype/ldap_settings/ldap_settings.py:332 +msgid "Misconfigured" +msgstr "" + +#: desk/form/meta.py:213 +msgid "Missing DocType" +msgstr "" + +#: core/doctype/doctype/doctype.py:1475 +msgid "Missing Field" +msgstr "" + +#: public/js/frappe/form/save.js:178 +msgid "Missing Fields" +msgstr "" + +#: email/doctype/auto_email_report/auto_email_report.py:129 +msgid "Missing Filters Required" +msgstr "" + +#: desk/form/assign_to.py:107 +msgid "Missing Permission" +msgstr "" + +#: www/update-password.html:107 www/update-password.html:114 +msgid "Missing Value" +msgstr "" + +#: public/js/frappe/ui/field_group.js:118 +#: public/js/frappe/widgets/widget_dialog.js:369 +#: public/js/workflow_builder/store.js:97 +#: workflow/doctype/workflow/workflow.js:71 +msgid "Missing Values Required" +msgstr "" + +#: www/login.py:96 +msgid "Mobile" +msgstr "" + +#: tests/test_translate.py:85 tests/test_translate.py:88 +#: tests/test_translate.py:90 tests/test_translate.py:93 +msgid "Mobile No" +msgstr "" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Mobile No" +msgstr "" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Mobile No" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Modal Trigger" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "Models" +msgstr "" + +#: core/report/transaction_log_report/transaction_log_report.py:106 +#: social/doctype/energy_point_rule/energy_point_rule.js:43 +msgid "Modified By" +msgstr "" + +#: core/doctype/doctype/doctype_list.js:30 +msgid "Module" +msgstr "" + +#. Label of a Data field in DocType 'Block Module' +#: core/doctype/block_module/block_module.json +msgctxt "Block Module" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Dashboard Chart Source' +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgctxt "Dashboard Chart Source" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'User Type Module' +#: core/doctype/user_type_module/user_type_module.json +msgctxt "User Type Module" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Module" +msgstr "" + +#. Label of a Link field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Module (for export)" +msgstr "" + +#. Label of a Link field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Module (for export)" +msgstr "" + +#. Label of a Link field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Module (for export)" +msgstr "" + +#. Label of a Link field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Module (for export)" +msgstr "" + +#. Label of a Link field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Module (for export)" +msgstr "" + +#. Name of a DocType +#: core/doctype/module_def/module_def.json +msgid "Module Def" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Module Def" +msgid "Module Def" +msgstr "" + +#. Linked DocType in Package's connections +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Module Def" +msgstr "" + +#. Label of a HTML field in DocType 'Module Profile' +#: core/doctype/module_profile/module_profile.json +msgctxt "Module Profile" +msgid "Module HTML" +msgstr "" + +#. Label of a Data field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Module Name" +msgstr "" + +#. Label of a Data field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Module Name" +msgstr "" + +#. Name of a DocType +#: desk/doctype/module_onboarding/module_onboarding.json +msgid "Module Onboarding" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Module Onboarding" +msgid "Module Onboarding" +msgstr "" + +#. Name of a DocType +#: core/doctype/module_profile/module_profile.json +msgid "Module Profile" +msgstr "" + +#. Label of a Link in the Users Workspace +#: core/workspace/users/users.json +msgctxt "Module Profile" +msgid "Module Profile" +msgstr "" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Module Profile" +msgstr "" + +#. Label of a Data field in DocType 'Module Profile' +#: core/doctype/module_profile/module_profile.json +msgctxt "Module Profile" +msgid "Module Profile Name" +msgstr "" + +#: desk/doctype/module_onboarding/module_onboarding.py:69 +msgid "Module onboarding progress reset" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:208 +msgid "Module to Export" +msgstr "" + +#: modules/utils.py:255 +msgid "Module {} not found" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "Modules" +msgstr "" + +#. Group in Package's connections +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Modules" +msgstr "" + +#. Label of a HTML field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Modules HTML" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Monday" +msgstr "" + +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Monday" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Monday" +msgstr "" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Monday" +msgstr "" + +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Monday" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Monospace" +msgstr "" + +#: public/js/frappe/views/calendar/calendar.js:269 +msgid "Month" +msgstr "" + +#: public/js/frappe/utils/common.js:400 +#: website/report/website_analytics/website_analytics.js:25 +msgid "Monthly" +msgstr "" + +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Monthly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Monthly" +msgstr "" + +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Monthly" +msgstr "" + +#. Option for the 'Point Allocation Periodicity' (Select) field in DocType +#. 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Monthly" +msgstr "" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Monthly" +msgstr "" + +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Monthly" +msgstr "" + +#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup +#. Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Monthly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Monthly" +msgstr "" + +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Monthly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Monthly Long" +msgstr "" + +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Monthly Long" +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:402 +msgid "Monthly Rank" +msgstr "" + +#: public/js/frappe/form/link_selector.js:39 +#: public/js/frappe/form/multi_select_dialog.js:43 +#: public/js/frappe/form/multi_select_dialog.js:70 +#: public/js/frappe/ui/toolbar/search.js:285 +#: public/js/frappe/ui/toolbar/search.js:300 +#: public/js/frappe/widgets/chart_widget.js:674 +#: templates/includes/list/list.html:23 +#: templates/includes/search_template.html:13 +msgid "More" +msgstr "" + +#. Label of a Section Break field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "More Information" +msgstr "" + +#. Label of a Section Break field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "More Information" +msgstr "" + +#. Label of a Section Break field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "More Information" +msgstr "" + +#. Label of a Tab Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "More Information" +msgstr "" + +#: website/doctype/help_article/templates/help_article.html:19 +#: 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' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "More content for the bottom of the page." +msgstr "" + +#: public/js/frappe/ui/sort_selector.js:193 +msgid "Most Used" +msgstr "" + +#: utils/password.py:64 +msgid "Most probably your password is too long." +msgstr "" + +#: core/doctype/communication/communication.js:86 +#: core/doctype/communication/communication.js:194 +#: core/doctype/communication/communication.js:212 +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Move" +msgstr "" + +#: public/js/frappe/form/grid_row.js:189 +msgid "Move To" +msgstr "" + +#: core/doctype/communication/communication.js:104 +msgid "Move To Trash" +msgstr "" + +#: public/js/frappe/form/form.js:176 +msgid "Move cursor to above row" +msgstr "" + +#: public/js/frappe/form/form.js:180 +msgid "Move cursor to below row" +msgstr "" + +#: public/js/frappe/form/form.js:184 +msgid "Move cursor to next column" +msgstr "" + +#: public/js/frappe/form/form.js:188 +msgid "Move cursor to previous column" +msgstr "" + +#: public/js/frappe/form/grid_row.js:165 +msgid "Move to Row Number" +msgstr "" + +#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Move to next step when clicked inside highlighted area." +msgstr "" + +#. Description of the 'Parent Element Selector' (Data) field in DocType 'Form +#. Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround" +msgstr "" + +#: utils/nestedset.py:328 +msgid "Multiple root nodes not allowed." +msgstr "" + +#. Label of a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Multiplier Field" +msgstr "" + +#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data +#. Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Must be a publicly accessible Google Sheets URL" +msgstr "" + +#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP +#. Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +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 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Must be of type \"Attach Image\"" +msgstr "" + +#. Description of the 'Image Field' (Data) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Must be of type \"Attach Image\"" +msgstr "" + +#: desk/query_report.py:200 +msgid "Must have report permission to access this report." +msgstr "" + +#: core/doctype/report/report.py:148 +msgid "Must specify a Query to run" +msgstr "" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Mute Sounds" +msgstr "" + +#: templates/includes/web_sidebar.html:41 +#: website/doctype/web_form/web_form.py:400 +#: website/doctype/website_settings/website_settings.py:181 www/list.py:21 +#: www/me.html:4 www/me.html:8 www/update_password.py:10 +msgid "My Account" +msgstr "" + +#. Label of a standard navbar item +#. Type: Route +#: hooks.py +msgid "My Profile" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py +msgid "My Settings" +msgstr "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "MyISAM" +msgstr "" + +#: 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' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings" +msgstr "" + +#: public/js/frappe/form/layout.js:75 +#: public/js/frappe/form/multi_select_dialog.js:239 +#: public/js/frappe/form/save.js:154 +#: public/js/frappe/views/file/file_view.js:97 +#: website/doctype/website_slideshow/website_slideshow.js:25 +msgid "Name" +msgstr "" + +#. Label of a Data field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Name" +msgstr "" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Name" +msgstr "" + +#. Label of a Data field in DocType 'Slack Webhook URL' +#: integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgctxt "Slack Webhook URL" +msgid "Name" +msgstr "" + +#. Label of a Data field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Name" +msgstr "" + +#: integrations/doctype/webhook/webhook.js:29 +msgid "Name (Doc Name)" +msgstr "" + +#: desk/utils.py:22 +msgid "Name already taken, please set a new name" +msgstr "" + +#: model/naming.py:480 +msgid "Name cannot contain special characters like {0}" +msgstr "" + +#: 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 "" + +#: printing/page/print_format_builder/print_format_builder.js:117 +msgid "Name of the new Print Format" +msgstr "" + +#: model/naming.py:475 +msgid "Name of {0} cannot be {1}" +msgstr "" + +#: utils/password_strength.py:174 +msgid "Names and surnames by themselves are easy to guess." +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Naming" +msgstr "" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Naming" +msgstr "" + +#. Label of a Section Break field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Naming" +msgstr "" + +#. Description of the 'Auto Name' (Data) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Naming Options:\n" +"
  1. field:[fieldname] - By Field
  2. autoincrement - Uses Databases' Auto Increment feature
  3. naming_series: - By Naming Series (field called naming_series must be present)
  4. Prompt - Prompt user for a name
  5. [series] - Series by prefix (separated by a dot); for example PRE.#####
  6. \n" +"
  7. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" +msgstr "" + +#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Naming Options:\n" +"
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" +"
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" +msgstr "" + +#. Label of a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Naming Rule" +msgstr "" + +#. Label of a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Naming Rule" +msgstr "" + +#. Label of a Tab Break field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Naming Series" +msgstr "" + +#: model/naming.py:244 +msgid "Naming Series mandatory" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Navbar" +msgstr "" + +#. Label of a Section Break field in DocType 'Website Settings' +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Navbar" +msgstr "" + +#. Name of a DocType +#: core/doctype/navbar_item/navbar_item.json +msgid "Navbar Item" +msgstr "" + +#. Name of a DocType +#: core/doctype/navbar_settings/navbar_settings.json +msgid "Navbar Settings" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Navbar Settings" +msgid "Navbar Settings" +msgstr "" + +#. Label of a Link field in DocType 'Website Settings' +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Navbar Template" +msgstr "" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Navbar Template Values" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:214 +msgid "Navigate Home" +msgstr "" + +#: public/js/frappe/list/list_view.js:1162 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "" + +#: public/js/frappe/list/list_view.js:1169 +msgctxt "Description of a list view shortcut" +msgid "Navigate list up" +msgstr "" + +#: public/js/frappe/ui/page.js:168 +msgid "Navigate to main content" +msgstr "" + +#. Label of a Section Break field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Navigation Settings" +msgstr "" + +#: desk/doctype/workspace/workspace.py:297 +msgid "Need Workspace Manager role to edit private workspace of other users" +msgstr "" + +#: desk/doctype/workspace/workspace.py:341 +msgid "Need Workspace Manager role to hide/unhide public workspaces" +msgstr "" + +#: model/document.py:627 +msgid "Negative Value" +msgstr "" + +#: utils/nestedset.py:93 +msgid "Nested set error. Please contact the Administrator." +msgstr "" + +#. Name of a DocType +#: printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Network Printer Settings" +msgstr "" + +#: core/doctype/success_action/success_action.js:55 +#: core/page/dashboard_view/dashboard_view.js:173 desk/doctype/todo/todo.js:46 +#: public/js/frappe/form/success_action.js:77 +#: public/js/frappe/views/treeview.js:454 +#: website/doctype/web_form/templates/web_list.html:15 www/list.html:19 +msgid "New" +msgstr "" + +#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point +#. Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "New" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "New" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "New" +msgstr "" + +#: public/js/frappe/views/interaction.js:15 +msgid "New Activity" +msgstr "" + +#: public/js/frappe/form/templates/address_list.html:42 +msgid "New Address" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:58 +msgid "New Chart" +msgstr "" + +#: templates/includes/comments/comments.py:62 +msgid "New Comment on {0}: {1}" +msgstr "" + +#: public/js/frappe/form/templates/contact_list.html:90 +msgid "New Contact" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:70 +msgid "New Custom Block" +msgstr "" + +#: printing/page/print/print.js:295 printing/page/print/print.js:342 +msgid "New Custom Print Format" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "New Document Form" +msgstr "" + +#: desk/doctype/notification_log/notification_log.py:158 +msgid "New Document Shared {0}" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:26 +#: public/js/frappe/views/communication.js:23 +msgid "New Email" +msgstr "" + +#: public/js/frappe/list/list_view_select.js:98 +#: public/js/frappe/views/inbox/inbox_view.js:177 +msgid "New Email Account" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:45 +msgid "New Event" +msgstr "" + +#: public/js/frappe/views/file/file_view.js:94 +msgid "New Folder" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:341 +msgid "New Kanban Board" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:62 +msgid "New Links" +msgstr "" + +#: desk/doctype/notification_log/notification_log.py:156 +msgid "New Mention on {0}" +msgstr "" + +#: www/contact.py:59 +msgid "New Message from Website Contact Page" +msgstr "" + +#: public/js/frappe/form/toolbar.js:206 public/js/frappe/model/model.js:732 +msgid "New Name" +msgstr "" + +#. Label of a Read Only field in DocType 'Deleted Document' +#: core/doctype/deleted_document/deleted_document.json +msgctxt "Deleted Document" +msgid "New Name" +msgstr "" + +#: email/doctype/email_group/email_group.js:67 +msgid "New Newsletter" +msgstr "" + +#: desk/doctype/notification_log/notification_log.py:155 +msgid "New Notification" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:64 +msgid "New Number Card" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:66 +msgid "New Onboarding" +msgstr "" + +#: core/doctype/user/user.js:171 www/update-password.html:19 +msgid "New Password" +msgstr "" + +#: printing/page/print/print.js:267 printing/page/print/print.js:321 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:61 +msgid "New Print Format Name" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:68 +msgid "New Quick List" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1307 +msgid "New Report name" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:60 +msgid "New Shortcut" +msgstr "" + +#: core/doctype/version/version_view.html:14 +#: core/doctype/version/version_view.html:76 +msgid "New Value" +msgstr "" + +#: workflow/page/workflow_builder/workflow_builder.js:61 +msgid "New Workflow Name" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1183 +msgid "New Workspace" +msgstr "" + +#: www/update-password.html:77 +msgid "New password cannot be same as old password" +msgstr "" + +#: utils/change_log.py:320 +msgid "New updates are available" +msgstr "" + +#. Description of the 'Disable signups' (Check) field in DocType 'Website +#. Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "New users will have to be manually registered by system managers." +msgstr "" + +#. Description of the 'Set Value' (Small Text) field in DocType 'Property +#. Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "New value to be set" +msgstr "" + +#: public/js/frappe/form/quick_entry.js:129 public/js/frappe/form/toolbar.js:36 +#: public/js/frappe/form/toolbar.js:196 public/js/frappe/form/toolbar.js:209 +#: public/js/frappe/form/toolbar.js:490 +#: public/js/frappe/ui/toolbar/search_utils.js:167 +#: public/js/frappe/ui/toolbar/search_utils.js:168 +#: public/js/frappe/ui/toolbar/search_utils.js:217 +#: public/js/frappe/ui/toolbar/search_utils.js:218 +#: public/js/frappe/views/treeview.js:350 +#: public/js/frappe/widgets/widget_dialog.js:72 +#: website/doctype/web_form/web_form.py:309 +msgid "New {0}" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:392 +msgid "New {0} Created" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:384 +msgid "New {0} {1} added to Dashboard {2}" +msgstr "" + +#: public/js/frappe/form/quick_entry.js:172 +#: public/js/frappe/views/reports/query_report.js:389 +msgid "New {0} {1} created" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.py:374 +msgid "New {0}: {1}" +msgstr "" + +#: utils/change_log.py:312 +msgid "New {} releases for the following apps are available" +msgstr "" + +#: core/doctype/user/user.py:806 +msgid "Newly created user {0} has no roles enabled." +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#. Name of a DocType +#: automation/workspace/tools/tools.json +#: email/doctype/newsletter/newsletter.json +msgid "Newsletter" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Newsletter" +msgid "Newsletter" +msgstr "" + +#. Name of a DocType +#: email/doctype/newsletter_attachment/newsletter_attachment.json +msgid "Newsletter Attachment" +msgstr "" + +#. Name of a DocType +#: email/doctype/newsletter_email_group/newsletter_email_group.json +msgid "Newsletter Email Group" +msgstr "" + +#. Name of a role +#: email/doctype/email_group/email_group.json +#: email/doctype/email_group_member/email_group_member.json +#: email/doctype/newsletter/newsletter.json +#: website/doctype/marketing_campaign/marketing_campaign.json +msgid "Newsletter Manager" +msgstr "" + +#: email/doctype/newsletter/newsletter.py:130 +msgid "Newsletter has already been sent" +msgstr "" + +#: email/doctype/newsletter/newsletter.py:149 +msgid "Newsletter must be published to send webview link in email" +msgstr "" + +#: email/doctype/newsletter/newsletter.py:137 +msgid "Newsletter should have atleast one recipient" +msgstr "" + +#: email/doctype/newsletter/newsletter.py:390 +msgid "Newsletters" +msgstr "" + +#: public/js/frappe/form/form_tour.js:318 +#: public/js/frappe/web_form/web_form.js:91 +#: public/js/onboarding_tours/onboarding_tours.js:15 +#: public/js/onboarding_tours/onboarding_tours.js:240 +#: templates/includes/slideshow.html:38 website/utils.py:245 +#: website/web_template/slideshow/slideshow.html:44 +msgid "Next" +msgstr "" + +#: public/js/frappe/ui/slides.js:359 +msgctxt "Go to next slide" +msgid "Next" +msgstr "" + +#. Label of a Link field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Next Action Email Template" +msgstr "" + +#. Label of a HTML field in DocType 'Success Action' +#: core/doctype/success_action/success_action.json +msgctxt "Success Action" +msgid "Next Actions HTML" +msgstr "" + +#: public/js/frappe/form/toolbar.js:297 +msgid "Next Document" +msgstr "" + +#. Label of a Datetime field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Next Execution" +msgstr "" + +#. Label of a Link field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Next Form Tour" +msgstr "" + +#. Label of a Date field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Next Schedule Date" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat_schedule.html:6 +msgid "Next Scheduled Date" +msgstr "" + +#. Label of a Link field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Next State" +msgstr "" + +#. Label of a Code field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Next Step Condition" +msgstr "" + +#. Label of a Password field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Next Sync Token" +msgstr "" + +#. Label of a Password field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Next Sync Token" +msgstr "" + +#: public/js/frappe/form/workflow.js:45 +msgid "Next actions" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Next on Click" +msgstr "" + +#: integrations/doctype/webhook/webhook.py:140 +#: public/js/form_builder/utils.js:341 +#: public/js/frappe/form/controls/link.js:472 +#: public/js/frappe/list/list_sidebar_group_by.js:223 +#: public/js/frappe/views/reports/query_report.js:1530 +#: website/doctype/help_article/templates/help_article.html:26 +msgid "No" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:502 +msgctxt "Checkbox is not checked" +msgid "No" +msgstr "" + +#: public/js/frappe/ui/messages.js:37 +msgctxt "Dismiss confirmation dialog" +msgid "No" +msgstr "" + +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "No" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "No" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "No" +msgstr "" + +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "No" +msgstr "" + +#: www/third_party_apps.html:54 +msgid "No Active Sessions" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "No Copy" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "No Copy" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "No Copy" +msgstr "" + +#: core/doctype/data_export/exporter.py:162 +#: email/doctype/auto_email_report/auto_email_report.py:288 +#: public/js/frappe/data_import/import_preview.js:142 +#: public/js/frappe/form/grid.js:63 +#: public/js/frappe/form/multi_select_dialog.js:223 +#: public/js/frappe/utils/datatable.js:10 +#: public/js/frappe/widgets/chart_widget.js:57 +msgid "No Data" +msgstr "" + +#: desk/page/user_profile/user_profile.html:11 +#: desk/page/user_profile/user_profile.html:22 +#: desk/page/user_profile/user_profile.html:33 +msgid "No Data to Show" +msgstr "" + +#: public/js/frappe/widgets/quick_list_widget.js:131 +msgid "No Data..." +msgstr "" + +#: public/js/frappe/views/inbox/inbox_view.js:176 +msgid "No Email Account" +msgstr "" + +#: public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "" + +#: public/js/frappe/views/inbox/inbox_view.js:183 +msgid "No Emails" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:360 +msgid "No Entry for the User {0} found within LDAP!" +msgstr "" + +#: public/js/frappe/widgets/chart_widget.js:366 +msgid "No Filters Set" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:357 +msgid "No Google Calendar Event to sync." +msgstr "" + +#: public/js/frappe/ui/capture.js:262 +msgid "No Images" +msgstr "" + +#: desk/page/leaderboard/leaderboard.js:282 +msgid "No Items Found" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:362 +msgid "No LDAP User found for email: {0}" +msgstr "" + +#: public/js/workflow_builder/store.js:51 +msgid "No Label" +msgstr "" + +#: printing/page/print/print.js:682 printing/page/print/print.js:764 +#: public/js/frappe/list/bulk_operations.js:90 +#: public/js/frappe/list/bulk_operations.js:140 utils/weasyprint.py:52 +msgid "No Letterhead" +msgstr "" + +#: model/naming.py:457 +msgid "No Name Specified for {0}" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:308 +msgid "No New notifications" +msgstr "" + +#: core/doctype/doctype/doctype.py:1682 +msgid "No Permissions Specified" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:192 +msgid "No Permissions set for this criteria." +msgstr "" + +#: core/page/dashboard_view/dashboard_view.js:93 +msgid "No Permitted Charts" +msgstr "" + +#: core/page/dashboard_view/dashboard_view.js:92 +msgid "No Permitted Charts on this Dashboard" +msgstr "" + +#: printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "" + +#: printing/page/print/print.js:686 +msgid "No Preview Available" +msgstr "" + +#: printing/page/print/print.js:842 +msgid "No Printer is Available." +msgstr "" + +#: core/doctype/rq_worker/rq_worker_list.js:3 +msgid "No RQ Workers connected. Try restarting the bench." +msgstr "" + +#: public/js/frappe/form/link_selector.js:135 +msgid "No Results" +msgstr "" + +#: public/js/frappe/ui/toolbar/search.js:51 +msgid "No Results found" +msgstr "" + +#: core/doctype/user/user.py:807 +msgid "No Roles Specified" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:341 +msgid "No Select Field Found" +msgstr "" + +#: desk/reportview.py:584 +msgid "No Tags" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:428 +msgid "No Upcoming Events" +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:441 +msgid "No activities to show" +msgstr "" + +#: public/js/frappe/form/templates/address_list.html:37 +msgid "No address added yet." +msgstr "" + +#: email/doctype/notification/notification.js:180 +msgid "No alerts for today" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:34 +msgid "No broken links found in the email content" +msgstr "" + +#: public/js/frappe/form/save.js:38 +msgid "No changes in document" +msgstr "" + +#: model/rename_doc.py:364 +msgid "No changes made because old and new name are the same." +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1488 +msgid "No changes made on the page" +msgstr "" + +#: custom/doctype/doctype_layout/doctype_layout.js:59 +msgid "No changes to sync" +msgstr "" + +#: core/doctype/data_import/importer.py:282 +msgid "No changes to update" +msgstr "" + +#: website/doctype/blog_post/blog_post.py:372 +msgid "No comments yet" +msgstr "" + +#: templates/includes/comments/comments.html:4 +msgid "No comments yet. " +msgstr "" + +#: public/js/frappe/form/templates/contact_list.html:85 +msgid "No contacts added yet." +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.py:427 +msgid "No contacts linked to document" +msgstr "" + +#: desk/query_report.py:331 +msgid "No data to export" +msgstr "" + +#: contacts/doctype/address/address.py:249 +msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." +msgstr "" + +#: public/js/frappe/ui/toolbar/search.js:71 +msgid "No documents found tagged with {0}" +msgstr "" + +#: public/js/frappe/views/inbox/inbox_view.js:21 +msgid "No email account associated with the User. Please add an account under User > Email Inbox." +msgstr "" + +#: core/doctype/data_import/data_import.js:484 +msgid "No failed logs" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:368 +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 "" + +#: utils/file_manager.py:143 +msgid "No file attached" +msgstr "" + +#: public/js/frappe/list/list_sidebar_group_by.js:134 +msgid "No filters found" +msgstr "" + +#: public/js/frappe/ui/filters/filter_list.js:298 +msgid "No filters selected" +msgstr "" + +#: desk/form/utils.py:101 +msgid "No further records" +msgstr "" + +#: templates/includes/search_template.html:49 +msgid "No matching records. Search something new" +msgstr "" + +#: public/js/frappe/web_form/web_form_list.js:161 +msgid "No more items to display" +msgstr "" + +#: utils/password_strength.py:45 +msgid "No need for symbols, digits, or uppercase letters." +msgstr "" + +#: integrations/doctype/google_contacts/google_contacts.py:195 +msgid "No new Google Contacts synced." +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:46 +msgid "No new notifications" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:415 +msgid "No of Columns" +msgstr "" + +#. Label of a Int field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "No of Requested SMS" +msgstr "" + +#. Label of a Int field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "No of Rows (Max 500)" +msgstr "" + +#. Label of a Int field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "No of Sent SMS" +msgstr "" + +#: __init__.py:1121 client.py:109 client.py:151 +msgid "No permission for {0}" +msgstr "" + +#: public/js/frappe/form/form.js:1115 +msgctxt "{0} = verb, {1} = object" +msgid "No permission to '{0}' {1}" +msgstr "" + +#: model/db_query.py:924 +msgid "No permission to read {0}" +msgstr "" + +#: share.py:220 +msgid "No permission to {0} {1} {2}" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:175 +msgid "No records deleted" +msgstr "" + +#: contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +msgid "No records present in {0}" +msgstr "" + +#: public/js/frappe/list/list_sidebar_stat.html:3 +msgid "No records tagged." +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:224 +msgid "No records will be exported" +msgstr "" + +#: www/printview.py:442 +msgid "No template found at path: {0}" +msgstr "" + +#: public/js/frappe/form/controls/multiselect_list.js:246 +msgid "No values to show" +msgstr "" + +#: website/web_template/discussions/discussions.html:2 +msgid "No {0}" +msgstr "" + +#: public/js/frappe/list/list_view_select.js:157 +msgid "No {0} Found" +msgstr "" + +#: public/js/frappe/web_form/web_form_list.js:233 +msgid "No {0} found" +msgstr "" + +#: public/js/frappe/list/list_view.js:467 +msgid "No {0} found with matching filters. Clear filters to see all {0}." +msgstr "" + +#: public/js/frappe/views/inbox/inbox_view.js:171 +msgid "No {0} mail" +msgstr "" + +#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:252 +msgctxt "Title of the 'row number' column" +msgid "No." +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Non Negative" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Non Negative" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Non Negative" +msgstr "" + +#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup +#. Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "None" +msgstr "" + +#: public/js/frappe/form/workflow.js:36 +msgid "None: End of Workflow" +msgstr "" + +#. Label of a Int field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Normalized Copies" +msgstr "" + +#. Label of a Data field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Normalized Query" +msgstr "" + +#: core/doctype/user/user.py:1012 templates/includes/login/login.js:258 +#: utils/oauth.py:265 +msgid "Not Allowed" +msgstr "" + +#: templates/includes/login/login.js:260 +msgid "Not Allowed: Disabled User" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:36 +msgid "Not Ancestors Of" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:34 +msgid "Not Descendants Of" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:17 +msgid "Not Equals" +msgstr "" + +#: app.py:362 www/404.html:3 +msgid "Not Found" +msgstr "" + +#. Label of a Int field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Not Helpful" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:21 +msgid "Not In" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:19 +msgid "Not Like" +msgstr "" + +#: public/js/frappe/form/linked_with.js:45 +msgid "Not Linked to any record" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Not Nullable" +msgstr "" + +#: __init__.py:1017 app.py:353 desk/calendar.py:26 geo/utils.py:97 +#: public/js/frappe/web_form/webform_script.js:15 +#: website/doctype/web_form/web_form.py:602 +#: website/page_renderers/not_permitted_page.py:20 www/login.py:178 +#: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37 +msgid "Not Permitted" +msgstr "" + +#: desk/query_report.py:506 +msgid "Not Permitted to read {0}" +msgstr "" + +#: website/doctype/blog_post/blog_post_list.js:7 +#: website/doctype/web_form/web_form_list.js:7 +#: website/doctype/web_page/web_page_list.js:7 +msgid "Not Published" +msgstr "" + +#: public/js/frappe/form/toolbar.js:260 public/js/frappe/form/toolbar.js:740 +#: public/js/frappe/model/indicator.js:28 +#: public/js/frappe/views/kanban/kanban_view.js:167 +#: public/js/frappe/views/reports/report_view.js:173 +#: public/js/print_format_builder/print_format_builder.bundle.js:39 +#: website/doctype/web_form/templates/web_form.html:75 +msgid "Not Saved" +msgstr "" + +#: core/doctype/error_log/error_log_list.js:7 +msgid "Not Seen" +msgstr "" + +#: email/doctype/newsletter/newsletter_list.js:9 +msgid "Not Sent" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Not Sent" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgctxt "Email Queue Recipient" +msgid "Not Sent" +msgstr "" + +#: public/js/frappe/list/list_sidebar_group_by.js:219 +msgid "Not Set" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:564 +msgctxt "Field value is not set" +msgid "Not Set" +msgstr "" + +#: utils/csvutils.py:77 +msgid "Not a valid Comma Separated Value (CSV File)" +msgstr "" + +#: core/doctype/user/user.py:234 +msgid "Not a valid User Image." +msgstr "" + +#: model/workflow.py:114 +msgid "Not a valid Workflow Action" +msgstr "" + +#: templates/includes/login/login.js:256 +msgid "Not a valid user" +msgstr "" + +#: workflow/doctype/workflow/workflow_list.js:7 +msgid "Not active" +msgstr "" + +#: permissions.py:364 +msgid "Not allowed for {0}: {1}" +msgstr "" + +#: email/doctype/notification/notification.py:391 +msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" +msgstr "" + +#: core/doctype/doctype/doctype.py:334 +msgid "Not allowed to create custom Virtual DocType." +msgstr "" + +#: www/printview.py:140 +msgid "Not allowed to print cancelled documents" +msgstr "" + +#: www/printview.py:137 +msgid "Not allowed to print draft documents" +msgstr "" + +#: permissions.py:211 +msgid "Not allowed via controller permission check" +msgstr "" + +#: public/js/frappe/request.js:145 website/js/website.js:94 +msgid "Not found" +msgstr "" + +#: core/doctype/page/page.py:63 +msgid "Not in Developer Mode" +msgstr "" + +#: core/doctype/doctype/doctype.py:329 +msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." +msgstr "" + +#: api/v1.py:88 api/v1.py:93 +#: core/doctype/system_settings/system_settings.py:209 handler.py:109 +#: public/js/frappe/request.js:157 public/js/frappe/request.js:167 +#: public/js/frappe/request.js:172 +#: public/js/frappe/views/kanban/kanban_board.bundle.js:68 +#: website/doctype/web_form/web_form.py:615 website/js/website.js:97 +msgid "Not permitted" +msgstr "" + +#: public/js/frappe/list/list_view.js:46 +msgid "Not permitted to view {0}" +msgstr "" + +#. Name of a DocType +#: automation/doctype/auto_repeat/auto_repeat.py:396 +#: desk/doctype/note/note.json +msgid "Note" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Note" +msgid "Note" +msgstr "" + +#. Name of a DocType +#: desk/doctype/note_seen_by/note_seen_by.json +msgid "Note Seen By" +msgstr "" + +#: www/confirm_workflow_action.html:8 +msgid "Note:" +msgstr "" + +#. Description of the 'Send Email for Successful Backup' (Check) field in +#. DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Note: By default emails for failed backups are sent." +msgstr "" + +#. Description of the 'Send Email for Successful backup' (Check) field in +#. DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Note: By default emails for failed backups are sent." +msgstr "" + +#: public/js/frappe/utils/utils.js:776 +msgid "Note: Changing the Page Name will break previous URL to this page." +msgstr "" + +#: core/doctype/user/user.js:35 +msgid "Note: Etc timezones have their signs reversed." +msgstr "" + +#. Description of the 'sb0' (Section Break) field in DocType 'Website +#. Slideshow' +#: website/doctype/website_slideshow/website_slideshow.json +msgctxt "Website Slideshow" +msgid "Note: For best results, images must be of the same size and width must be greater than height." +msgstr "" + +#. Description of the 'Allow only one session per user' (Check) field in +#. DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Note: Multiple sessions will be allowed in case of mobile device" +msgstr "" + +#: core/doctype/user/user.js:371 +msgid "Note: This will be shared with user." +msgstr "" + +#: website/web_form/request_to_delete_data/request_to_delete_data.js:8 +msgid "Note: Your request for account deletion will be fulfilled within {0} hours." +msgstr "" + +#: core/doctype/data_export/exporter.py:183 +msgid "Notes:" +msgstr "" + +#: public/js/frappe/form/undo_manager.js:43 +msgid "Nothing left to redo" +msgstr "" + +#: public/js/frappe/form/undo_manager.js:33 +msgid "Nothing left to undo" +msgstr "" + +#: public/js/frappe/list/base_list.js:362 +#: public/js/frappe/views/reports/query_report.js:104 +#: templates/includes/list/list.html:7 +#: website/doctype/blog_post/templates/blog_post_list.html:41 +#: website/doctype/help_article/templates/help_article_list.html:21 +msgid "Nothing to show" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:129 +msgid "Nothing to update" +msgstr "" + +#. Name of a DocType +#: core/doctype/communication/mixins.py:142 +#: email/doctype/notification/notification.json +msgid "Notification" +msgstr "" + +#. Label of a Section Break field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Notification" +msgstr "" + +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Notification" +msgstr "" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Notification" +msgstr "" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Notification" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Notification" +msgid "Notification" +msgstr "" + +#. Label of a Section Break field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Notification" +msgstr "" + +#. Name of a DocType +#: desk/doctype/notification_log/notification_log.json +msgid "Notification Log" +msgstr "" + +#. Name of a DocType +#: email/doctype/notification_recipient/notification_recipient.json +msgid "Notification Recipient" +msgstr "" + +#. Name of a DocType +#: desk/doctype/notification_settings/notification_settings.json +#: public/js/frappe/ui/notifications/notifications.js:36 +msgid "Notification Settings" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Notification Settings" +msgid "Notification Settings" +msgstr "" + +#. Name of a DocType +#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgid "Notification Subscribed Document" +msgstr "" + +#: public/js/frappe/form/templates/timeline_message_box.html:7 +msgid "Notification sent to" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:49 +#: public/js/frappe/ui/notifications/notifications.js:180 +msgid "Notifications" +msgstr "" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Notifications" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:292 +msgid "Notifications Disabled" +msgstr "" + +#. Description of the 'Default Outgoing' (Check) field in DocType 'Email +#. Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Notifications and bulk mails will be sent from this outgoing server." +msgstr "" + +#. Label of a Check field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Notify Users On Every Login" +msgstr "" + +#. Label of a Check field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Notify by Email" +msgstr "" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Notify by email" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Notify if unreplied" +msgstr "" + +#. Label of a Int field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Notify if unreplied for (in mins)" +msgstr "" + +#. Label of a Check field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Notify users with a popup when they log in" +msgstr "" + +#: public/js/frappe/form/controls/datetime.js:25 +#: public/js/frappe/form/controls/time.js:37 +msgid "Now" +msgstr "" + +#. Label of a Data field in DocType 'Contact Phone' +#: contacts/doctype/contact_phone/contact_phone.json +msgctxt "Contact Phone" +msgid "Number" +msgstr "" + +#. Name of a DocType +#: desk/doctype/number_card/number_card.json +#: public/js/frappe/widgets/widget_dialog.js:630 +msgid "Number Card" +msgstr "" + +#. Name of a DocType +#: desk/doctype/number_card_link/number_card_link.json +msgid "Number Card Link" +msgstr "" + +#. Label of a Link field in DocType 'Workspace Number Card' +#: desk/doctype/workspace_number_card/workspace_number_card.json +msgctxt "Workspace Number Card" +msgid "Number Card Name" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:660 +msgid "Number Cards" +msgstr "" + +#. Label of a Tab Break field in DocType 'Workspace' +#. Label of a Table field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Number Cards" +msgstr "" + +#. Label of a Select field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Number Format" +msgstr "" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Number Format" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Number of Backups" +msgstr "" + +#. Label of a Int field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Number of DB Backups" +msgstr "" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:54 +msgid "Number of DB backups cannot be less than 1" +msgstr "" + +#. Label of a Int field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Number of Groups" +msgstr "" + +#. Label of a Int field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Number of Queries" +msgstr "" + +#: core/doctype/doctype/doctype.py:441 public/js/frappe/doctype/index.js:59 +msgid "Number of attachment fields are more than {}, limit updated to {}." +msgstr "" + +#: core/doctype/system_settings/system_settings.py:162 +msgid "Number of backups must be greater than zero." +msgstr "" + +#. Description of the 'Columns' (Int) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" +msgstr "" + +#. Description of the 'Columns' (Int) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" +msgstr "" + +#. Description of the 'Columns' (Int) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" +msgstr "" + +#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in +#. DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Number of days after which the document Web View link shared on email will be expired" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "OAuth" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "OAuth Authorization Code" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "OAuth Bearer Token" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/oauth_client/oauth_client.json +msgid "OAuth Client" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "OAuth Client" +msgid "OAuth Client" +msgstr "" + +#. Label of a Section Break field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "OAuth Client ID" +msgstr "" + +#: email/oauth.py:30 +msgid "OAuth Error" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "OAuth Provider Settings" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "OAuth Provider Settings" +msgid "OAuth Provider Settings" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/oauth_scope/oauth_scope.json +msgid "OAuth Scope" +msgstr "" + +#: email/doctype/email_account/email_account.js:187 +msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." +msgstr "" + +#: templates/includes/oauth_confirmation.html:39 +msgid "OK" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "OPTIONS" +msgstr "" + +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "OTP App" +msgstr "" + +#. Label of a Data field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "OTP Issuer Name" +msgstr "" + +#: twofactor.py:461 +msgid "OTP Secret Reset - {0}" +msgstr "" + +#: twofactor.py:480 +msgid "OTP Secret has been reset. Re-registration will be required on next login." +msgstr "" + +#: templates/includes/login/login.js:363 +msgid "OTP setup using OTP App was not completed. Please contact Administrator." +msgstr "" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Off" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Office" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Office 365" +msgstr "" + +#: core/doctype/server_script/server_script.js:33 +msgid "Official Documentation" +msgstr "" + +#. Label of a Int field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Offset X" +msgstr "" + +#. Label of a Int field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Offset Y" +msgstr "" + +#: www/update-password.html:15 +msgid "Old Password" +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:362 +msgid "Old and new fieldnames are same." +msgstr "" + +#. Description of the 'Number of Backups' (Int) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Older backups will be automatically deleted" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "On Hold" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "On Payment Authorization" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "On Payment Failed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "On Payment Paid" +msgstr "" + +#. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "On checking this option, URL will be treated like a jinja template string" +msgstr "" + +#: public/js/frappe/views/communication.js:943 +msgid "On {0}, {1} wrote:" +msgstr "" + +#. Label of a Check field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Onboard" +msgstr "" + +#. Name of a DocType +#: desk/doctype/onboarding_permission/onboarding_permission.json +msgid "Onboarding Permission" +msgstr "" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Onboarding Status" +msgstr "" + +#. Name of a DocType +#: desk/doctype/onboarding_step/onboarding_step.json +msgid "Onboarding Step" +msgstr "" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Onboarding Step" +msgstr "" + +#. Name of a DocType +#: desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Onboarding Step Map" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:269 +msgid "Onboarding complete" +msgstr "" + +#: core/doctype/doctype/doctype_list.js:42 +msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." +msgstr "" + +#. Description of the 'Is Submittable' (Check) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:35 +msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." +msgstr "" + +#: www/complete_signup.html:7 +msgid "One Last Step" +msgstr "" + +#: twofactor.py:278 +msgid "One Time Password (OTP) Registration Code from {}" +msgstr "" + +#: core/doctype/data_export/exporter.py:331 +msgid "One of" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1323 +msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving" +msgstr "" + +#: client.py:213 +msgid "Only 200 inserts allowed in one request" +msgstr "" + +#: email/doctype/email_queue/email_queue.py:81 +msgid "Only Administrator can delete Email Queue" +msgstr "" + +#: core/doctype/page/page.py:67 +msgid "Only Administrator can edit" +msgstr "" + +#: core/doctype/report/report.py:75 +msgid "Only Administrator can save a standard report. Please rename and save." +msgstr "" + +#: recorder.py:309 +msgid "Only Administrator is allowed to use Recorder" +msgstr "" + +#. Label of a Link field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Only Allow Edit For" +msgstr "" + +#: core/doctype/doctype/doctype.py:1557 +msgid "Only Options allowed for Data field are:" +msgstr "" + +#. Label of a Int field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Only Send Records Updated in Last X Hours" +msgstr "" + +#: desk/doctype/workspace/workspace.js:36 +msgid "Only Workspace Manager can edit public workspaces" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:547 +msgid "Only Workspace Manager can sort or edit this page" +msgstr "" + +#: modules/utils.py:64 +msgid "Only allowed to export customizations in developer mode" +msgstr "" + +#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup +#. Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Only change this if you want to use other S3 compatible object storage backends." +msgstr "" + +#. Label of a Link field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Only for" +msgstr "" + +#: core/doctype/data_export/exporter.py:192 +msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." +msgstr "" + +#: contacts/doctype/contact/contact.py:130 +#: contacts/doctype/contact/contact.py:154 +msgid "Only one {0} can be set as primary." +msgstr "" + +#: desk/reportview.py:336 +msgid "Only reports of type Report Builder can be deleted" +msgstr "" + +#: desk/reportview.py:307 +msgid "Only reports of type Report Builder can be edited" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:124 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "" + +#: desk/form/assign_to.py:195 +msgid "Only the assignee can complete this to-do." +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:54 +msgid "Only users involved in the document are listed" +msgstr "" + +#: email/doctype/auto_email_report/auto_email_report.py:106 +msgid "Only {0} emailed reports are allowed per user." +msgstr "" + +#: templates/includes/login/login.js:292 +msgid "Oops! Something went wrong." +msgstr "" + +#: core/doctype/deleted_document/deleted_document.js:7 +msgid "Open" +msgstr "" + +#: desk/doctype/todo/todo_list.js:14 +msgctxt "Access" +msgid "Open" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Open" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Open" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Open" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Open" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Open" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:205 +msgid "Open Awesomebar" +msgstr "" + +#: public/js/frappe/form/templates/timeline_message_box.html:67 +msgid "Open Communication" +msgstr "" + +#: templates/emails/new_notification.html:10 +msgid "Open Document" +msgstr "" + +#. Label of a Table MultiSelect field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Open Documents" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:240 +msgid "Open Help" +msgstr "" + +#. Label of a Button field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Open Reference Document" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:223 +msgid "Open Settings" +msgstr "" + +#: public/js/frappe/ui/toolbar/about.js:8 +msgid "Open Source Applications for the Web" +msgstr "" + +#. Label of a Check field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "Open URL in a New Tab" +msgstr "" + +#. Description of the 'Quick Entry' (Check) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Open a dialog with mandatory fields to create a new record quickly" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:176 +msgid "Open a module or tool" +msgstr "" + +#: public/js/frappe/list/list_view.js:1215 +msgctxt "Description of a list view shortcut" +msgid "Open list item" +msgstr "" + +#: www/qrcode.html:13 +msgid "Open your authentication app on your mobile phone." +msgstr "" + +#: desk/doctype/todo/todo_list.js:17 +#: public/js/frappe/form/templates/form_links.html:18 +#: public/js/frappe/ui/toolbar/search_utils.js:277 +#: public/js/frappe/ui/toolbar/search_utils.js:278 +#: public/js/frappe/ui/toolbar/search_utils.js:289 +#: public/js/frappe/ui/toolbar/search_utils.js:299 +#: public/js/frappe/ui/toolbar/search_utils.js:308 +#: public/js/frappe/ui/toolbar/search_utils.js:326 +#: public/js/frappe/ui/toolbar/search_utils.js:327 +#: social/doctype/energy_point_log/energy_point_log_list.js:23 +msgid "Open {0}" +msgstr "" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "OpenID Configuration" +msgstr "" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "OpenLDAP" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Opened" +msgstr "" + +#. Label of a Select field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Operation" +msgstr "" + +#: utils/data.py:2062 +msgid "Operator must be one of {0}" +msgstr "" + +#: core/doctype/file/file.js:24 +msgid "Optimize" +msgstr "" + +#: core/doctype/file/file.js:89 +msgid "Optimizing image..." +msgstr "" + +#: custom/doctype/custom_field/custom_field.js:100 +msgid "Option 1" +msgstr "" + +#: custom/doctype/custom_field/custom_field.js:102 +msgid "Option 2" +msgstr "" + +#: custom/doctype/custom_field/custom_field.js:104 +msgid "Option 3" +msgstr "" + +#: core/doctype/doctype/doctype.py:1575 +msgid "Option {0} for field {1} is not a child table" +msgstr "" + +#. Description of the 'CC' (Code) field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "Optional: Always send to these ids. Each Email Address on a new row" +msgstr "" + +#. Description of the 'Condition' (Code) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Optional: The alert will be sent if this expression is true" +msgstr "" + +#: templates/form_grid/fields.html:43 +msgid "Options" +msgstr "" + +#. Label of a Small Text field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Options" +msgstr "" + +#. Label of a Small Text field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Options" +msgstr "" + +#. Label of a Small Text field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Options" +msgstr "" + +#. Label of a Data field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Options" +msgstr "" + +#. Label of a Small Text field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Options" +msgstr "" + +#. Label of a Text field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Options" +msgstr "" + +#. Label of a Small Text field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Options" +msgstr "" + +#: core/doctype/doctype/doctype.py:1315 +msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" +msgstr "" + +#. Label of a HTML field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Options Help" +msgstr "" + +#: core/doctype/doctype/doctype.py:1597 +msgid "Options for Rating field can range from 3 to 10" +msgstr "" + +#: custom/doctype/custom_field/custom_field.js:96 +msgid "Options for select. Each option on a new line." +msgstr "" + +#: core/doctype/doctype/doctype.py:1332 +msgid "Options for {0} must be set before setting the default value." +msgstr "" + +#: public/js/form_builder/store.js:182 +msgid "Options is required for field {0} of type {1}" +msgstr "" + +#: model/base_document.py:786 +msgid "Options not set for link field {0}" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Orange" +msgstr "" + +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Orange" +msgstr "" + +#. Label of a Code field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Order" +msgstr "" + +#. Label of a Section Break field in DocType 'About Us Settings' +#. Label of a Table field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Org History" +msgstr "" + +#. Label of a Data field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Org History Heading" +msgstr "" + +#: public/js/frappe/form/print_utils.js:26 +msgid "Orientation" +msgstr "" + +#: core/doctype/version/version_view.html:13 +#: core/doctype/version/version_view.html:75 +msgid "Original Value" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Other" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Other" +msgstr "" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Other" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Other" +msgstr "" + +#. Label of a Section Break field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Outgoing (SMTP) Settings" +msgstr "" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Outgoing Server" +msgstr "" + +#. Label of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Outgoing Server" +msgstr "" + +#. Label of a Section Break field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Outgoing Settings" +msgstr "" + +#: email/doctype/email_domain/email_domain.py:33 +msgid "Outgoing email account not correct" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Outlook.com" +msgstr "" + +#. Label of a Code field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Output" +msgstr "" + +#. Label of a Code field in DocType 'Permission Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "Output" +msgstr "" + +#. Label of a Code field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Output" +msgstr "" + +#: desk/page/user_profile/user_profile.html:6 +#: public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "" + +#: core/report/transaction_log_report/transaction_log_report.py:100 +#: social/doctype/energy_point_rule/energy_point_rule.js:42 +msgid "Owner" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "PATCH" +msgstr "" + +#: printing/page/print/print.js:71 +#: public/js/frappe/form/templates/print_layout.html:44 +#: public/js/frappe/views/reports/query_report.js:1654 +msgid "PDF" +msgstr "" + +#: utils/print_format.py:146 utils/print_format.py:190 +msgid "PDF Generation in Progress" +msgstr "" + +#. Label of a Float field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "PDF Page Height (in mm)" +msgstr "" + +#. Label of a Select field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "PDF Page Size" +msgstr "" + +#. Label of a Float field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "PDF Page Width (in mm)" +msgstr "" + +#. Label of a Section Break field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "PDF Settings" +msgstr "" + +#: utils/print_format.py:276 +msgid "PDF generation failed" +msgstr "" + +#: utils/pdf.py:97 +msgid "PDF generation failed because of broken image links" +msgstr "" + +#: printing/page/print/print.js:531 +msgid "PDF printing via \"Raw Print\" is not supported." +msgstr "" + +#. Label of a Data field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "PID" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "POST" +msgstr "" + +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "POST" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "PUT" +msgstr "" + +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "PUT" +msgstr "" + +#. Name of a DocType +#: core/doctype/package/package.json +msgid "Package" +msgstr "" + +#. Label of a Link field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Package" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Package" +msgid "Package" +msgstr "" + +#. Label of a Link field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Package" +msgstr "" + +#. Name of a DocType +#: core/doctype/package_import/package_import.json +msgid "Package Import" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Package Import" +msgid "Package Import" +msgstr "" + +#. Label of a Data field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Package Name" +msgstr "" + +#. Name of a DocType +#: core/doctype/package_release/package_release.json +msgid "Package Release" +msgstr "" + +#. Linked DocType in Package's connections +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Package Release" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "Packages" +msgstr "" + +#. Name of a DocType +#: core/doctype/page/page.json +msgid "Page" +msgstr "" + +#. Label of a Link field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "Page" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Page" +msgstr "" + +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of a Link field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Page" +msgstr "" + +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Page" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Page" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Page Break" +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "Page Builder" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Page Builder" +msgstr "" + +#. Label of a Table field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Page Building Blocks" +msgstr "" + +#. Label of a Section Break field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Page HTML" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:72 +msgid "Page Height (in mm)" +msgstr "" + +#. Label of a Data field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Page Name" +msgstr "" + +#. Label of a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Page Number" +msgstr "" + +#. Label of a Small Text field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Page Route" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1510 +msgid "Page Saved Successfully" +msgstr "" + +#. Label of a Section Break field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Page Settings" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:124 +msgid "Page Shortcuts" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:65 +msgid "Page Size" +msgstr "" + +#. Label of a Data field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Page Title" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:79 +msgid "Page Width (in mm)" +msgstr "" + +#: www/qrcode.py:35 +msgid "Page has expired!" +msgstr "" + +#: printing/doctype/print_settings/print_settings.py:70 +#: public/js/frappe/list/bulk_operations.js:98 +msgid "Page height and width cannot be zero" +msgstr "" + +#: public/js/frappe/views/container.js:52 +msgid "Page not found" +msgstr "" + +#. Description of a DocType +#: website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1310 +msgid "Page with title {0} already exist." +msgstr "" + +#: public/html/print_template.html:25 +#: public/js/frappe/views/reports/print_tree.html:89 +#: public/js/frappe/web_form/web_form.js:264 +#: templates/print_formats/standard.html:34 +msgid "Page {0} of {1}" +msgstr "" + +#. Label of a Data field in DocType 'SMS Parameter' +#: core/doctype/sms_parameter/sms_parameter.json +msgctxt "SMS Parameter" +msgid "Parameter" +msgstr "" + +#: public/js/frappe/model/model.js:132 +#: public/js/frappe/views/workspace/workspace.js:617 +#: public/js/frappe/views/workspace/workspace.js:945 +#: public/js/frappe/views/workspace/workspace.js:1192 +msgid "Parent" +msgstr "" + +#. Label of a Link field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Parent DocType" +msgstr "" + +#. Label of a Link field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Parent Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Parent Document Type" +msgstr "" + +#: desk/doctype/number_card/number_card.py:62 +msgid "Parent Document Type is required to create a number card" +msgstr "" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Parent Element Selector" +msgstr "" + +#. Label of a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Parent Field" +msgstr "" + +#: core/doctype/doctype/doctype.py:914 +msgid "Parent Field (Tree)" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Parent Field (Tree)" +msgstr "" + +#: core/doctype/doctype/doctype.py:920 +msgid "Parent Field must be a valid fieldname" +msgstr "" + +#. Label of a Select field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "Parent Label" +msgstr "" + +#: core/doctype/doctype/doctype.py:1146 +msgid "Parent Missing" +msgstr "" + +#. Label of a Data field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Parent Page" +msgstr "" + +#: core/doctype/data_export/exporter.py:24 +msgid "Parent Table" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:394 +msgid "Parent document type is required to create a dashboard chart" +msgstr "" + +#: core/doctype/data_export/exporter.py:253 +msgid "Parent is the name of the document to which the data will get added to." +msgstr "" + +#: permissions.py:802 +msgid "Parentfield not specified in {0}: {1}" +msgstr "" + +#: client.py:476 +msgid "Parenttype, Parent and Parentfield are required to insert a child record" +msgstr "" + +#. Label of a Check field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Partial" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Partial Success" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Partially Sent" +msgstr "" + +#: desk/doctype/event/event.js:30 +msgid "Participants" +msgstr "" + +#. Label of a Section Break field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Participants" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Passive" +msgstr "" + +#: core/doctype/user/user.js:158 core/doctype/user/user.js:205 +#: core/doctype/user/user.js:225 desk/page/setup_wizard/setup_wizard.js:474 +#: www/login.html:21 +msgid "Password" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Password" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Password" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Password" +msgstr "" + +#. Label of a Password field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Password" +msgstr "" + +#. Label of a Section Break field in DocType 'System Settings' +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Password" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Password" +msgstr "" + +#: core/doctype/user/user.py:1075 +msgid "Password Email Sent" +msgstr "" + +#: core/doctype/user/user.py:454 +msgid "Password Reset" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Password Reset Link Generation Limit" +msgstr "" + +#: public/js/frappe/form/grid_row.js:811 +msgid "Password cannot be filtered" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:356 +msgid "Password changed successfully." +msgstr "" + +#. Label of a Password field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Password for Base DN" +msgstr "" + +#: email/doctype/email_account/email_account.py:172 +msgid "Password is required or select Awaiting Password" +msgstr "" + +#: public/js/frappe/desk.js:191 +msgid "Password missing in Email Account" +msgstr "" + +#: utils/password.py:41 +msgid "Password not found for {0} {1} {2}" +msgstr "" + +#: core/doctype/user/user.py:1074 +msgid "Password reset instructions have been sent to your email" +msgstr "" + +#: www/update-password.html:164 +msgid "Password set" +msgstr "" + +#: auth.py:235 +msgid "Password size exceeded the maximum allowed size" +msgstr "" + +#: core/doctype/user/user.py:870 +msgid "Password size exceeded the maximum allowed size." +msgstr "" + +#: www/update-password.html:78 +msgid "Passwords do not match" +msgstr "" + +#: core/doctype/user/user.js:191 +msgid "Passwords do not match!" +msgstr "" + +#: email/doctype/newsletter/newsletter.py:156 +msgid "Past dates are not allowed for Scheduling." +msgstr "" + +#: public/js/frappe/views/file/file_view.js:151 +msgid "Paste" +msgstr "" + +#. Label of a Int field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Patch" +msgstr "" + +#. Label of a Code field in DocType 'Patch Log' +#: core/doctype/patch_log/patch_log.json +msgctxt "Patch Log" +msgid "Patch" +msgstr "" + +#. Name of a DocType +#: core/doctype/patch_log/patch_log.json +msgid "Patch Log" +msgstr "" + +#: modules/patch_handler.py:136 +msgid "Patch type {} not found in patches.txt" +msgstr "" + +#: website/report/website_analytics/website_analytics.js:35 +msgid "Path" +msgstr "" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Path" +msgstr "" + +#. Label of a Small Text field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Path" +msgstr "" + +#. Label of a Data field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Path" +msgstr "" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Path" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Path to CA Certs File" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Path to Server Certificate" +msgstr "" + +#. Label of a Data field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Path to private Key File" +msgstr "" + +#: website/path_resolver.py:197 +msgid "Path {0} it not a valid path" +msgstr "" + +#. Label of a Int field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Payload Count" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Pending" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Pending" +msgstr "" + +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Pending" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Pending Approval" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Pending Verification" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Percent" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Percent" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Percent" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Percentage" +msgstr "" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Period" +msgstr "" + +#. Label of a Int field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Perm Level" +msgstr "" + +#. Label of a Int field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Perm Level" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Permanent" +msgstr "" + +#: public/js/frappe/form/form.js:1047 +msgid "Permanently Cancel {0}?" +msgstr "" + +#: public/js/frappe/form/form.js:877 +msgid "Permanently Submit {0}?" +msgstr "" + +#: public/js/frappe/model/model.js:703 +msgid "Permanently delete {0}?" +msgstr "" + +#: core/doctype/user_type/user_type.py:83 +msgid "Permission Error" +msgstr "" + +#. Name of a DocType +#: core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Inspector" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:457 +msgid "Permission Level" +msgstr "" + +#. Label of a Int field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Permission Level" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:22 +msgid "Permission Levels" +msgstr "" + +#. Label of a shortcut in the Users Workspace +#: core/workspace/users/users.json +msgid "Permission Manager" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Permission Query" +msgstr "" + +#. Label of a Section Break field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "Permission Rules" +msgstr "" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Permission Rules" +msgstr "" + +#. Label of a Select field in DocType 'Permission Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "Permission Type" +msgstr "" + +#. Label of a Card Break in the Users Workspace +#: core/doctype/user/user.js:133 core/doctype/user/user.js:142 +#: core/page/permission_manager/permission_manager.js:214 +#: core/workspace/users/users.json +msgid "Permissions" +msgstr "" + +#. Label of a Section Break field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Permissions" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Permissions" +msgstr "" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Permissions" +msgstr "" + +#. Label of a Section Break field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Permissions" +msgstr "" + +#. Label of a Table field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Permissions" +msgstr "" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Permissions" +msgstr "" + +#: core/doctype/doctype/doctype.py:1773 core/doctype/doctype/doctype.py:1783 +msgid "Permissions Error" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:10 +msgid "Permissions are automatically applied to Standard Reports and searches." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:5 +msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:26 +msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:24 +msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:6 +msgid "Permissions get applied on Users based on what Roles they are assigned." +msgstr "" + +#. Name of a report +#. Label of a Link in the Users Workspace +#: core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: core/workspace/users/users.json +msgid "Permitted Documents For User" +msgstr "" + +#. Label of a Table MultiSelect field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Permitted Roles" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Personal" +msgstr "" + +#. Name of a DocType +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Personal Data Deletion Request" +msgstr "" + +#. Name of a DocType +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Personal Data Deletion Step" +msgstr "" + +#. Name of a DocType +#: website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Personal Data Download Request" +msgstr "" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Phone" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Phone" +msgstr "" + +#. Label of a Data field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Phone" +msgstr "" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Phone" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Phone" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Phone" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Phone" +msgstr "" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Phone" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Phone" +msgstr "" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Phone No." +msgstr "" + +#: utils/__init__.py:108 +msgid "Phone Number {0} set in field {1} is not valid." +msgstr "" + +#: public/js/frappe/form/print_utils.js:38 +#: public/js/frappe/views/reports/report_view.js:1501 +#: public/js/frappe/views/reports/report_view.js:1504 +msgid "Pick Columns" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Pie" +msgstr "" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Pincode" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Pink" +msgstr "" + +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Pink" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Plain Text" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Plant" +msgstr "" + +#: email/oauth.py:29 +msgid "Please Authorize OAuth for Email Account {}" +msgstr "" + +#: website/doctype/website_theme/website_theme.py:77 +msgid "Please Duplicate this Website Theme to customize." +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:161 +msgid "Please Install the ldap3 library via pip to use ldap functionality." +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:307 +msgid "Please Set Chart" +msgstr "" + +#: core/doctype/sms_settings/sms_settings.py:84 +msgid "Please Update SMS Settings" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.py:570 +msgid "Please add a subject to your email" +msgstr "" + +#: templates/includes/comments/comments.html:168 +msgid "Please add a valid comment." +msgstr "" + +#: core/doctype/user/user.py:1057 +msgid "Please ask your administrator to verify your sign-up" +msgstr "" + +#: public/js/frappe/form/controls/select.js:96 +msgid "Please attach a file first." +msgstr "" + +#: printing/doctype/letter_head/letter_head.py:76 +msgid "Please attach an image file to set HTML for Footer." +msgstr "" + +#: printing/doctype/letter_head/letter_head.py:64 +msgid "Please attach an image file to set HTML for Letter Head." +msgstr "" + +#: core/doctype/package_import/package_import.py:39 +msgid "Please attach the package" +msgstr "" + +#: integrations/doctype/connected_app/connected_app.js:19 +msgid "Please check OpenID Configuration URL" +msgstr "" + +#: utils/dashboard.py:58 +msgid "Please check the filter values set for Dashboard Chart: {}" +msgstr "" + +#: model/base_document.py:862 +msgid "Please check the value of \"Fetch From\" set for field {0}" +msgstr "" + +#: core/doctype/user/user.py:1055 +msgid "Please check your email for verification" +msgstr "" + +#: email/smtp.py:133 +msgid "Please check your email login credentials." +msgstr "" + +#: twofactor.py:243 +msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." +msgstr "" + +#: core/doctype/data_import/data_import.js:158 +msgid "Please click on 'Export Errored Rows', fix the errors and import again." +msgstr "" + +#: twofactor.py:286 +msgid "Please click on the following link and follow the instructions on the page. {0}" +msgstr "" + +#: templates/emails/password_reset.html:2 +msgid "Please click on the following link to set your new password" +msgstr "" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:343 +msgid "Please close this window" +msgstr "" + +#: www/confirm_workflow_action.html:4 +msgid "Please confirm your action to {0} this document." +msgstr "" + +#: desk/doctype/number_card/number_card.js:44 +msgid "Please create Card first" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:42 +msgid "Please create chart first" +msgstr "" + +#: desk/form/meta.py:209 +msgid "Please delete the field from {0} or add the required doctype." +msgstr "" + +#: core/doctype/data_export/exporter.py:184 +msgid "Please do not change the template headings." +msgstr "" + +#: printing/doctype/print_format/print_format.js:18 +msgid "Please duplicate this to make changes" +msgstr "" + +#: core/doctype/system_settings/system_settings.py:155 +msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." +msgstr "" + +#: desk/doctype/notification_log/notification_log.js:45 +#: email/doctype/auto_email_report/auto_email_report.js:17 +#: printing/page/print/print.js:618 printing/page/print/print.js:647 +#: public/js/frappe/utils/utils.js:1417 +msgid "Please enable pop-ups" +msgstr "" + +#: public/js/frappe/microtemplate.js:162 public/js/frappe/microtemplate.js:177 +msgid "Please enable pop-ups in your browser" +msgstr "" + +#: integrations/google_oauth.py:53 +msgid "Please enable {} before continuing." +msgstr "" + +#: utils/oauth.py:186 +msgid "Please ensure that your profile has an email address" +msgstr "" + +#: integrations/doctype/social_login_key/social_login_key.py:74 +msgid "Please enter Access Token URL" +msgstr "" + +#: integrations/doctype/social_login_key/social_login_key.py:72 +msgid "Please enter Authorize URL" +msgstr "" + +#: integrations/doctype/social_login_key/social_login_key.py:70 +msgid "Please enter Base URL" +msgstr "" + +#: integrations/doctype/social_login_key/social_login_key.py:78 +msgid "Please enter Client ID before social login is enabled" +msgstr "" + +#: integrations/doctype/social_login_key/social_login_key.py:81 +msgid "Please enter Client Secret before social login is enabled" +msgstr "" + +#: integrations/doctype/connected_app/connected_app.js:8 +msgid "Please enter OpenID Configuration URL" +msgstr "" + +#: integrations/doctype/social_login_key/social_login_key.py:76 +msgid "Please enter Redirect URL" +msgstr "" + +#: templates/includes/comments/comments.html:163 +msgid "Please enter a valid email address." +msgstr "" + +#: www/update-password.html:232 +msgid "Please enter the password" +msgstr "" + +#: public/js/frappe/desk.js:196 +msgctxt "Email Account" +msgid "Please enter the password for: {0}" +msgstr "" + +#: core/doctype/sms_settings/sms_settings.py:43 +msgid "Please enter valid mobile nos" +msgstr "" + +#: www/update-password.html:115 +msgid "Please enter your new password." +msgstr "" + +#: www/update-password.html:108 +msgid "Please enter your old password." +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.py:402 +msgid "Please find attached {0}: {1}" +msgstr "" + +#: core/doctype/navbar_settings/navbar_settings.py:43 +msgid "Please hide the standard navbar items instead of deleting them" +msgstr "" + +#: templates/includes/comments/comments.py:31 +msgid "Please login to post a comment." +msgstr "" + +#: core/doctype/communication/communication.py:210 +msgid "Please make sure the Reference Communication Docs are not circularly linked." +msgstr "" + +#: model/document.py:820 +msgid "Please refresh to get the latest document." +msgstr "" + +#: printing/page/print/print.js:532 +msgid "Please remove the printer mapping in Printer Settings and try again." +msgstr "" + +#: public/js/frappe/form/form.js:384 +msgid "Please save before attaching." +msgstr "" + +#: email/doctype/newsletter/newsletter.py:133 +msgid "Please save the Newsletter before sending" +msgstr "" + +#: public/js/frappe/form/sidebar/assign_to.js:51 +msgid "Please save the document before assignment" +msgstr "" + +#: public/js/frappe/form/sidebar/assign_to.js:71 +msgid "Please save the document before removing assignment" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1611 +msgid "Please save the report first" +msgstr "" + +#: website/doctype/web_template/web_template.js:22 +msgid "Please save to edit the template." +msgstr "" + +#: desk/page/leaderboard/leaderboard.js:244 +msgid "Please select Company" +msgstr "" + +#: printing/doctype/print_format/print_format.js:30 +msgid "Please select DocType first" +msgstr "" + +#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +msgid "Please select Entity Type first" +msgstr "" + +#: core/doctype/system_settings/system_settings.py:105 +msgid "Please select Minimum Password Score" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1106 +msgid "Please select X and Y fields" +msgstr "" + +#: utils/__init__.py:115 +msgid "Please select a country code for field {1}." +msgstr "" + +#: utils/file_manager.py:50 +msgid "Please select a file or url" +msgstr "" + +#: model/rename_doc.py:662 +msgid "Please select a valid csv file with data" +msgstr "" + +#: utils/data.py:289 +msgid "Please select a valid date filter" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:203 +msgid "Please select applicable Doctypes" +msgstr "" + +#: model/db_query.py:1118 +msgid "Please select atleast 1 column from {0} to sort/group" +msgstr "" + +#: core/doctype/document_naming_settings/document_naming_settings.py:214 +msgid "Please select prefix first" +msgstr "" + +#: core/doctype/data_export/data_export.js:42 +msgid "Please select the Document Type." +msgstr "" + +#. Description of the 'Directory Server' (Select) field in DocType 'LDAP +#. Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Please select the LDAP Directory being used" +msgstr "" + +#: website/doctype/website_settings/website_settings.js:100 +msgid "Please select {0}" +msgstr "" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:305 +msgid "Please set Dropbox access keys in site config or doctype" +msgstr "" + +#: contacts/doctype/contact/contact.py:202 +msgid "Please set Email Address" +msgstr "" + +#: printing/page/print/print.js:546 +msgid "Please set a printer mapping for this print format in the Printer Settings" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1322 +msgid "Please set filters" +msgstr "" + +#: email/doctype/auto_email_report/auto_email_report.py:251 +msgid "Please set filters value in Report Filter table." +msgstr "" + +#: model/naming.py:550 +msgid "Please set the document name" +msgstr "" + +#: desk/doctype/dashboard/dashboard.py:122 +msgid "Please set the following documents in this Dashboard as standard first." +msgstr "" + +#: core/doctype/document_naming_settings/document_naming_settings.py:120 +msgid "Please set the series to be used." +msgstr "" + +#: core/doctype/system_settings/system_settings.py:118 +msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.js:102 +msgid "Please setup a message first" +msgstr "" + +#: email/doctype/email_account/email_account.py:407 +msgid "Please setup default Email Account from Settings > Email Account" +msgstr "" + +#: core/doctype/user/user.py:405 +msgid "Please setup default outgoing Email Account from Settings > Email Account" +msgstr "" + +#: public/js/frappe/model/model.js:790 +msgid "Please specify" +msgstr "" + +#: permissions.py:778 +msgid "Please specify a valid parent DocType for {0}" +msgstr "" + +#: email/doctype/notification/notification.py:87 +msgid "Please specify which date field must be checked" +msgstr "" + +#: email/doctype/notification/notification.py:90 +msgid "Please specify which value field must be checked" +msgstr "" + +#: public/js/frappe/request.js:184 +#: public/js/frappe/views/translation_manager.js:102 +msgid "Please try again" +msgstr "" + +#: integrations/google_oauth.py:56 +msgid "Please update {} before continuing." +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:332 +msgid "Please use a valid LDAP search filter" +msgstr "" + +#: email/doctype/newsletter/newsletter.py:333 +msgid "Please verify your Email Address" +msgstr "" + +#: utils/password.py:201 +msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." +msgstr "" + +#. Label of a Select field in DocType 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Point Allocation Periodicity" +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:75 +msgid "Points" +msgstr "" + +#. Label of a Int field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Points" +msgstr "" + +#. Label of a Int field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Points" +msgstr "" + +#: templates/emails/energy_points_summary.html:40 +msgid "Points Given" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Popover Element" +msgstr "" + +#. Label of a HTML Editor field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Popover or Modal Description" +msgstr "" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Port" +msgstr "" + +#. Label of a Data field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Port" +msgstr "" + +#. Label of a Int field in DocType 'Network Printer Settings' +#: printing/doctype/network_printer_settings/network_printer_settings.json +msgctxt "Network Printer Settings" +msgid "Port" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: website/workspace/website/website.json +msgid "Portal" +msgstr "" + +#. Label of a Table field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Portal Menu" +msgstr "" + +#. Name of a DocType +#: website/doctype/portal_menu_item/portal_menu_item.json +msgid "Portal Menu Item" +msgstr "" + +#. Name of a DocType +#: website/doctype/portal_settings/portal_settings.json +msgid "Portal Settings" +msgstr "" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Portal Settings" +msgid "Portal Settings" +msgstr "" + +#: public/js/frappe/form/print_utils.js:29 +msgid "Portrait" +msgstr "" + +#. Label of a Select field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Position" +msgstr "" + +#: templates/discussions/comment_box.html:29 +#: templates/discussions/reply_card.html:15 +#: templates/discussions/reply_section.html:29 +#: templates/discussions/reply_section.html:53 +#: templates/discussions/topic_modal.html:11 +msgid "Post" +msgstr "" + +#: templates/discussions/reply_section.html:40 +msgid "Post it here, our mentors will help you out." +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Postal" +msgstr "" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Postal Code" +msgstr "" + +#. Group in Blog Category's connections +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Posts" +msgstr "" + +#: website/doctype/blog_post/blog_post.py:258 +msgid "Posts by {0}" +msgstr "" + +#: website/doctype/blog_post/blog_post.py:250 +msgid "Posts filed under {0}" +msgstr "" + +#. Label of a Select field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Precision" +msgstr "" + +#. Label of a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Precision" +msgstr "" + +#. Label of a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Precision" +msgstr "" + +#. Label of a Select field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Precision" +msgstr "" + +#: core/doctype/doctype/doctype.py:1349 +msgid "Precision should be between 1 and 6" +msgstr "" + +#: utils/password_strength.py:187 +msgid "Predictable substitutions like '@' instead of 'a' don't help very much." +msgstr "" + +#. Label of a Check field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Preferred Billing Address" +msgstr "" + +#. Label of a Check field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Preferred Shipping Address" +msgstr "" + +#. Label of a Data field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Prefix" +msgstr "" + +#. Label of a Autocomplete field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Prefix" +msgstr "" + +#. Name of a DocType +#: core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report" +msgstr "" + +#. Label of a Check field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Prepared Report" +msgstr "" + +#. Name of a role +#: core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report User" +msgstr "" + +#: desk/query_report.py:294 +msgid "Prepared report render failed" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:469 +msgid "Preparing Report" +msgstr "" + +#: public/js/frappe/views/communication.js:411 +msgid "Prepend the template to the email message" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:138 +msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" +msgstr "" + +#: public/js/frappe/list/list_filter.js:134 +msgid "Press Enter to save" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:14 +#: email/doctype/newsletter/newsletter.js:42 +#: public/js/frappe/form/controls/markdown_editor.js:17 +#: public/js/frappe/form/controls/markdown_editor.js:31 +#: public/js/frappe/ui/capture.js:236 +msgid "Preview" +msgstr "" + +#. Label of a Section Break field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "Preview" +msgstr "" + +#. Label of a Section Break field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Preview" +msgstr "" + +#. Label of a Section Break field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Preview" +msgstr "" + +#. Label of a Attach Image field in DocType 'Print Style' +#: printing/doctype/print_style/print_style.json +msgctxt "Print Style" +msgid "Preview" +msgstr "" + +#. Label of a Tab Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Preview" +msgstr "" + +#. Label of a HTML field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Preview HTML" +msgstr "" + +#. Label of a Attach Image field in DocType 'Blog Category' +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Preview Image" +msgstr "" + +#. Label of a Attach Image field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Preview Image" +msgstr "" + +#. Label of a Button field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Preview Message" +msgstr "" + +#: public/js/form_builder/form_builder.bundle.js:83 +msgid "Preview Mode" +msgstr "" + +#. Label of a Text field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Preview of generated names" +msgstr "" + +#: email/doctype/email_group/email_group.js:90 +msgid "Preview:" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:95 +#: public/js/onboarding_tours/onboarding_tours.js:16 +#: templates/includes/slideshow.html:34 +#: website/web_template/slideshow/slideshow.html:40 +msgid "Previous" +msgstr "" + +#: public/js/frappe/ui/slides.js:351 +msgctxt "Go to previous slide" +msgid "Previous" +msgstr "" + +#: public/js/frappe/form/toolbar.js:289 +msgid "Previous Document" +msgstr "" + +#. Label of a Small Text field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Previous Hash" +msgstr "" + +#: public/js/frappe/form/form.js:2165 +msgid "Previous Submission" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Primary" +msgstr "" + +#: public/js/frappe/form/templates/address_list.html:21 +msgid "Primary Address" +msgstr "" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Primary Color" +msgstr "" + +#: public/js/frappe/form/templates/contact_list.html:17 +msgid "Primary Contact" +msgstr "" + +#: public/js/frappe/form/templates/contact_list.html:63 +msgid "Primary Email" +msgstr "" + +#: public/js/frappe/form/templates/contact_list.html:43 +msgid "Primary Mobile" +msgstr "" + +#: public/js/frappe/form/templates/contact_list.html:35 +msgid "Primary Phone" +msgstr "" + +#: core/doctype/success_action/success_action.js:56 +#: printing/page/print/print.js:65 public/js/frappe/form/success_action.js:81 +#: public/js/frappe/form/templates/print_layout.html:46 +#: public/js/frappe/form/toolbar.js:321 public/js/frappe/form/toolbar.js:333 +#: public/js/frappe/list/bulk_operations.js:87 +#: public/js/frappe/views/reports/query_report.js:1640 +#: public/js/frappe/views/reports/report_view.js:1460 +#: public/js/frappe/views/treeview.js:473 www/printview.html:18 +msgid "Print" +msgstr "" + +#: public/js/frappe/list/list_view.js:1919 +msgctxt "Button in list view actions menu" +msgid "Print" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Print" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Print" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:47 +msgid "Print Documents" +msgstr "" + +#. Name of a DocType +#: printing/doctype/print_format/print_format.json +#: printing/page/print/print.js:94 printing/page/print/print.js:801 +#: public/js/frappe/list/bulk_operations.js:58 +msgid "Print Format" +msgstr "" + +#. Label of a Link field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Print Format" +msgstr "" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Print Format" +msgstr "" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Print Format" +msgstr "" + +#. Label of a Link field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Print Format" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Print Format" +msgid "Print Format" +msgstr "" + +#. Label of a Link field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Print Format" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Build Workspace +#: automation/workspace/tools/tools.json core/workspace/build/build.json +#: printing/page/print_format_builder/print_format_builder.js:44 +#: printing/page/print_format_builder/print_format_builder.js:67 +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:4 +msgid "Print Format Builder" +msgstr "" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Print Format Builder" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgid "Print Format Builder (New)" +msgstr "" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Print Format Builder Beta" +msgstr "" + +#: utils/pdf.py:56 +msgid "Print Format Error" +msgstr "" + +#. Name of a DocType +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Print Format Field Template" +msgstr "" + +#. Label of a HTML field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Print Format Help" +msgstr "" + +#. Label of a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Print Format Type" +msgstr "" + +#: www/printview.py:424 +msgid "Print Format {0} is disabled" +msgstr "" + +#. Description of the Onboarding Step 'Customize Print Formats' +#: custom/onboarding_step/print_format/print_format.json +msgid "Print Formats allow you can define looks for documents when printed or converted to PDF. You can also create a custom Print Format using drag-and-drop tools." +msgstr "" + +#. Name of a DocType +#: printing/doctype/print_heading/print_heading.json +msgid "Print Heading" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of a Data field in DocType 'Print Heading' +#: automation/workspace/tools/tools.json +#: printing/doctype/print_heading/print_heading.json +msgctxt "Print Heading" +msgid "Print Heading" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Print Hide" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Print Hide" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Print Hide" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Print Hide If No Value" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Print Hide If No Value" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Print Hide If No Value" +msgstr "" + +#: public/js/frappe/views/communication.js:156 +msgid "Print Language" +msgstr "" + +#: public/js/frappe/form/print_utils.js:195 +msgid "Print Sent to the printer!" +msgstr "" + +#. Label of a Section Break field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Print Server" +msgstr "" + +#. Name of a DocType +#: printing/doctype/print_settings/print_settings.json +#: printing/doctype/print_style/print_style.js:6 +#: printing/page/print/print.js:160 public/js/frappe/form/print_utils.js:69 +#: public/js/frappe/form/templates/print_layout.html:35 +msgid "Print Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Print Settings" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "Print Settings" +msgid "Print Settings" +msgstr "" + +#. Name of a DocType +#: printing/doctype/print_style/print_style.json +msgid "Print Style" +msgstr "" + +#. Label of a Section Break field in DocType 'Print Settings' +#. Label of a Link field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Print Style" +msgstr "" + +#. Label of a Data field in DocType 'Print Style' +#: printing/doctype/print_style/print_style.json +msgctxt "Print Style" +msgid "Print Style Name" +msgstr "" + +#. Label of a HTML field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Print Style Preview" +msgstr "" + +#. Label of a Data field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Print Width" +msgstr "" + +#. Label of a Data field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Print Width" +msgstr "" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Print Width" +msgstr "" + +#. Description of the 'Print Width' (Data) field in DocType 'Customize Form +#. Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Print Width of the field, if the field is a column in a table" +msgstr "" + +#: public/js/frappe/form/form.js:170 +msgid "Print document" +msgstr "" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Print with letterhead" +msgstr "" + +#: printing/page/print/print.js:810 +msgid "Printer" +msgstr "" + +#: printing/page/print/print.js:787 +msgid "Printer Mapping" +msgstr "" + +#. Label of a Select field in DocType 'Network Printer Settings' +#: printing/doctype/network_printer_settings/network_printer_settings.json +msgctxt "Network Printer Settings" +msgid "Printer Name" +msgstr "" + +#: printing/page/print/print.js:779 +msgid "Printer Settings" +msgstr "" + +#: printing/page/print/print.js:545 +msgid "Printer mapping not set." +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: automation/workspace/tools/tools.json +msgid "Printing" +msgstr "" + +#: utils/print_format.py:278 +msgid "Printing failed" +msgstr "" + +#: desk/report/todo/todo.py:37 public/js/frappe/form/sidebar/assign_to.js:184 +msgid "Priority" +msgstr "" + +#. Label of a Int field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Priority" +msgstr "" + +#. Label of a Int field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Priority" +msgstr "" + +#. Label of a Int field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Priority" +msgstr "" + +#. Label of a Select field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Priority" +msgstr "" + +#. Label of a Int field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Priority" +msgstr "" + +#: desk/doctype/note/note_list.js:8 +msgid "Private" +msgstr "" + +#. Label of a Check field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "Private" +msgstr "" + +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Private" +msgstr "" + +#. Label of a Check field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Private" +msgstr "" + +#. Description of the 'Auto Reply Message' (Text Editor) field in DocType +#. 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" +msgstr "" + +#: core/doctype/document_naming_rule/document_naming_rule.js:22 +msgid "Proceed" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:858 +msgid "Proceed Anyway" +msgstr "" + +#: public/js/frappe/form/controls/table.js:88 +msgid "Processing" +msgstr "" + +#: email/doctype/email_queue/email_queue.py:429 +msgid "Processing..." +msgstr "" + +#. Group in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Profile" +msgstr "" + +#: public/js/frappe/socketio_client.js:78 +msgid "Progress" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:405 +msgid "Project" +msgstr "" + +#: core/doctype/version/version_view.html:12 +#: core/doctype/version/version_view.html:37 +#: core/doctype/version/version_view.html:74 +msgid "Property" +msgstr "" + +#. Label of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Property" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Property Depends On" +msgstr "" + +#. Label of a Section Break field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Property Depends On" +msgstr "" + +#. Name of a DocType +#: custom/doctype/property_setter/property_setter.json +msgid "Property Setter" +msgstr "" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Property Setter" +msgstr "" + +#. Description of a DocType +#: custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" + +#. Label of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Property Type" +msgstr "" + +#. Description of the 'Allowed File Extensions' (Small Text) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG" +msgstr "" + +#. Label of a Data field in DocType 'User Social Login' +#: core/doctype/user_social_login/user_social_login.json +msgctxt "User Social Login" +msgid "Provider" +msgstr "" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Provider Name" +msgstr "" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Provider Name" +msgstr "" + +#. Label of a Data field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Provider Name" +msgstr "" + +#: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78 +#: public/js/frappe/views/workspace/workspace.js:624 +#: public/js/frappe/views/workspace/workspace.js:952 +#: public/js/frappe/views/workspace/workspace.js:1198 +msgid "Public" +msgstr "" + +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Public" +msgstr "" + +#. Label of a Check field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Public" +msgstr "" + +#. Label of a Check field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Public" +msgstr "" + +#: website/doctype/blog_post/blog_post.js:36 +#: website/doctype/web_form/web_form.js:86 +msgid "Publish" +msgstr "" + +#. Label of a Check field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Publish" +msgstr "" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Publish as a web page" +msgstr "" + +#: website/doctype/blog_post/blog_post_list.js:5 +#: website/doctype/web_form/web_form_list.js:5 +#: website/doctype/web_page/web_page_list.js:5 +msgid "Published" +msgstr "" + +#. Label of a Check field in DocType 'Blog Category' +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Published" +msgstr "" + +#. Label of a Check field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Published" +msgstr "" + +#. Label of a Check field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Published" +msgstr "" + +#. Label of a Check field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Published" +msgstr "" + +#. Label of a Check field in DocType 'Help Category' +#: website/doctype/help_category/help_category.json +msgctxt "Help Category" +msgid "Published" +msgstr "" + +#. Label of a Check field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Published" +msgstr "" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Published" +msgstr "" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Published" +msgstr "" + +#. Label of a Date field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Published On" +msgstr "" + +#: website/doctype/blog_post/templates/blog_post.html:59 +msgid "Published on" +msgstr "" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Publishing Dates" +msgstr "" + +#: email/doctype/email_account/email_account.js:164 +msgid "Pull Emails" +msgstr "" + +#. Label of a Check field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Pull from Google Calendar" +msgstr "" + +#. Label of a Check field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Pull from Google Contacts" +msgstr "" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Pulled from Google Calendar" +msgstr "" + +#. Label of a Check field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Pulled from Google Contacts" +msgstr "" + +#. Name of a role +#: contacts/doctype/contact/contact.json +msgid "Purchase Manager" +msgstr "" + +#. Name of a role +#: contacts/doctype/contact/contact.json +msgid "Purchase Master Manager" +msgstr "" + +#. Name of a role +#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +#: geo/doctype/currency/currency.json +msgid "Purchase User" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Purple" +msgstr "" + +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Purple" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Push Notification Settings" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Push Notification Settings" +msgid "Push Notification Settings" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgid "Push Notifications" +msgstr "" + +#. Label of a Check field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Push to Google Calendar" +msgstr "" + +#. Label of a Check field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Push to Google Contacts" +msgstr "" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 +msgid "Put on Hold" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Python" +msgstr "" + +#: www/qrcode.html:3 +msgid "QR Code" +msgstr "" + +#: www/qrcode.html:6 +msgid "QR Code for Login Verification" +msgstr "" + +#: public/js/frappe/form/print_utils.js:204 +msgid "QZ Tray Failed: " +msgstr "" + +#: public/js/frappe/utils/common.js:401 +msgid "Quarterly" +msgstr "" + +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Quarterly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Quarterly" +msgstr "" + +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Quarterly" +msgstr "" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Quarterly" +msgstr "" + +#. Label of a Data field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Query" +msgstr "" + +#. Label of a Code field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Query" +msgstr "" + +#. Label of a Section Break field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Query / Script" +msgstr "" + +#. Label of a Small Text field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Query Options" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/query_parameters/query_parameters.json +msgid "Query Parameters" +msgstr "" + +#. Label of a Table field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Query Parameters" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:17 +msgid "Query Report" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Query Report" +msgstr "" + +#: utils/safe_exec.py:434 +msgid "Query must be of SELECT or read-only WITH type." +msgstr "" + +#. Label of a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Queue" +msgstr "" + +#. Label of a Select field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Queue Type(s)" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Queue in Background (BETA)" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Queue in Background (BETA)" +msgstr "" + +#: utils/background_jobs.py:463 +msgid "Queue should be one of {0}" +msgstr "" + +#. Label of a Data field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Queue(s)" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:208 +msgid "Queued" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Queued" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Queued" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Queued" +msgstr "" + +#. Label of a Datetime field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Queued At" +msgstr "" + +#. Label of a Data field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Queued By" +msgstr "" + +#: core/doctype/submission_queue/submission_queue.py:174 +msgid "Queued for Submission. You can track the progress over {0}." +msgstr "" + +#: integrations/doctype/dropbox_settings/dropbox_settings.py:65 +#: integrations/doctype/google_drive/google_drive.py:153 +#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:82 +msgid "Queued for backup. It may take a few minutes to an hour." +msgstr "" + +#: desk/page/backups/backups.py:96 +msgid "Queued for backup. You will receive an email with the download link" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:95 +msgid "Queued {0} emails" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:90 +msgid "Queuing emails..." +msgstr "" + +#: desk/doctype/bulk_update/bulk_update.py:86 +msgid "Queuing {0} for Submission" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Quick Entry" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Quick Entry" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +msgstr "" + +#. Label of a Code field in DocType 'Workspace Quick List' +#: desk/doctype/workspace_quick_list/workspace_quick_list.json +msgctxt "Workspace Quick List" +msgid "Quick List Filter" +msgstr "" + +#. Label of a Tab Break field in DocType 'Workspace' +#. Label of a Table field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Quick Lists" +msgstr "" + +#: public/js/frappe/views/reports/report_utils.js:280 +msgid "Quoting must be between 0 and 3" +msgstr "" + +#. Label of a Section Break field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "RAW Information Log" +msgstr "" + +#. Name of a DocType +#: core/doctype/rq_job/rq_job.json +msgid "RQ Job" +msgstr "" + +#. Name of a DocType +#: core/doctype/rq_worker/rq_worker.json +msgid "RQ Worker" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Random" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Random" +msgstr "" + +#: website/report/website_analytics/website_analytics.js:20 +msgid "Range" +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:402 +msgid "Rank" +msgstr "" + +#. Label of a Section Break field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Rate Limiting" +msgstr "" + +#. Label of a Section Break field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Rate Limits" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Rate limit for email link login" +msgstr "" + +#. Label of a Int field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Rating" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Rating" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Rating" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Rating" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Rating" +msgstr "" + +#: printing/doctype/print_format/print_format.py:87 +msgid "Raw Commands" +msgstr "" + +#. Label of a Code field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Raw Commands" +msgstr "" + +#. Label of a Code field in DocType 'Unhandled Email' +#: email/doctype/unhandled_email/unhandled_email.json +msgctxt "Unhandled Email" +msgid "Raw Email" +msgstr "" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Raw Printing" +msgstr "" + +#. Label of a Section Break field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Raw Printing" +msgstr "" + +#: printing/page/print/print.js:165 +msgid "Raw Printing Setting" +msgstr "" + +#: public/js/frappe/form/templates/print_layout.html:37 +msgid "Raw Printing Settings" +msgstr "" + +#: desk/doctype/console_log/console_log.js:6 +msgid "Re-Run in Console" +msgstr "" + +#: email/doctype/email_account/email_account.py:660 +msgid "Re:" +msgstr "" + +#: core/doctype/communication/communication.js:268 +#: public/js/frappe/form/footer/form_timeline.js:587 +#: public/js/frappe/views/communication.js:347 +msgid "Re: {0}" +msgstr "" + +#: client.py:459 +msgid "Read" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Read" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Read" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Read" +msgstr "" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Read" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Read" +msgstr "" + +#. Label of a Check field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Read" +msgstr "" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Read" +msgstr "" + +#: public/js/form_builder/form_builder.bundle.js:83 +msgid "Read Only" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Read Only" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Read Only" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Read Only" +msgstr "" + +#. Label of a Check field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Read Only" +msgstr "" + +#. Label of a Code field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Read Only Depends On" +msgstr "" + +#. Label of a Code field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Read Only Depends On" +msgstr "" + +#. Label of a Code field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Read Only Depends On" +msgstr "" + +#. Label of a Code field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Read Only Depends On (JS)" +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:16 +#: templates/includes/navbar/navbar_items.html:97 +msgid "Read Only Mode" +msgstr "" + +#. Label of a Int field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Read Time" +msgstr "" + +#. Label of a Check field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Read by Recipient" +msgstr "" + +#. Label of a Datetime field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Read by Recipient On" +msgstr "" + +#: desk/doctype/note/note.js:10 +msgid "Read mode" +msgstr "" + +#: utils/safe_exec.py:90 +msgid "Read the documentation to know more" +msgstr "" + +#. Label of a Markdown Editor field in DocType 'Package' +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Readme" +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:85 +#: social/doctype/energy_point_log/energy_point_log.js:20 +msgid "Reason" +msgstr "" + +#. Label of a Text field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Reason" +msgstr "" + +#. Label of a Long Text field in DocType 'Unhandled Email' +#: email/doctype/unhandled_email/unhandled_email.json +msgctxt "Unhandled Email" +msgid "Reason" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:819 +msgid "Rebuild" +msgstr "" + +#: public/js/frappe/views/treeview.js:492 +msgid "Rebuild Tree" +msgstr "" + +#: utils/nestedset.py:176 +msgid "Rebuilding of tree is not supported for {}" +msgstr "" + +#. Description of the 'Anonymous' (Check) field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Receive anonymous response" +msgstr "" + +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Received" +msgstr "" + +#: integrations/doctype/token_cache/token_cache.py:50 +msgid "Received an invalid token type." +msgstr "" + +#. Label of a Select field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "Receiver By Document Field" +msgstr "" + +#. Label of a Link field in DocType 'Notification Recipient' +#: email/doctype/notification_recipient/notification_recipient.json +msgctxt "Notification Recipient" +msgid "Receiver By Role" +msgstr "" + +#. Label of a Data field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Receiver Parameter" +msgstr "" + +#: desk/page/user_profile/user_profile.html:39 +msgid "Recent Activity" +msgstr "" + +#: utils/password_strength.py:123 +msgid "Recent years are easy to guess." +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:532 +msgid "Recents" +msgstr "" + +#. Label of a Table field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Recipient" +msgstr "" + +#. Label of a Data field in DocType 'Email Queue Recipient' +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgctxt "Email Queue Recipient" +msgid "Recipient" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Recipient Unsubscribed" +msgstr "" + +#. Label of a Small Text field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Recipients" +msgstr "" + +#. Label of a Section Break field in DocType 'Notification' +#. Label of a Table field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Recipients" +msgstr "" + +#. Name of a DocType +#: core/doctype/recorder/recorder.json +msgid "Recorder" +msgstr "" + +#. Name of a DocType +#: core/doctype/recorder_query/recorder_query.json +msgid "Recorder Query" +msgstr "" + +#: core/doctype/user_permission/user_permission_help.html:2 +msgid "Records for following doctypes will be filtered" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Red" +msgstr "" + +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Red" +msgstr "" + +#. Label of a Select field in DocType 'Website Route Redirect' +#: website/doctype/website_route_redirect/website_route_redirect.json +msgctxt "Website Route Redirect" +msgid "Redirect HTTP Status" +msgstr "" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Redirect URI" +msgstr "" + +#. Label of a Data field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Redirect URI Bound To Auth Code" +msgstr "" + +#. Label of a Text field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Redirect URIs" +msgstr "" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Redirect URL" +msgstr "" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Redirect URL" +msgstr "" + +#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Redirect to this URL after successful confirmation." +msgstr "" + +#. Label of a Tab Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Redirects" +msgstr "" + +#: sessions.py:142 +msgid "Redis cache server not running. Please contact Administrator / Tech support" +msgstr "" + +#: public/js/frappe/form/toolbar.js:462 +msgid "Redo" +msgstr "" + +#: public/js/frappe/form/form.js:164 public/js/frappe/form/toolbar.js:470 +msgid "Redo last action" +msgstr "" + +#. Label of a Link field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Ref DocType" +msgstr "" + +#: desk/doctype/form_tour/form_tour.js:38 +msgid "Referance Doctype and Dashboard Name both can't be used at the same time." +msgstr "" + +#: core/doctype/user_type/user_type_dashboard.py:5 desk/report/todo/todo.py:42 +#: public/js/frappe/views/interaction.js:54 +msgid "Reference" +msgstr "" + +#. Label of a Section Break field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Reference" +msgstr "" + +#. Label of a Section Break field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Reference" +msgstr "" + +#. Label of a Section Break field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Reference" +msgstr "" + +#. Label of a Section Break field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Reference" +msgstr "" + +#. Label of a Section Break field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Reference" +msgstr "" + +#. Label of a Section Break field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Reference" +msgstr "" + +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Reference Date" +msgstr "" + +#. Label of a Data field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Reference DocName" +msgstr "" + +#. Label of a Link field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Reference DocType" +msgstr "" + +#. Label of a Link field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Reference DocType" +msgstr "" + +#: email/doctype/email_unsubscribe/email_unsubscribe.py:26 +msgid "Reference DocType and Reference Name are required" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Discussion Topic' +#: website/doctype/discussion_topic/discussion_topic.json +msgctxt "Discussion Topic" +msgid "Reference Docname" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Reference Docname" +msgstr "" + +#: core/doctype/communication/communication.js:143 +#: core/report/transaction_log_report/transaction_log_report.py:88 +msgid "Reference Doctype" +msgstr "" + +#. Label of a Link field in DocType 'Discussion Topic' +#: website/doctype/discussion_topic/discussion_topic.json +msgctxt "Discussion Topic" +msgid "Reference Doctype" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat_schedule.html:4 +msgid "Reference Document" +msgstr "" + +#. Label of a Data field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Reference Document" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Reference Document" +msgstr "" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Reference Document" +msgstr "" + +#. Label of a Link field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Reference Document" +msgstr "" + +#. Label of a Data field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Reference Document" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Document Share Key' +#: core/doctype/document_share_key/document_share_key.json +msgctxt "Document Share Key" +msgid "Reference Document Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Reference Document Name" +msgstr "" + +#. Label of a Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Calendar View' +#: desk/doctype/calendar_view/calendar_view.json +msgctxt "Calendar View" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Data field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Data field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Document Share Key' +#: core/doctype/document_share_key/document_share_key.json +msgctxt "Document Share Key" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Email Unsubscribe' +#: email/doctype/email_unsubscribe/email_unsubscribe.json +msgctxt "Email Unsubscribe" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Event Participants' +#: desk/doctype/event_participants/event_participants.json +msgctxt "Event Participants" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'List Filter' +#: desk/doctype/list_filter/list_filter.json +msgctxt "List Filter" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Success Action' +#: core/doctype/success_action/success_action.json +msgctxt "Success Action" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Data field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'View Log' +#: core/doctype/view_log/view_log.json +msgctxt "View Log" +msgid "Reference Document Type" +msgstr "" + +#. Label of a Link field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Reference Document Type" +msgstr "" + +#: core/doctype/communication/communication.js:152 +#: core/report/transaction_log_report/transaction_log_report.py:94 +msgid "Reference Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Reference Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Reference Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Reference Name" +msgstr "" + +#. Label of a Data field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Reference Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Email Unsubscribe' +#: email/doctype/email_unsubscribe/email_unsubscribe.json +msgctxt "Email Unsubscribe" +msgid "Reference Name" +msgstr "" + +#. Label of a Data field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Reference Name" +msgstr "" + +#. Label of a Data field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Reference Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Event Participants' +#: desk/doctype/event_participants/event_participants.json +msgctxt "Event Participants" +msgid "Reference Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Reference Name" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Reference Name" +msgstr "" + +#. Label of a Read Only field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Reference Owner" +msgstr "" + +#. Label of a Data field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Reference Owner" +msgstr "" + +#. Label of a Read Only field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Reference Owner" +msgstr "" + +#. Label of a Data field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Reference Report" +msgstr "" + +#. Label of a Link field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Reference Report" +msgstr "" + +#. Label of a Data field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Reference Report" +msgstr "" + +#. Label of a Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Reference Type" +msgstr "" + +#: social/doctype/energy_point_rule/energy_point_rule.py:145 +msgid "Reference document has been cancelled" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'View Log' +#: core/doctype/view_log/view_log.json +msgctxt "View Log" +msgid "Reference name" +msgstr "" + +#: templates/emails/auto_reply.html:3 +msgid "Reference: {0} {1}" +msgstr "" + +#: website/report/website_analytics/website_analytics.js:37 +msgid "Referrer" +msgstr "" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Referrer" +msgstr "" + +#: printing/page/print/print.js:73 public/js/frappe/desk.js:133 +#: public/js/frappe/form/form.js:1174 +#: public/js/frappe/form/templates/print_layout.html:6 +#: public/js/frappe/list/base_list.js:66 +#: public/js/frappe/views/reports/query_report.js:1629 +#: public/js/frappe/views/treeview.js:479 +#: public/js/frappe/widgets/chart_widget.js:290 +#: public/js/frappe/widgets/number_card_widget.js:324 +msgid "Refresh" +msgstr "" + +#: core/page/dashboard_view/dashboard_view.js:177 +msgid "Refresh All" +msgstr "" + +#. Label of a Button field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Refresh Google Sheet" +msgstr "" + +#. Label of a Password field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Refresh Token" +msgstr "" + +#. Label of a Password field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Refresh Token" +msgstr "" + +#. Label of a Data field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Refresh Token" +msgstr "" + +#. Label of a Data field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Refresh Token" +msgstr "" + +#. Label of a Password field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Refresh Token" +msgstr "" + +#: public/js/frappe/list/list_view.js:505 +msgctxt "Document count in list view" +msgid "Refreshing" +msgstr "" + +#: core/doctype/system_settings/system_settings.js:52 +#: core/doctype/user/user.js:350 desk/page/setup_wizard/setup_wizard.js:204 +msgid "Refreshing..." +msgstr "" + +#: core/doctype/user/user.py:1019 +msgid "Registered but disabled" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Rejected" +msgstr "" + +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Rejected" +msgstr "" + +#: integrations/doctype/push_notification_settings/push_notification_settings.py:30 +msgid "Relay Server URL missing" +msgstr "" + +#. Label of a Section Break field in DocType 'Push Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "Relay Settings" +msgstr "" + +#. Group in Package's connections +#: core/doctype/package/package.json +msgctxt "Package" +msgid "Release" +msgstr "" + +#. Label of a Markdown Editor field in DocType 'Package Release' +#: core/doctype/package_release/package_release.json +msgctxt "Package Release" +msgid "Release Notes" +msgstr "" + +#: core/doctype/communication/communication.js:48 +#: core/doctype/communication/communication.js:159 +msgid "Relink" +msgstr "" + +#: core/doctype/communication/communication.js:138 +msgid "Relink Communication" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Relinked" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Relinked" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: custom/doctype/customize_form/customize_form.js:120 hooks.py +#: public/js/frappe/form/toolbar.js:408 +msgid "Reload" +msgstr "" + +#: public/js/frappe/form/controls/attach.js:16 +msgid "Reload File" +msgstr "" + +#: public/js/frappe/list/base_list.js:242 +msgid "Reload List" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:99 +msgid "Reload Report" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Remember Last Selected Value" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Remember Last Selected Value" +msgstr "" + +#: public/js/frappe/form/reminders.js:33 +msgid "Remind At" +msgstr "" + +#. Label of a Datetime field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "Remind At" +msgstr "" + +#: public/js/frappe/form/toolbar.js:436 +msgid "Remind Me" +msgstr "" + +#: public/js/frappe/form/reminders.js:13 +msgid "Remind Me In" +msgstr "" + +#. Name of a DocType +#: automation/doctype/reminder/reminder.json +msgid "Reminder" +msgstr "" + +#: automation/doctype/reminder/reminder.py:39 +msgid "Reminder cannot be created in past." +msgstr "" + +#: public/js/frappe/form/reminders.js:96 +msgid "Reminder set at {0}" +msgstr "" + +#: public/js/frappe/form/templates/form_sidebar.html:14 +#: public/js/frappe/ui/filters/edit_filter.html:4 +#: public/js/frappe/ui/group_by/group_by.html:4 +msgid "Remove" +msgstr "" + +#: core/doctype/rq_job/rq_job_list.js:8 +msgid "Remove Failed Jobs" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:488 +msgid "Remove Field" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:427 +msgid "Remove Section" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:138 +msgid "Remove all customizations?" +msgstr "" + +#: public/js/frappe/utils/datatable.js:9 +msgid "Remove column" +msgstr "" + +#: core/doctype/file/file.py:155 +msgid "Removed {0}" +msgstr "" + +#: custom/doctype/custom_field/custom_field.js:137 +#: public/js/frappe/form/toolbar.js:234 public/js/frappe/form/toolbar.js:238 +#: public/js/frappe/form/toolbar.js:398 public/js/frappe/model/model.js:742 +#: public/js/frappe/views/treeview.js:295 +msgid "Rename" +msgstr "" + +#: custom/doctype/custom_field/custom_field.js:116 +#: custom/doctype/custom_field/custom_field.js:136 +msgid "Rename Fieldname" +msgstr "" + +#: public/js/frappe/model/model.js:729 +msgid "Rename {0}" +msgstr "" + +#: core/doctype/doctype/doctype.py:689 +msgid "Renamed files and replaced code in controllers, please check!" +msgstr "" + +#: core/doctype/communication/communication.js:43 desk/doctype/todo/todo.js:36 +msgid "Reopen" +msgstr "" + +#: public/js/frappe/form/toolbar.js:479 +msgid "Repeat" +msgstr "" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Repeat Header and Footer" +msgstr "" + +#. Label of a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Repeat On" +msgstr "" + +#. Label of a Date field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Repeat Till" +msgstr "" + +#. Label of a Int field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Repeat on Day" +msgstr "" + +#. Label of a Table field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Repeat on Days" +msgstr "" + +#. Label of a Check field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Repeat on Last Day of the Month" +msgstr "" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Repeat this Event" +msgstr "" + +#: utils/password_strength.py:110 +msgid "Repeats like \"aaa\" are easy to guess" +msgstr "" + +#: utils/password_strength.py:105 +msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" +msgstr "" + +#: public/js/frappe/form/sidebar/form_sidebar.js:135 +msgid "Repeats {0}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Replied" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Replied" +msgstr "" + +#: core/doctype/communication/communication.js:57 +#: public/js/frappe/form/footer/form_timeline.js:550 +msgid "Reply" +msgstr "" + +#. Label of a Text Editor field in DocType 'Discussion Reply' +#: website/doctype/discussion_reply/discussion_reply.json +msgctxt "Discussion Reply" +msgid "Reply" +msgstr "" + +#: core/doctype/communication/communication.js:62 +msgid "Reply All" +msgstr "" + +#. Name of a DocType +#: core/doctype/report/report.json public/js/frappe/request.js:610 +msgid "Report" +msgstr "" + +#. Label of a Link field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Report" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Report" +msgstr "" + +#. Label of a Link field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "Report" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Report" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Report" +msgstr "" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Report" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Report" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Report" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Report" +msgid "Report" +msgstr "" + +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of a Link field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Report" +msgstr "" + +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Report" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Report" +msgstr "" + +#: public/js/frappe/list/list_view_select.js:66 +msgid "Report Builder" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Report Builder" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Report Builder" +msgstr "" + +#. Name of a DocType +#: core/doctype/report_column/report_column.json +msgid "Report Column" +msgstr "" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Report Description" +msgstr "" + +#: core/doctype/report/report.py:148 +msgid "Report Document Error" +msgstr "" + +#. Name of a DocType +#: core/doctype/report_filter/report_filter.json +msgid "Report Filter" +msgstr "" + +#. Label of a Section Break field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Report Filters" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Report Hide" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Report Hide" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Report Hide" +msgstr "" + +#. Label of a Section Break field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Report Information" +msgstr "" + +#. Name of a role +#: core/doctype/report/report.json +#: email/doctype/auto_email_report/auto_email_report.json +msgid "Report Manager" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1810 +msgid "Report Name" +msgstr "" + +#. Label of a Data field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Report Name" +msgstr "" + +#. Label of a Link field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Report Name" +msgstr "" + +#. Label of a Link field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Report Name" +msgstr "" + +#. Label of a Data field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Report Name" +msgstr "" + +#. Label of a Data field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Report Name" +msgstr "" + +#: desk/doctype/number_card/number_card.py:66 +msgid "Report Name, Report Field and Fucntion are required to create a number card" +msgstr "" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Report Reference Doctype" +msgstr "" + +#. Label of a Read Only field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Report Type" +msgstr "" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Report Type" +msgstr "" + +#. Label of a Select field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Report Type" +msgstr "" + +#: core/doctype/doctype/doctype.py:1748 +msgid "Report cannot be set for Single types" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:208 +#: desk/doctype/number_card/number_card.js:191 +msgid "Report has no data, please modify the filters or change the Report Name" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: desk/doctype/number_card/number_card.js:186 +msgid "Report has no numeric fields, please change the Report Name" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:939 +msgid "Report initiated, click to view status" +msgstr "" + +#: email/doctype/auto_email_report/auto_email_report.py:108 +msgid "Report limit reached" +msgstr "" + +#: core/doctype/prepared_report/prepared_report.py:203 +msgid "Report timed out." +msgstr "" + +#: desk/query_report.py:561 +msgid "Report updated successfully" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1280 +msgid "Report was not saved (there were errors)" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1848 +msgid "Report with more than 10 columns looks better in Landscape mode." +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:251 +#: public/js/frappe/ui/toolbar/search_utils.js:252 +msgid "Report {0}" +msgstr "" + +#: desk/reportview.py:343 +msgid "Report {0} deleted" +msgstr "" + +#: desk/query_report.py:50 +msgid "Report {0} is disabled" +msgstr "" + +#: desk/reportview.py:320 +msgid "Report {0} saved" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:20 +msgid "Report:" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:547 +msgid "Reports" +msgstr "" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Reports" +msgstr "" + +#: patches/v14_0/update_workspace2.py:50 +msgid "Reports & Masters" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:855 +msgid "Reports already in Queue" +msgstr "" + +#. Description of a DocType +#: core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. Description of a DocType +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Represents the states allowed in one document and role assigned to change the state." +msgstr "" + +#: www/me.html:66 +msgid "Request Account Deletion" +msgstr "" + +#. Label of a Code field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Request Body" +msgstr "" + +#. Label of a Code field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Request Data" +msgstr "" + +#. Label of a Data field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Request Description" +msgstr "" + +#. Label of a Code field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Request Headers" +msgstr "" + +#. Label of a Code field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Request Headers" +msgstr "" + +#. Label of a Data field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Request ID" +msgstr "" + +#. Label of a Int field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Request Limit" +msgstr "" + +#. Label of a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Request Method" +msgstr "" + +#. Label of a Select field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Request Structure" +msgstr "" + +#: public/js/frappe/request.js:228 +msgid "Request Timed Out" +msgstr "" + +#: public/js/frappe/request.js:241 +msgid "Request Timeout" +msgstr "" + +#. Label of a Int field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Request Timeout" +msgstr "" + +#. Label of a Small Text field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Request URL" +msgstr "" + +#. Label of a Code field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "Requested Numbers" +msgstr "" + +#. Label of a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Require Trusted Certificate" +msgstr "" + +#. Description of the 'LDAP search path for Groups' (Data) field in DocType +#. 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" +msgstr "" + +#. Description of the 'LDAP search path for Users' (Data) field in DocType +#. 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" +msgstr "" + +#: core/doctype/communication/communication.js:279 +msgid "Res: {0}" +msgstr "" + +#: desk/doctype/form_tour/form_tour.js:101 +#: desk/doctype/global_search_settings/global_search_settings.js:19 +#: desk/doctype/module_onboarding/module_onboarding.js:17 +#: website/doctype/portal_settings/portal_settings.js:19 +msgid "Reset" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:136 +msgid "Reset All Customizations" +msgstr "" + +#: public/js/print_format_builder/print_format_builder.bundle.js:21 +#: public/js/workflow_builder/workflow_builder.bundle.js:37 +msgid "Reset Changes" +msgstr "" + +#: public/js/frappe/widgets/chart_widget.js:305 +msgid "Reset Chart" +msgstr "" + +#: public/js/frappe/views/dashboard/dashboard_view.js:38 +msgid "Reset Dashboard Customizations" +msgstr "" + +#: public/js/frappe/list/list_settings.js:227 +msgid "Reset Fields" +msgstr "" + +#: core/doctype/user/user.js:165 core/doctype/user/user.js:168 +msgid "Reset LDAP Password" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "" + +#: core/doctype/user/user.js:216 +msgid "Reset OTP Secret" +msgstr "" + +#: core/doctype/user/user.js:149 www/login.html:179 www/me.html:35 +#: www/me.html:44 www/update-password.html:3 www/update-password.html:9 +msgid "Reset Password" +msgstr "" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Reset Password Key" +msgstr "" + +#. Label of a Duration field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Reset Password Link Expiry Duration" +msgstr "" + +#. Label of a Link field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Reset Password Template" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:109 +msgid "Reset Permissions for {0}?" +msgstr "" + +#: public/js/frappe/utils/datatable.js:8 +msgid "Reset sorting" +msgstr "" + +#: www/me.html:36 +msgid "Reset the password for your account" +msgstr "" + +#: public/js/frappe/form/grid_row.js:410 +msgid "Reset to default" +msgstr "" + +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +msgid "Reset to defaults" +msgstr "" + +#: templates/emails/password_reset.html:3 +msgid "Reset your password" +msgstr "" + +#. Label of a Text Editor field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "Response" +msgstr "" + +#. Label of a Section Break field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Response" +msgstr "" + +#. Label of a Code field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Response" +msgstr "" + +#. Label of a Code field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "Response " +msgstr "" + +#. Label of a Select field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Response Type" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:400 +msgid "Rest of the day" +msgstr "" + +#: core/doctype/deleted_document/deleted_document.js:11 +#: core/doctype/deleted_document/deleted_document_list.js:48 +msgid "Restore" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:503 +msgid "Restore Original Permissions" +msgstr "" + +#: website/doctype/portal_settings/portal_settings.js:20 +msgid "Restore to default settings?" +msgstr "" + +#. Label of a Check field in DocType 'Deleted Document' +#: core/doctype/deleted_document/deleted_document.json +msgctxt "Deleted Document" +msgid "Restored" +msgstr "" + +#: core/doctype/deleted_document/deleted_document.py:74 +msgid "Restoring Deleted Document" +msgstr "" + +#. Label of a Small Text field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Restrict IP" +msgstr "" + +#. Label of a Link field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Restrict To Domain" +msgstr "" + +#. Label of a Link field in DocType 'Module Def' +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Restrict To Domain" +msgstr "" + +#. Label of a Link field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Restrict To Domain" +msgstr "" + +#. Label of a Link field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Restrict To Domain" +msgstr "" + +#. Label of a Link field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Restrict to Domain" +msgstr "" + +#. Label of a Link field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Restrict to Domain" +msgstr "" + +#. Description of the 'Restrict IP' (Small Text) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +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 "" + +#: public/js/frappe/list/list_view.js:173 +msgctxt "Title of message showing restrictions in list view" +msgid "Restrictions" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:356 +#: public/js/frappe/ui/toolbar/awesome_bar.js:371 +msgid "Result" +msgstr "" + +#: email/doctype/email_queue/email_queue_list.js:27 +msgid "Resume Sending" +msgstr "" + +#: core/doctype/data_import/data_import.js:110 +#: desk/page/setup_wizard/setup_wizard.js:285 +msgid "Retry" +msgstr "" + +#. Label of a Int field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Retry" +msgstr "" + +#: email/doctype/email_queue/email_queue_list.js:47 +msgid "Retry Sending" +msgstr "" + +#: www/qrcode.html:15 +msgid "Return to the Verification screen and enter the code displayed by your authentication app" +msgstr "" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Reverse Icon Color" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.js:10 +#: social/doctype/energy_point_log/energy_point_log.js:15 +msgid "Revert" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Revert" +msgstr "" + +#. Label of a Link field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Revert Of" +msgstr "" + +#. Label of a Check field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Reverted" +msgstr "" + +#: database/schema.py:159 +msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Review" +msgstr "" + +#. Name of a DocType +#: social/doctype/review_level/review_level.json +msgid "Review Level" +msgstr "" + +#. Label of a Table field in DocType 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Review Levels" +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:402 +msgid "Review Points" +msgstr "" + +#. Label of a Int field in DocType 'Review Level' +#: social/doctype/review_level/review_level.json +msgctxt "Review Level" +msgid "Review Points" +msgstr "" + +#: public/js/frappe/form/templates/form_sidebar.html:87 +msgid "Reviews" +msgstr "" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Revocation URI" +msgstr "" + +#: www/third_party_apps.html:45 +msgid "Revoke" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Revoked" +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "Rich Text" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Rich Text" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Rich Text" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Rich Text" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Right" +msgstr "" + +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Right" +msgstr "" + +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Right" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:484 +msgctxt "alignment" +msgid "Right" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Right Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Right Center" +msgstr "" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Robots.txt" +msgstr "" + +#. Name of a DocType +#: core/doctype/role/role.json core/doctype/user_type/user_type.py:109 +#: core/page/permission_manager/permission_manager.js:212 +#: core/page/permission_manager/permission_manager.js:450 +msgid "Role" +msgstr "" + +#. Label of a Link field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Role" +msgstr "" + +#. Label of a Table field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "Role" +msgstr "" + +#. Label of a Link field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Role" +msgstr "" + +#. Label of a Link field in DocType 'Has Role' +#: core/doctype/has_role/has_role.json +msgctxt "Has Role" +msgid "Role" +msgstr "" + +#. Label of a Link field in DocType 'Onboarding Permission' +#: desk/doctype/onboarding_permission/onboarding_permission.json +msgctxt "Onboarding Permission" +msgid "Role" +msgstr "" + +#. Label of a Link field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Role" +msgstr "" + +#. Label of a Link field in DocType 'Review Level' +#: social/doctype/review_level/review_level.json +msgctxt "Review Level" +msgid "Role" +msgstr "" + +#. Label of a Link in the Users Workspace +#. Label of a shortcut in the Users Workspace +#: core/workspace/users/users.json +msgctxt "Role" +msgid "Role" +msgstr "" + +#. Label of a Link field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Role" +msgstr "" + +#. Label of a Link field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "Role" +msgstr "" + +#. Label of a Link field in DocType 'Workflow Action Permitted Role' +#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgctxt "Workflow Action Permitted Role" +msgid "Role" +msgstr "" + +#: core/doctype/role/role.js:8 +msgid "Role 'All' will be given to all system + website users." +msgstr "" + +#: core/doctype/role/role.js:13 +msgid "Role 'Desk User' will be given to all system users." +msgstr "" + +#. Label of a Data field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Role Name" +msgstr "" + +#. Label of a Data field in DocType 'Role Profile' +#: core/doctype/role_profile/role_profile.json +msgctxt "Role Profile" +msgid "Role Name" +msgstr "" + +#. Name of a DocType +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Role Permission for Page and Report" +msgstr "" + +#. Label of a Link in the Users Workspace +#: core/workspace/users/users.json +msgctxt "Role Permission for Page and Report" +msgid "Role Permission for Page and Report" +msgstr "" + +#: public/js/frappe/roles_editor.js:103 +msgid "Role Permissions" +msgstr "" + +#. Label of a Section Break field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Role Permissions" +msgstr "" + +#. Label of a Link in the Users Workspace +#: core/page/permission_manager/permission_manager.js:4 +#: core/workspace/users/users.json +msgid "Role Permissions Manager" +msgstr "" + +#: public/js/frappe/list/list_view.js:1696 +msgctxt "Button in list view menu" +msgid "Role Permissions Manager" +msgstr "" + +#. Name of a DocType +#: core/doctype/role_profile/role_profile.json +msgid "Role Profile" +msgstr "" + +#. Label of a Link in the Users Workspace +#: core/workspace/users/users.json +msgctxt "Role Profile" +msgid "Role Profile" +msgstr "" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Role Profile" +msgstr "" + +#. Label of a Link field in DocType 'User Role Profile' +#: core/doctype/user_role_profile/user_role_profile.json +msgctxt "User Role Profile" +msgid "Role Profile" +msgstr "" + +#. Label of a Table MultiSelect field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Role Profiles" +msgstr "" + +#. Label of a Section Break field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Role and Level" +msgstr "" + +#. Label of a Section Break field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Role and Level" +msgstr "" + +#: core/doctype/user/user.py:350 +msgid "Role has been set as per the user type {0}" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:59 +msgid "Roles" +msgstr "" + +#. Label of a Section Break field in DocType 'Custom HTML Block' +#. Label of a Table field in DocType 'Custom HTML Block' +#: desk/doctype/custom_html_block/custom_html_block.json +msgctxt "Custom HTML Block" +msgid "Roles" +msgstr "" + +#. Label of a Table field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Roles" +msgstr "" + +#. Label of a Table field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Roles" +msgstr "" + +#. Label of a Table field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Roles" +msgstr "" + +#. Label of a Table field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Roles" +msgstr "" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Roles" +msgstr "" + +#. Label of a Table field in DocType 'Workspace' +#. Label of a Tab Break field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Roles" +msgstr "" + +#. Label of a Tab Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Roles & Permissions" +msgstr "" + +#. Label of a Table field in DocType 'Role Profile' +#: core/doctype/role_profile/role_profile.json +msgctxt "Role Profile" +msgid "Roles Assigned" +msgstr "" + +#. Label of a Table field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Roles Assigned" +msgstr "" + +#. Label of a HTML field in DocType 'Role Profile' +#: core/doctype/role_profile/role_profile.json +msgctxt "Role Profile" +msgid "Roles HTML" +msgstr "" + +#. Label of a HTML field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Roles HTML" +msgstr "" + +#. Label of a HTML field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Roles Html" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:7 +msgid "Roles can be set for users from their User page." +msgstr "" + +#: utils/nestedset.py:277 +msgid "Root {0} cannot be deleted" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Round Robin" +msgstr "" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Rounding Method" +msgstr "" + +#. Label of a Data field in DocType 'Blog Category' +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Route" +msgstr "" + +#. Label of a Data field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Route" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Route" +msgstr "" + +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Route" +msgstr "" + +#. Label of a Data field in DocType 'DocType Layout' +#: custom/doctype/doctype_layout/doctype_layout.json +msgctxt "DocType Layout" +msgid "Route" +msgstr "" + +#. Label of a Data field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Route" +msgstr "" + +#. Label of a Data field in DocType 'Help Category' +#: website/doctype/help_category/help_category.json +msgctxt "Help Category" +msgid "Route" +msgstr "" + +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of a Data field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Route" +msgstr "" + +#. Label of a Data field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Route" +msgstr "" + +#. Label of a Data field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Route" +msgstr "" + +#. Label of a Data field in DocType 'Route History' +#: desk/doctype/route_history/route_history.json +msgctxt "Route History" +msgid "Route" +msgstr "" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Route" +msgstr "" + +#. Label of a Data field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Route" +msgstr "" + +#. Label of a Data field in DocType 'Website Sidebar Item' +#: website/doctype/website_sidebar_item/website_sidebar_item.json +msgctxt "Website Sidebar Item" +msgid "Route" +msgstr "" + +#. Name of a DocType +#: desk/doctype/route_history/route_history.json +msgid "Route History" +msgstr "" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Route History" +msgstr "" + +#. Label of a Table field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Route Redirects" +msgstr "" + +#. Description of the 'Home Page' (Data) field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Route: Example \"/app\"" +msgstr "" + +#: model/base_document.py:731 model/base_document.py:772 model/document.py:612 +msgid "Row" +msgstr "" + +#: core/doctype/version/version_view.html:73 +msgid "Row #" +msgstr "" + +#: core/doctype/doctype/doctype.py:1770 core/doctype/doctype/doctype.py:1780 +msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" +msgstr "" + +#: model/base_document.py:893 +msgid "Row #{0}:" +msgstr "" + +#: core/doctype/doctype/doctype.py:490 +msgid "Row #{}: Fieldname is required" +msgstr "" + +#. Label of a Data field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Row Index" +msgstr "" + +#. Label of a Code field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Row Indexes" +msgstr "" + +#. Label of a Data field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Row Name" +msgstr "" + +#: core/doctype/data_import/data_import.js:489 +msgid "Row Number" +msgstr "" + +#: core/doctype/version/version_view.html:68 +msgid "Row Values Changed" +msgstr "" + +#: core/doctype/data_import/data_import.js:367 +msgid "Row {0}" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:348 +msgid "Row {0}: Not allowed to disable Mandatory for standard fields" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:337 +msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" +msgstr "" + +#: core/doctype/version/version_view.html:32 +msgid "Rows Added" +msgstr "" + +#. Label of a Section Break field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "Rows Added" +msgstr "" + +#: core/doctype/version/version_view.html:32 +msgid "Rows Removed" +msgstr "" + +#. Label of a Section Break field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "Rows Removed" +msgstr "" + +#. Label of a Select field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Rule" +msgstr "" + +#. Label of a Link field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Rule" +msgstr "" + +#. Label of a Section Break field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Rule Conditions" +msgstr "" + +#. Label of a Data field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Rule Name" +msgstr "" + +#: permissions.py:658 +msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." +msgstr "" + +#. Group in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Rules" +msgstr "" + +#. Description of the 'Transitions' (Table) field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Rules defining transition of state in the workflow." +msgstr "" + +#. Description of the 'Transition Rules' (Section Break) field in DocType +#. 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Rules with higher priority number will be applied first." +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Run Jobs only Daily if Inactive For (Days)" +msgstr "" + +#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Run scheduled jobs only if checked" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgid "S3 Backup Settings" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "S3 Backup Settings" +msgid "S3 Backup Settings" +msgstr "" + +#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:18 +msgid "S3 Backup complete!" +msgstr "" + +#. Label of a Section Break field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "S3 Bucket Details" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "SMS" +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "SMS" +msgstr "" + +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "SMS" +msgstr "" + +#. Label of a Small Text field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "SMS Gateway URL" +msgstr "" + +#. Name of a DocType +#: core/doctype/sms_log/sms_log.json +msgid "SMS Log" +msgstr "" + +#. Name of a DocType +#: core/doctype/sms_parameter/sms_parameter.json +msgid "SMS Parameter" +msgstr "" + +#. Name of a DocType +#: core/doctype/sms_settings/sms_settings.json +msgid "SMS Settings" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "SMS Settings" +msgid "SMS Settings" +msgstr "" + +#: core/doctype/sms_settings/sms_settings.py:110 +msgid "SMS sent to following numbers: {0}" +msgstr "" + +#: templates/includes/login/login.js:377 +msgid "SMS was not sent. Please contact Administrator." +msgstr "" + +#: email/doctype/email_account/email_account.py:189 +msgid "SMTP Server is required" +msgstr "" + +#. Description of the 'Enable Outgoing' (Check) field in DocType 'Email +#. Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "SMTP Settings for outgoing emails" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "SQL" +msgstr "" + +#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "SQL Conditions. Example: status=\"Open\"" +msgstr "" + +#: core/doctype/recorder/recorder.js:36 +msgid "SQL Explain" +msgstr "" + +#. Label of a HTML field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "SQL Explain" +msgstr "" + +#. Label of a HTML field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "SQL Output" +msgstr "" + +#. Label of a Table field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "SQL Queries" +msgstr "" + +#. Label of a Select field in DocType 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "SSL/TLS Mode" +msgstr "" + +#: public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "" + +#. Name of a role +#: contacts/doctype/contact/contact.json +msgid "Sales Manager" +msgstr "" + +#. Name of a role +#: contacts/doctype/contact/contact.json +msgid "Sales Master Manager" +msgstr "" + +#. Name of a role +#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +#: geo/doctype/currency/currency.json +msgid "Sales User" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Salesforce" +msgstr "" + +#. Name of a DocType +#: contacts/doctype/salutation/salutation.json +msgid "Salutation" +msgstr "" + +#. Label of a Link field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Salutation" +msgstr "" + +#. Label of a Data field in DocType 'Salutation' +#: contacts/doctype/salutation/salutation.json +msgctxt "Salutation" +msgid "Salutation" +msgstr "" + +#: integrations/doctype/webhook/webhook.py:112 +msgid "Same Field is entered more than once" +msgstr "" + +#. Label of a HTML field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Sample" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Saturday" +msgstr "" + +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Saturday" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Saturday" +msgstr "" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Saturday" +msgstr "" + +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Saturday" +msgstr "" + +#: core/doctype/data_import/data_import.js:113 +#: desk/page/user_profile/user_profile_controller.js:319 +#: printing/page/print/print.js:838 +#: printing/page/print_format_builder/print_format_builder.js:160 +#: public/js/frappe/form/footer/form_timeline.js:661 +#: public/js/frappe/form/quick_entry.js:161 +#: public/js/frappe/list/list_settings.js:36 +#: public/js/frappe/list/list_settings.js:244 +#: public/js/frappe/list/list_sidebar_group_by.js:25 +#: public/js/frappe/ui/toolbar/toolbar.js:307 +#: public/js/frappe/utils/common.js:443 +#: public/js/frappe/views/kanban/kanban_settings.js:45 +#: public/js/frappe/views/kanban/kanban_settings.js:189 +#: public/js/frappe/views/kanban/kanban_view.js:340 +#: public/js/frappe/views/reports/query_report.js:1802 +#: public/js/frappe/views/reports/report_view.js:1628 +#: public/js/frappe/views/workspace/workspace.js:498 +#: public/js/frappe/widgets/base_widget.js:140 +#: public/js/frappe/widgets/quick_list_widget.js:117 +#: public/js/print_format_builder/print_format_builder.bundle.js:15 +#: public/js/workflow_builder/workflow_builder.bundle.js:33 +msgid "Save" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Save" +msgstr "" + +#: core/doctype/user/user.js:321 +msgid "Save API Secret: {0}" +msgstr "" + +#: workflow/doctype/workflow/workflow.js:143 +msgid "Save Anyway" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1311 +#: public/js/frappe/views/reports/report_view.js:1635 +msgid "Save As" +msgstr "" + +#: public/js/frappe/views/dashboard/dashboard_view.js:62 +msgid "Save Customizations" +msgstr "" + +#: public/js/frappe/list/list_sidebar.html:73 +msgid "Save Filter" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1805 +msgid "Save Report" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:94 +msgid "Save filters" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Save on Completion" +msgstr "" + +#: public/js/frappe/form/form_tour.js:289 +msgid "Save the document." +msgstr "" + +#: desk/form/save.py:46 model/rename_doc.py:106 +#: printing/page/print_format_builder/print_format_builder.js:845 +#: public/js/frappe/form/toolbar.js:260 +#: public/js/frappe/views/kanban/kanban_board.bundle.js:917 +msgid "Saved" +msgstr "" + +#: public/js/frappe/list/list_settings.js:40 +#: public/js/frappe/views/kanban/kanban_settings.js:47 +#: public/js/frappe/views/workspace/workspace.js:510 +msgid "Saving" +msgstr "" + +#: public/js/frappe/form/save.js:9 +msgctxt "Freeze message while saving a document" +msgid "Saving" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:343 +msgid "Saving Customization..." +msgstr "" + +#: desk/doctype/module_onboarding/module_onboarding.js:8 +msgid "Saving this will export this document as well as the steps linked here as json." +msgstr "" + +#: public/js/form_builder/store.js:233 +#: public/js/print_format_builder/store.js:36 +#: public/js/workflow_builder/store.js:73 +msgid "Saving..." +msgstr "" + +#: public/js/frappe/scanner/index.js:72 +msgid "Scan QRCode" +msgstr "" + +#: www/qrcode.html:14 +msgid "Scan the QR Code and enter the resulting code displayed." +msgstr "" + +#: email/doctype/newsletter/newsletter.js:125 +msgid "Schedule" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:106 +msgid "Schedule Newsletter" +msgstr "" + +#: public/js/frappe/views/communication.js:85 +msgid "Schedule Send At" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:70 +msgid "Schedule sending" +msgstr "" + +#. Label of a Check field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Schedule sending at a later time" +msgstr "" + +#: email/doctype/newsletter/newsletter_list.js:7 +msgid "Scheduled" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Scheduled" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Scheduled" +msgstr "" + +#. Label of a Link field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Scheduled Job" +msgstr "" + +#. Name of a DocType +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job Log" +msgstr "" + +#. Linked DocType in Scheduled Job Type's connections +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Scheduled Job Log" +msgstr "" + +#. Name of a DocType +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Scheduled Job Type" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Scheduled Job Type" +msgid "Scheduled Job Type" +msgstr "" + +#. Linked DocType in Server Script's connections +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Scheduled Job Type" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Scheduled Job Log" +msgid "Scheduled Jobs Logs" +msgstr "" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Scheduled Sending" +msgstr "" + +#. Label of a Int field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Scheduled To Send" +msgstr "" + +#: core/doctype/server_script/server_script.py:280 +msgid "Scheduled execution for script {0} has updated" +msgstr "" + +#: email/doctype/auto_email_report/auto_email_report.js:26 +msgid "Scheduled to send" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Scheduler Event" +msgstr "Događaj planera" + +#: core/doctype/data_import/data_import.py:97 +msgid "Scheduler Inactive" +msgstr "Planer neaktivan" + +#: utils/scheduler.py:196 +msgid "Scheduler can not be re-enabled when maintenance mode is active." +msgstr "Planer se ne može ponovno omogućiti kada je aktivan način rada za održavanje." + +#: core/doctype/data_import/data_import.py:97 +msgid "Scheduler is inactive. Cannot import data." +msgstr "Planer je neaktivan. Nije moguće uvesti podatke." + +#: core/doctype/rq_job/rq_job_list.js:19 +msgid "Scheduler: Active" +msgstr "Planer: Aktivan" + +#: core/doctype/rq_job/rq_job_list.js:21 +msgid "Scheduler: Inactive" +msgstr "Planer: Neaktivan" + +#. Label of a Data field in DocType 'OAuth Scope' +#: integrations/doctype/oauth_scope/oauth_scope.json +msgctxt "OAuth Scope" +msgid "Scope" +msgstr "" + +#. Label of a Section Break field in DocType 'Connected App' +#. Label of a Table field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Scopes" +msgstr "" + +#. Label of a Text field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Scopes" +msgstr "" + +#. Label of a Text field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Scopes" +msgstr "" + +#. Label of a Text field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Scopes" +msgstr "" + +#. Label of a Table field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Scopes" +msgstr "" + +#. Label of a Code field in DocType 'Client Script' +#: custom/doctype/client_script/client_script.json +msgctxt "Client Script" +msgid "Script" +msgstr "" + +#. Label of a Code field in DocType 'Console Log' +#: desk/doctype/console_log/console_log.json +msgctxt "Console Log" +msgid "Script" +msgstr "" + +#. Label of a Code field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Script" +msgstr "" + +#. Label of a Code field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Script" +msgstr "" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Script" +msgstr "" + +#. Label of a Tab Break field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Script" +msgstr "" + +#. Name of a role +#: core/doctype/server_script/server_script.json +msgid "Script Manager" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Script Report" +msgstr "" + +#. Label of a Select field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Script Type" +msgstr "" + +#. Description of a DocType +#: website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "Scripting" +msgstr "" + +#. Label of a Tab Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Scripting" +msgstr "" + +#. Label of a Section Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Scripting / Style" +msgstr "" + +#. Label of a Section Break field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Scripts" +msgstr "" + +#: desk/page/leaderboard/leaderboard.js:211 +#: public/js/frappe/form/link_selector.js:46 +#: public/js/frappe/list/list_sidebar.html:59 +#: public/js/frappe/ui/toolbar/search.js:49 +#: public/js/frappe/ui/toolbar/search.js:68 +#: templates/includes/search_template.html:26 www/search.py:19 +msgid "Search" +msgstr "" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Search" +msgstr "" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Search Bar" +msgstr "" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Search Fields" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Search Fields" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:186 +msgid "Search Help" +msgstr "" + +#. Label of a Table field in DocType 'Global Search Settings' +#: desk/doctype/global_search_settings/global_search_settings.json +msgctxt "Global Search Settings" +msgid "Search Priorities" +msgstr "" + +#: www/search.py:14 +msgid "Search Results for" +msgstr "" + +#: core/doctype/doctype/doctype.py:1416 +msgid "Search field {0} is not valid" +msgstr "" + +#: public/js/frappe/ui/toolbar/search.js:50 +#: public/js/frappe/ui/toolbar/search.js:69 +msgid "Search for anything" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:300 +#: public/js/frappe/ui/toolbar/awesome_bar.js:306 +msgid "Search for {0}" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:166 +msgid "Search in a document type" +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:29 +msgid "Search or type a command ({0})" +msgstr "" + +#: templates/includes/search_box.html:8 +msgid "Search results for" +msgstr "" + +#: templates/includes/navbar/navbar_search.html:6 +#: templates/includes/search_box.html:2 +#: templates/includes/search_template.html:23 +msgid "Search..." +msgstr "" + +#: public/js/frappe/ui/toolbar/search.js:210 +msgid "Searching ..." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Section" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Section Break" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Section Break" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Section Break" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Section Break" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Section Break" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:421 +msgid "Section Heading" +msgstr "" + +#. Label of a Data field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Section ID" +msgstr "" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Security Settings" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:302 +msgid "See all Activity" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:788 +msgid "See all past reports." +msgstr "" + +#: public/js/frappe/form/form.js:1208 +#: website/doctype/contact_us_settings/contact_us_settings.js:4 +msgid "See on Website" +msgstr "" + +#: website/doctype/web_form/templates/web_form.html:150 +msgctxt "Button in web form" +msgid "See previous responses" +msgstr "" + +#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 +msgid "See the document at {0}" +msgstr "" + +#: core/doctype/error_log/error_log_list.js:5 +msgid "Seen" +msgstr "" + +#. Label of a Check field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Seen" +msgstr "" + +#. Label of a Check field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Seen" +msgstr "" + +#. Label of a Check field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Seen" +msgstr "" + +#. Label of a Check field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Seen" +msgstr "" + +#. Label of a Check field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "Seen" +msgstr "" + +#. Label of a Section Break field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Seen By" +msgstr "" + +#. Label of a Table field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Seen By Table" +msgstr "" + +#: printing/page/print/print.js:599 +msgid "Select" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Select" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Select" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Select" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Select" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Select" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Select" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Select" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Select" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Select" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:148 +#: public/js/frappe/form/controls/multicheck.js:166 +msgid "Select All" +msgstr "" + +#: public/js/frappe/views/communication.js:165 +#: public/js/frappe/views/communication.js:578 +#: public/js/frappe/views/interaction.js:93 +#: public/js/frappe/views/interaction.js:155 +msgid "Select Attachments" +msgstr "" + +#: custom/doctype/client_script/client_script.js:25 +#: custom/doctype/client_script/client_script.js:28 +msgid "Select Child Table" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:352 +msgid "Select Column" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_field.html:41 +#: public/js/frappe/form/print_utils.js:43 +msgid "Select Columns" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:387 +msgid "Select Country" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:404 +msgid "Select Currency" +msgstr "" + +#: public/js/frappe/utils/dashboard_utils.js:240 +msgid "Select Dashboard" +msgstr "" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Select Dashboard" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Select Date Range" +msgstr "" + +#: public/js/frappe/doctype/index.js:170 +msgid "Select DocType" +msgstr "" + +#. Label of a Link field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Select DocType" +msgstr "" + +#. Label of a Link field in DocType 'Data Export' +#: core/doctype/data_export/data_export.json +msgctxt "Data Export" +msgid "Select Doctype" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Select Document" +msgstr "" + +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:50 +#: workflow/page/workflow_builder/workflow_builder.js:50 +msgid "Select Document Type" +msgstr "" + +#: core/page/permission_manager/permission_manager.js:172 +msgid "Select Document Type or Role to start." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:34 +msgid "Select Document Types to set which User Permissions are used to limit access." +msgstr "" + +#: public/js/frappe/doctype/index.js:199 public/js/frappe/form/toolbar.js:762 +msgid "Select Field" +msgstr "" + +#: public/js/frappe/ui/group_by/group_by.html:32 +#: public/js/frappe/ui/group_by/group_by.js:141 +msgid "Select Field..." +msgstr "" + +#: public/js/frappe/form/grid_row.js:460 +#: public/js/frappe/list/list_settings.js:233 +#: public/js/frappe/views/kanban/kanban_settings.js:181 +msgid "Select Fields" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:146 +msgid "Select Fields To Insert" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:147 +msgid "Select Fields To Update" +msgstr "" + +#: public/js/frappe/list/list_sidebar_group_by.js:21 +msgid "Select Filters" +msgstr "" + +#: desk/doctype/event/event.py:96 +msgid "Select Google Calendar to which event should be synced." +msgstr "" + +#: contacts/doctype/contact/contact.py:76 +msgid "Select Google Contacts to which contact should be synced." +msgstr "" + +#: public/js/frappe/ui/group_by/group_by.html:10 +msgid "Select Group By..." +msgstr "" + +#: public/js/frappe/list/list_view_select.js:185 +msgid "Select Kanban" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:379 +msgid "Select Language" +msgstr "" + +#. Label of a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Select List View" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:157 +msgid "Select Mandatory" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:235 +msgid "Select Module" +msgstr "" + +#: printing/page/print/print.js:175 printing/page/print/print.js:582 +msgid "Select Network Printer" +msgstr "" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Select Page" +msgstr "" + +#: printing/page/print_format_builder_beta/print_format_builder_beta.js:68 +#: public/js/frappe/views/communication.js:148 +msgid "Select Print Format" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:82 +msgid "Select Print Format to Edit" +msgstr "" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Select Report" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:623 +msgid "Select Table Columns for {0}" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:396 +msgid "Select Time Zone" +msgstr "" + +#. Label of a Autocomplete field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Select Transaction" +msgstr "" + +#: workflow/page/workflow_builder/workflow_builder.js:68 +msgid "Select Workflow" +msgstr "" + +#. Label of a Link field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Select Workspace" +msgstr "" + +#: website/doctype/website_settings/website_settings.js:23 +msgid "Select a Brand Image first." +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:108 +msgid "Select a DocType to make a new format" +msgstr "" + +#: integrations/doctype/webhook/webhook.py:133 +msgid "Select a document to check if it meets conditions." +msgstr "" + +#: integrations/doctype/webhook/webhook.py:145 +msgid "Select a document to preview request data" +msgstr "" + +#: public/js/frappe/views/treeview.js:342 +msgid "Select a group node first." +msgstr "" + +#: core/doctype/doctype/doctype.py:1881 +msgid "Select a valid Sender Field for creating documents from Email" +msgstr "" + +#: core/doctype/doctype/doctype.py:1865 +msgid "Select a valid Subject field for creating documents from Email" +msgstr "" + +#: public/js/frappe/form/form_tour.js:315 +msgid "Select an Image" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_start.html:2 +msgid "Select an existing format to edit or start a new format." +msgstr "" + +#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website +#. Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Select an image of approx width 150px with a transparent background for best results." +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:35 +msgid "Select atleast 1 record for printing" +msgstr "" + +#: core/doctype/success_action/success_action.js:18 +msgid "Select atleast 2 actions" +msgstr "" + +#: public/js/frappe/list/list_view.js:1229 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "" + +#: public/js/frappe/list/list_view.js:1181 +#: public/js/frappe/list/list_view.js:1197 +msgctxt "Description of a list view shortcut" +msgid "Select multiple list items" +msgstr "" + +#: public/js/frappe/views/calendar/calendar.js:175 +msgid "Select or drag across time slots to create a new event." +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:209 +msgid "Select records for assignment" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:230 +msgid "Select records for removing assignment" +msgstr "" + +#. Description of the 'Insert After' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Select the label after which you want to insert new field." +msgstr "" + +#: public/js/frappe/utils/diffview.js:102 +msgid "Select two versions to view the diff." +msgstr "" + +#: public/js/frappe/form/link_selector.js:24 +#: public/js/frappe/form/multi_select_dialog.js:79 +#: public/js/frappe/form/multi_select_dialog.js:279 +#: public/js/frappe/list/list_view_select.js:153 +msgid "Select {0}" +msgstr "" + +#: model/workflow.py:117 +msgid "Self approval is not allowed" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:66 +#: email/doctype/newsletter/newsletter.js:74 +#: email/doctype/newsletter/newsletter.js:162 +#: public/js/frappe/views/communication.js:26 www/contact.html:41 +msgid "Send" +msgstr "" + +#. Label of a Datetime field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Send After" +msgstr "" + +#. Label of a Datetime field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Send After" +msgstr "" + +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send Alert On" +msgstr "" + +#. Label of a Check field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Send Email Alert" +msgstr "" + +#. Label of a Datetime field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Send Email At" +msgstr "" + +#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print +#. Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Send Email Print Attachments as PDF (Recommended)" +msgstr "" + +#. Label of a Check field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Send Email for Successful Backup" +msgstr "" + +#. Label of a Check field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Send Email for Successful Backup" +msgstr "" + +#. Label of a Check field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Send Email for Successful backup" +msgstr "" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Send Me A Copy of Outgoing Emails" +msgstr "" + +#. Label of a Data field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Send Notification To" +msgstr "" + +#. Label of a Small Text field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Send Notification to" +msgstr "" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Send Notifications For Documents Followed By Me" +msgstr "" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Send Notifications For Email Threads" +msgstr "" + +#. Label of a Data field in DocType 'Dropbox Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Send Notifications To" +msgstr "" + +#. Label of a Data field in DocType 'S3 Backup Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Send Notifications To" +msgstr "" + +#: email/doctype/auto_email_report/auto_email_report.js:21 +msgid "Send Now" +msgstr "" + +#. Label of a Check field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Send Print as PDF" +msgstr "" + +#: public/js/frappe/views/communication.js:138 +msgid "Send Read Receipt" +msgstr "" + +#. Label of a Check field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send System Notification" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:153 +msgid "Send Test Email" +msgstr "" + +#. Label of a Check field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send To All Assignees" +msgstr "" + +#. Label of a Check field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Send Unsubscribe Link" +msgstr "" + +#. Label of a Check field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Send Web View Link" +msgstr "" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Send Welcome Email" +msgstr "" + +#: www/me.html:67 +msgid "Send a request to delete your account" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:10 +msgid "Send a test email" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:166 +msgid "Send again" +msgstr "" + +#. Description of the 'Reference Date' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send alert if date matches this field's value" +msgstr "" + +#. Description of the 'Value Changed' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send alert if this field's value changes" +msgstr "" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Send an email reminder in the morning" +msgstr "" + +#. Description of the 'Days Before or After' (Int) field in DocType +#. 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Send days before or after the reference date" +msgstr "" + +#. Description of the 'Forward To Email Address' (Data) field in DocType +#. 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Send enquiries to this email address" +msgstr "" + +#: templates/includes/login/login.js:73 www/login.html:210 +msgid "Send login link" +msgstr "" + +#: public/js/frappe/views/communication.js:132 +msgid "Send me a copy" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:46 +msgid "Send now" +msgstr "" + +#. Label of a Check field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Send only if there is any data" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Send unsubscribe message in email" +msgstr "" + +#. Label of a Link field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Sender" +msgstr "" + +#. Label of a Data field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Sender" +msgstr "" + +#. Label of a Data field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Sender" +msgstr "" + +#. Label of a Data field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Sender" +msgstr "" + +#. Label of a Link field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Sender" +msgstr "" + +#. Label of a Data field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Sender" +msgstr "" + +#. Label of a Data field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Sender Email" +msgstr "" + +#. Label of a Data field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Sender Email" +msgstr "" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Sender Email Field" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Sender Email Field" +msgstr "" + +#: core/doctype/doctype/doctype.py:1884 +msgid "Sender Field should have Email in options" +msgstr "" + +#. Label of a Data field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Sender Name" +msgstr "" + +#. Label of a Data field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "Sender Name" +msgstr "" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Sender Name Field" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Sender Name Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Sendgrid" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:201 +msgid "Sending" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Sending" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Sending" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:203 +msgid "Sending emails" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:164 +msgid "Sending..." +msgstr "" + +#: email/doctype/newsletter/newsletter.js:196 +#: email/doctype/newsletter/newsletter_list.js:5 +msgid "Sent" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Sent" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Sent" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgctxt "Email Queue Recipient" +msgid "Sent" +msgstr "" + +#. Label of a Date field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "Sent On" +msgstr "" + +#. Label of a Check field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Sent Read Receipt" +msgstr "" + +#. Label of a Code field in DocType 'SMS Log' +#: core/doctype/sms_log/sms_log.json +msgctxt "SMS Log" +msgid "Sent To" +msgstr "" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Sent or Received" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Sent/Received Email" +msgstr "" + +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#: core/doctype/navbar_item/navbar_item.json +msgctxt "Navbar Item" +msgid "Separator" +msgstr "" + +#. Label of a Float field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Sequence Id" +msgstr "" + +#. Label of a Text field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Series List for this Transaction" +msgstr "" + +#: core/doctype/document_naming_settings/document_naming_settings.py:115 +msgid "Series Updated for {}" +msgstr "" + +#: core/doctype/document_naming_settings/document_naming_settings.py:223 +msgid "Series counter for {} updated to {} successfully" +msgstr "" + +#: core/doctype/doctype/doctype.py:1072 +#: core/doctype/document_naming_settings/document_naming_settings.py:170 +msgid "Series {0} already used in {1}" +msgstr "" + +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#: core/doctype/doctype_action/doctype_action.json +msgctxt "DocType Action" +msgid "Server Action" +msgstr "" + +#: public/js/frappe/request.js:606 +msgid "Server Error" +msgstr "" + +#. Label of a Data field in DocType 'Network Printer Settings' +#: printing/doctype/network_printer_settings/network_printer_settings.json +msgctxt "Network Printer Settings" +msgid "Server IP" +msgstr "" + +#. Name of a DocType +#: core/doctype/server_script/server_script.json +msgid "Server Script" +msgstr "" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Server Script" +msgstr "" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Server Script" +msgstr "" + +#. Label of a Link field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Server Script" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Server Script" +msgid "Server Script" +msgstr "" + +#: utils/safe_exec.py:89 +msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." +msgstr "" + +#: core/doctype/server_script/server_script.js:36 +msgid "Server Scripts feature is not available on this site." +msgstr "" + +#: public/js/frappe/request.js:243 public/js/frappe/request.js:251 +msgid "Server was too busy to process this request. Please try again." +msgstr "" + +#. Label of a Select field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Service" +msgstr "" + +#. Label of a Data field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Service" +msgstr "" + +#. Name of a DocType +#: core/doctype/session_default/session_default.json +msgid "Session Default" +msgstr "" + +#. Name of a DocType +#: core/doctype/session_default_settings/session_default_settings.json +msgid "Session Default Settings" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py public/js/frappe/ui/toolbar/toolbar.js:306 +msgid "Session Defaults" +msgstr "" + +#. Label of a Table field in DocType 'Session Default Settings' +#: core/doctype/session_default_settings/session_default_settings.json +msgctxt "Session Default Settings" +msgid "Session Defaults" +msgstr "" + +#: public/js/frappe/ui/toolbar/toolbar.js:291 +msgid "Session Defaults Saved" +msgstr "" + +#: app.py:344 +msgid "Session Expired" +msgstr "" + +#. Label of a Data field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Session Expiry (idle timeout)" +msgstr "" + +#: core/doctype/system_settings/system_settings.py:112 +msgid "Session Expiry must be in format {0}" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:563 +msgctxt "Field value is set" +msgid "Set" +msgstr "" + +#. Label of a Button field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Set Banner from Image" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:199 +msgid "Set Chart" +msgstr "" + +#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' +#: desk/doctype/dashboard/dashboard.json +msgctxt "Dashboard" +msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: desk/doctype/number_card/number_card.js:361 +msgid "Set Dynamic Filters" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:381 +#: desk/doctype/number_card/number_card.js:277 +#: website/doctype/web_form/web_form.js:269 +msgid "Set Filters" +msgstr "" + +#: public/js/frappe/widgets/chart_widget.js:395 +#: public/js/frappe/widgets/quick_list_widget.js:102 +msgid "Set Filters for {0}" +msgstr "" + +#: core/doctype/user_type/user_type.py:91 +msgid "Set Limit" +msgstr "" + +#. Description of the 'Setup Series for transactions' (Section Break) field in +#. DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Set Naming Series options on your transactions." +msgstr "" + +#. Label of a Password field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Set New Password" +msgstr "" + +#: desk/page/backups/backups.js:8 +msgid "Set Number of Backups" +msgstr "" + +#: www/update-password.html:9 +msgid "Set Password" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:112 +msgid "Set Permissions" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:471 +msgid "Set Properties" +msgstr "" + +#. Label of a Section Break field in DocType 'Notification' +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Set Property After Alert" +msgstr "" + +#: public/js/frappe/form/link_selector.js:207 +#: public/js/frappe/form/link_selector.js:208 +msgid "Set Quantity" +msgstr "" + +#. Label of a Select field in DocType 'Role Permission for Page and Report' +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgctxt "Role Permission for Page and Report" +msgid "Set Role For" +msgstr "" + +#: core/doctype/user/user.js:126 +#: core/page/permission_manager/permission_manager.js:65 +msgid "Set User Permissions" +msgstr "" + +#. Label of a Small Text field in DocType 'Property Setter' +#: custom/doctype/property_setter/property_setter.json +msgctxt "Property Setter" +msgid "Set Value" +msgstr "" + +#: public/js/frappe/file_uploader/file_uploader.bundle.js:72 +#: public/js/frappe/file_uploader/file_uploader.bundle.js:124 +msgid "Set all private" +msgstr "" + +#: public/js/frappe/file_uploader/file_uploader.bundle.js:72 +msgid "Set all public" +msgstr "" + +#: printing/doctype/print_format/print_format.js:49 +msgid "Set as Default" +msgstr "" + +#: website/doctype/website_theme/website_theme.js:33 +msgid "Set as Default Theme" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Set by user" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Set by user" +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Set non-standard precision for a Float or Currency field" +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'Customize Form +#. Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Set non-standard precision for a Float or Currency field" +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Set non-standard precision for a Float or Currency field" +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Set non-standard precision for a Float or Currency field" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Set only once" +msgstr "" + +#. Description of the 'Filters Configuration' (Code) field in DocType 'Number +#. Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Set the filters here. For example:\n" +"
\n"
+"[{\n"
+"\tfieldname: \"company\",\n"
+"\tlabel: __(\"Company\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Company\",\n"
+"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
+"\treqd: 1\n"
+"},\n"
+"{\n"
+"\tfieldname: \"account\",\n"
+"\tlabel: __(\"Account\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Account\",\n"
+"\treqd: 1\n"
+"}]\n"
+"
" +msgstr "" + +#. Description of the 'Method' (Data) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +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 "" + +#: contacts/doctype/address_template/address_template.py:33 +msgid "Setting this Address Template as default as there is no other default" +msgstr "" + +#: desk/doctype/global_search_settings/global_search_settings.py:86 +msgid "Setting up Global Search documents." +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:273 +msgid "Setting up your system" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +#: public/js/frappe/form/templates/print_layout.html:25 +#: public/js/frappe/ui/toolbar/toolbar.js:264 +#: public/js/frappe/views/workspace/workspace.js:526 +msgid "Settings" +msgstr "" + +#. Label of a Tab Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Settings" +msgstr "" + +#. Label of a Tab Break field in DocType 'User' +#. Group in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Settings" +msgstr "" + +#. Label of a Tab Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Settings" +msgstr "" + +#. Label of a Tab Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Settings" +msgstr "" + +#. Label of a Table field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Settings Dropdown" +msgstr "" + +#. Description of a DocType +#: website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/blog_settings/blog_settings.json +msgid "Settings to control blog categories and interactions like comments and likes" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: public/js/frappe/ui/toolbar/search_utils.js:567 +#: website/workspace/website/website.json +msgid "Setup" +msgstr "" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Setup" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:27 +msgid "Setup > Customize Form" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:8 +msgid "Setup > User" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:33 +msgid "Setup > User Permissions" +msgstr "" + +#. Title of an Onboarding Step +#: custom/onboarding_step/workflows/workflows.json +msgid "Setup Approval Workflows" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1675 +#: public/js/frappe/views/reports/report_view.js:1606 +msgid "Setup Auto Email" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:204 +msgid "Setup Complete" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Setup Complete" +msgstr "" + +#. Title of an Onboarding Step +#: custom/onboarding_step/role_permissions/role_permissions.json +msgid "Setup Limited Access for a User" +msgstr "" + +#. Title of an Onboarding Step +#: custom/onboarding_step/naming_series/naming_series.json +msgid "Setup Naming Series" +msgstr "" + +#. Label of a Section Break field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Setup Series for transactions" +msgstr "" + +#: public/js/frappe/form/templates/form_sidebar.html:110 +msgid "Share" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Share" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Share" +msgstr "" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Share" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Share" +msgstr "" + +#: public/js/frappe/form/sidebar/share.js:107 +msgid "Share With" +msgstr "" + +#: public/js/frappe/form/templates/set_sharing.html:49 +msgid "Share this document with" +msgstr "" + +#: public/js/frappe/form/sidebar/share.js:45 +msgid "Share {0} with" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Shared" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Shared" +msgstr "" + +#: desk/form/assign_to.py:129 +msgid "Shared with the following Users with Read access:{0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Shipping" +msgstr "" + +#: public/js/frappe/form/templates/address_list.html:25 +msgid "Shipping Address" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Shop" +msgstr "" + +#. Label of a Data field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Short Name" +msgstr "" + +#: utils/password_strength.py:91 +msgid "Short keyboard patterns are easy to guess" +msgstr "" + +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Shortcuts" +msgstr "" + +#. Label of a Table field in DocType 'Workspace' +#. Label of a Tab Break field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Shortcuts" +msgstr "" + +#: public/js/frappe/widgets/base_widget.js:46 +#: public/js/frappe/widgets/base_widget.js:176 +#: templates/includes/login/login.js:86 www/login.html:30 +msgid "Show" +msgstr "" + +#. Label of a Check field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Show \"Call to Action\" in Blog" +msgstr "" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Show Absolute Values" +msgstr "" + +#: public/js/frappe/form/templates/form_sidebar.html:78 +msgid "Show All" +msgstr "" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Show Attachments" +msgstr "" + +#: desk/doctype/calendar_view/calendar_view.js:10 +msgid "Show Calendar" +msgstr "" + +#. Label of a Check field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Show Currency Symbol on Right Side" +msgstr "" + +#: desk/doctype/dashboard/dashboard.js:6 +msgid "Show Dashboard" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Show Dashboard" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Show Dashboard" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Show Dashboard" +msgstr "" + +#. Label of a Button field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Show Document" +msgstr "" + +#: www/error.html:41 www/error.html:59 +msgid "Show Error" +msgstr "" + +#: public/js/frappe/form/layout.js:545 +msgid "Show Fieldname (click to copy on clipboard)" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Show First Document Tour" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Show Form Tour" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Show Full Error and Allow Reporting of Issues to the Developer" +msgstr "" + +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Show Full Form?" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:231 +msgid "Show Keyboard Shortcuts" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_settings.js:30 +msgid "Show Labels" +msgstr "" + +#. Label of a Check field in DocType 'Kanban Board' +#: desk/doctype/kanban_board/kanban_board.json +msgctxt "Kanban Board" +msgid "Show Labels" +msgstr "" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Show Language Picker" +msgstr "" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Show Line Breaks after Sections" +msgstr "" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Show List" +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:472 +msgid "Show More Activity" +msgstr "" + +#. Label of a Check field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Show Only Failed Logs" +msgstr "" + +#. Label of a Check field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Show Percentage Stats" +msgstr "" + +#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 +msgid "Show Permissions" +msgstr "" + +#: public/js/form_builder/form_builder.bundle.js:31 +#: public/js/form_builder/form_builder.bundle.js:43 +#: public/js/print_format_builder/print_format_builder.bundle.js:18 +#: public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Show Preview" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Show Preview Popup" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Show Preview Popup" +msgstr "" + +#. Label of a Check field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Show Processlist" +msgstr "" + +#: core/doctype/error_log/error_log.js:9 +msgid "Show Related Errors" +msgstr "" + +#: core/doctype/prepared_report/prepared_report.js:43 +#: core/doctype/report/report.js:13 +msgid "Show Report" +msgstr "" + +#. Label of a Button field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Show Report" +msgstr "" + +#: public/js/frappe/list/list_filter.js:15 +#: public/js/frappe/list/list_filter.js:87 +msgid "Show Saved" +msgstr "" + +#. Label of a Check field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Show Section Headings" +msgstr "" + +#. Label of a Check field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Show Sidebar" +msgstr "" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Show Sidebar" +msgstr "" + +#: public/js/frappe/list/list_sidebar.html:66 +#: public/js/frappe/list/list_view.js:1612 +msgid "Show Tags" +msgstr "" + +#. Label of a Check field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Show Title" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Show Title in Link Fields" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Show Title in Link Fields" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1450 +msgid "Show Totals" +msgstr "" + +#: desk/doctype/form_tour/form_tour.js:116 +msgid "Show Tour" +msgstr "" + +#: core/doctype/data_import/data_import.js:454 +msgid "Show Traceback" +msgstr "" + +#: public/js/frappe/data_import/import_preview.js:200 +msgid "Show Warnings" +msgstr "" + +#: public/js/frappe/views/calendar/calendar.js:185 +msgid "Show Weekends" +msgstr "" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Show account deletion link in My Account page" +msgstr "" + +#: core/doctype/version/version.js:6 +msgid "Show all Versions" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:67 +msgid "Show all activity" +msgstr "" + +#: website/doctype/blog_post/templates/blog_post_list.html:24 +msgid "Show all blogs" +msgstr "" + +#. Label of a Small Text field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Show as cc" +msgstr "" + +#. Label of a Check field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Show footer on login" +msgstr "" + +#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding +#. Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Show full form instead of a quick entry modal" +msgstr "" + +#. Label of a Select field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Show in Module Section" +msgstr "" + +#. Label of a Check field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Show in filter" +msgstr "" + +#. Label of a Check field in DocType 'Slack Webhook URL' +#: integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgctxt "Slack Webhook URL" +msgid "Show link to document" +msgstr "" + +#: public/js/frappe/form/layout.js:247 public/js/frappe/form/layout.js:265 +msgid "Show more details" +msgstr "" + +#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number +#. Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Show percentage difference according to this time interval" +msgstr "" + +#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Show title in browser window as \"Prefix - title\"" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:148 +msgid "Show {0} List" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:470 +msgid "Showing only Numeric fields from Report" +msgstr "" + +#: public/js/frappe/data_import/import_preview.js:149 +msgid "Showing only first {0} rows out of {1}" +msgstr "" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Sidebar" +msgstr "" + +#. Label of a Table field in DocType 'Website Sidebar' +#: website/doctype/website_sidebar/website_sidebar.json +msgctxt "Website Sidebar" +msgid "Sidebar Items" +msgstr "" + +#. Label of a Section Break field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Sidebar Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Sidebar and Comments" +msgstr "" + +#. Label of a Section Break field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Sign Up and Confirmation" +msgstr "" + +#: core/doctype/user/user.py:1012 +msgid "Sign Up is disabled" +msgstr "" + +#: templates/signup.html:16 www/login.html:120 www/login.html:136 +#: www/update-password.html:35 +msgid "Sign up" +msgstr "" + +#. Label of a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Sign ups" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Signature" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Signature" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Signature" +msgstr "" + +#. Label of a Section Break field in DocType 'Email Account' +#. Label of a Text Editor field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Signature" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Signature" +msgstr "" + +#: www/login.html:148 +msgid "Signup Disabled" +msgstr "" + +#: www/login.html:149 +msgid "Signups have been disabled for this website." +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" +msgstr "" + +#. Description of the 'Close Condition' (Code) field in DocType 'Assignment +#. Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgstr "" + +#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgstr "" + +#. Label of a Int field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Simultaneous Sessions" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:121 +msgid "Single DocTypes cannot be customized." +msgstr "" + +#: core/doctype/doctype/doctype_list.js:67 +msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" +msgstr "" + +#. Description of the 'Is Single' (Check) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" +msgstr "" + +#: database/database.py:237 +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 "" + +#: public/js/frappe/views/file/file_view.js:318 +msgid "Size" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:82 +#: public/js/onboarding_tours/onboarding_tours.js:18 +msgid "Skip" +msgstr "" + +#. Label of a Check field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Skip Authorization" +msgstr "" + +#. Label of a Select field in DocType 'OAuth Provider Settings' +#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgctxt "OAuth Provider Settings" +msgid "Skip Authorization" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:337 +msgid "Skip Step" +msgstr "" + +#. Label of a Check field in DocType 'Patch Log' +#: core/doctype/patch_log/patch_log.json +msgctxt "Patch Log" +msgid "Skipped" +msgstr "" + +#: core/doctype/data_import/importer.py:902 +msgid "Skipping Duplicate Column {0}" +msgstr "" + +#: core/doctype/data_import/importer.py:927 +msgid "Skipping Untitled Column" +msgstr "" + +#: core/doctype/data_import/importer.py:913 +msgid "Skipping column {0}" +msgstr "" + +#: modules/utils.py:158 +msgid "Skipping fixture syncing for doctype {0} from file {1}" +msgstr "" + +#: core/doctype/data_import/data_import.js:39 +msgid "Skipping {0} of {1}, {2}" +msgstr "" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Skype" +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Slack" +msgstr "" + +#. Label of a Link field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Slack Channel" +msgstr "" + +#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 +msgid "Slack Webhook Error" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgid "Slack Webhook URL" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Slack Webhook URL" +msgid "Slack Webhook URL" +msgstr "" + +#. Label of a Link field in DocType 'Web Page' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Slideshow" +msgstr "" + +#. Label of a Table field in DocType 'Website Slideshow' +#: website/doctype/website_slideshow/website_slideshow.json +msgctxt "Website Slideshow" +msgid "Slideshow Items" +msgstr "" + +#. Label of a Data field in DocType 'Website Slideshow' +#: website/doctype/website_slideshow/website_slideshow.json +msgctxt "Website Slideshow" +msgid "Slideshow Name" +msgstr "" + +#. Description of a DocType +#: website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Small Text" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Small Text" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Small Text" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Small Text" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Small Text" +msgstr "" + +#. Label of a Currency field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Smallest Currency Fraction Value" +msgstr "" + +#. Description of the 'Smallest Currency Fraction Value' (Currency) field in +#. DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01" +msgstr "" + +#: printing/doctype/letter_head/letter_head.js:32 +msgid "Snippet and more variables: {0}" +msgstr "" + +#. Name of a DocType +#: website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Settings" +msgstr "" + +#. Label of a Select field in DocType 'Social Link Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "Social Link Type" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/social_login_key/social_login_key.json +msgid "Social Login Key" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Social Login Key" +msgid "Social Login Key" +msgstr "" + +#. Label of a Select field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "Social Login Provider" +msgstr "" + +#. Label of a Table field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Social Logins" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Soft-Bounced" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: public/js/frappe/views/translation_manager.js:101 +msgid "Something went wrong" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:117 +msgid "Something went wrong during the token generation. Click on {0} to generate a new one." +msgstr "" + +#: templates/includes/login/login.js:294 +msgid "Something went wrong." +msgstr "" + +#: public/js/frappe/views/pageview.js:114 +msgid "Sorry! I could not find what you were looking for." +msgstr "" + +#: public/js/frappe/views/pageview.js:122 +msgid "Sorry! You are not permitted to view this page." +msgstr "" + +#: public/js/frappe/utils/datatable.js:6 +msgid "Sort Ascending" +msgstr "" + +#: public/js/frappe/utils/datatable.js:7 +msgid "Sort Descending" +msgstr "" + +#. Label of a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Sort Field" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Sort Options" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Sort Options" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Sort Options" +msgstr "" + +#. Label of a Select field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Sort Order" +msgstr "" + +#: core/doctype/doctype/doctype.py:1499 +msgid "Sort field {0} must be a valid fieldname" +msgstr "" + +#: public/js/frappe/ui/toolbar/about.js:8 public/js/frappe/utils/utils.js:1706 +#: website/report/website_analytics/website_analytics.js:38 +msgid "Source" +msgstr "" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Source" +msgstr "" + +#. Label of a Small Text field in DocType 'Website Route Redirect' +#: website/doctype/website_route_redirect/website_route_redirect.json +msgctxt "Website Route Redirect" +msgid "Source" +msgstr "" + +#. Label of a Data field in DocType 'Dashboard Chart Source' +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgctxt "Dashboard Chart Source" +msgid "Source Name" +msgstr "" + +#: public/js/frappe/views/translation_manager.js:38 +msgid "Source Text" +msgstr "" + +#. Label of a Code field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Source Text" +msgstr "" + +#: public/js/frappe/views/workspace/blocks/spacer.js:23 +msgid "Spacer" +msgstr "" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Spam" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "SparkPost" +msgstr "" + +#: custom/doctype/custom_field/custom_field.js:83 +msgid "Special Characters are not allowed" +msgstr "" + +#: model/naming.py:61 +msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" +msgstr "" + +#. Label of a Attach Image field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Splash Image" +msgstr "" + +#: desk/reportview.py:382 public/js/frappe/web_form/web_form_list.js:175 +#: templates/print_formats/standard_macros.html:44 +msgid "Sr" +msgstr "" + +#: core/doctype/recorder/recorder.js:33 +msgid "Stack Trace" +msgstr "" + +#. Label of a HTML field in DocType 'Recorder Query' +#: core/doctype/recorder_query/recorder_query.json +msgctxt "Recorder Query" +msgid "Stack Trace" +msgstr "" + +#: core/doctype/user_type/user_type_list.js:5 +msgid "Standard" +msgstr "" + +#. Label of a Check field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Standard" +msgstr "" + +#. Label of a Select field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Standard" +msgstr "" + +#. Label of a Select field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Standard" +msgstr "" + +#. Label of a Check field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Standard" +msgstr "" + +#. Label of a Check field in DocType 'Print Style' +#: printing/doctype/print_style/print_style.json +msgctxt "Print Style" +msgid "Standard" +msgstr "" + +#. Label of a Check field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Standard" +msgstr "" + +#: model/delete_doc.py:78 +msgid "Standard DocType can not be deleted." +msgstr "" + +#: core/doctype/doctype/doctype.py:223 +msgid "Standard DocType cannot have default print format, use Customize Form" +msgstr "" + +#: desk/doctype/dashboard/dashboard.py:58 +msgid "Standard Not Set" +msgstr "" + +#: printing/doctype/print_format/print_format.py:73 +msgid "Standard Print Format cannot be updated" +msgstr "" + +#: printing/doctype/print_style/print_style.py:31 +msgid "Standard Print Style cannot be changed. Please duplicate to edit." +msgstr "" + +#: desk/reportview.py:333 +msgid "Standard Reports cannot be deleted" +msgstr "" + +#: desk/reportview.py:304 +msgid "Standard Reports cannot be edited" +msgstr "" + +#. Label of a Section Break field in DocType 'Portal Settings' +#: website/doctype/portal_settings/portal_settings.json +msgctxt "Portal Settings" +msgid "Standard Sidebar Menu" +msgstr "" + +#: website/doctype/web_form/web_form.js:40 +msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "Standard rich text editor with controls" +msgstr "" + +#: core/doctype/role/role.py:65 +msgid "Standard roles cannot be disabled" +msgstr "" + +#: core/doctype/role/role.py:51 +msgid "Standard roles cannot be renamed" +msgstr "" + +#: core/doctype/user_type/user_type.py:60 +msgid "Standard user type {0} can not be deleted." +msgstr "" + +#: templates/emails/energy_points_summary.html:33 +msgid "Standings" +msgstr "" + +#: core/doctype/recorder/recorder_list.js:87 printing/page/print/print.js:296 +#: printing/page/print/print.js:343 +msgid "Start" +msgstr "" + +#: public/js/frappe/utils/common.js:409 +msgid "Start Date" +msgstr "" + +#. Label of a Date field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "Start Date" +msgstr "" + +#. Label of a Date field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Start Date" +msgstr "" + +#. Label of a Datetime field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Start Date" +msgstr "" + +#. Label of a Select field in DocType 'Calendar View' +#: desk/doctype/calendar_view/calendar_view.json +msgctxt "Calendar View" +msgid "Start Date Field" +msgstr "" + +#: core/doctype/data_import/data_import.js:110 +msgid "Start Import" +msgstr "" + +#: core/doctype/recorder/recorder_list.js:201 +msgid "Start Recording" +msgstr "" + +#. Label of a Datetime field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Start Time" +msgstr "" + +#: templates/includes/comments/comments.html:8 +msgid "Start a new discussion" +msgstr "" + +#: core/doctype/data_export/exporter.py:22 +msgid "Start entering data below this line" +msgstr "" + +#: 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' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "StartTLS" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Started" +msgstr "" + +#. Label of a Datetime field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Started At" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:274 +msgid "Starting Frappe ..." +msgstr "" + +#. Label of a Datetime field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Starts on" +msgstr "" + +#: workflow/doctype/workflow/workflow.js:162 +msgid "State" +msgstr "" + +#. Label of a Data field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "State" +msgstr "" + +#. Label of a Data field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "State" +msgstr "" + +#. Label of a Link field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "State" +msgstr "" + +#. Label of a Data field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "State" +msgstr "" + +#. Label of a Link field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "State" +msgstr "" + +#. Label of a Data field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "State/Province" +msgstr "" + +#. Label of a Table field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "States" +msgstr "" + +#. Label of a Table field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "States" +msgstr "" + +#. Label of a Section Break field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "States" +msgstr "" + +#. Label of a Table field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Static Parameters" +msgstr "" + +#. Label of a Section Break field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Statistics" +msgstr "" + +#: public/js/frappe/form/dashboard.js:43 +#: public/js/frappe/form/templates/form_dashboard.html:13 +msgid "Stats" +msgstr "" + +#. Label of a Section Break field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Stats" +msgstr "" + +#. Label of a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Stats Time Interval" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:389 +msgid "Stats based on last month's performance (from {0} to {1})" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:391 +msgid "Stats based on last week's performance (from {0} to {1})" +msgstr "" + +#: core/doctype/data_import/data_import.js:489 +#: public/js/frappe/views/reports/report_view.js:908 +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Status" +msgstr "" + +#. Label of a Section Break field in DocType 'Communication' +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Email Queue Recipient' +#: email/doctype/email_queue_recipient/email_queue_recipient.json +msgctxt "Email Queue Recipient" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Status" +msgstr "" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Personal Data Deletion Request' +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgctxt "Personal Data Deletion Request" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Personal Data Deletion Step' +#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgctxt "Personal Data Deletion Step" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Prepared Report' +#: core/doctype/prepared_report/prepared_report.json +msgctxt "Prepared Report" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Status" +msgstr "" + +#. Label of a Data field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Scheduled Job Log' +#: core/doctype/scheduled_job_log/scheduled_job_log.json +msgctxt "Scheduled Job Log" +msgid "Status" +msgstr "" + +#. Label of a Section Break field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Submission Queue' +#: core/doctype/submission_queue/submission_queue.json +msgctxt "Submission Queue" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'ToDo' +#: desk/doctype/todo/todo.json +msgctxt "ToDo" +msgid "Status" +msgstr "" + +#. Label of a Select field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Status" +msgstr "" + +#: www/update-password.html:161 +msgid "Status Updated" +msgstr "" + +#: www/message.html:40 +msgid "Status: {0}" +msgstr "" + +#. Label of a Link field in DocType 'Onboarding Step Map' +#: desk/doctype/onboarding_step_map/onboarding_step_map.json +msgctxt "Onboarding Step Map" +msgid "Step" +msgstr "" + +#. Label of a Table field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Steps" +msgstr "" + +#. Label of a Table field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Steps" +msgstr "" + +#: www/qrcode.html:11 +msgid "Steps to verify your login" +msgstr "" + +#: core/doctype/recorder/recorder_list.js:87 +msgid "Stop" +msgstr "" + +#. Label of a Check field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Stopped" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Store Attached PDF Document" +msgstr "" + +#. Description of the 'Last Known Versions' (Text) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +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' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Stores the datetime when the last reset password key was generated." +msgstr "" + +#: utils/password_strength.py:97 +msgid "Straight rows of keys are easy to guess" +msgstr "" + +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Strip EXIF tags from uploaded images" +msgstr "" + +#: public/js/frappe/form/controls/password.js:90 +msgid "Strong" +msgstr "" + +#. Label of a Tab Break field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Style" +msgstr "" + +#. Label of a Select field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Style" +msgstr "" + +#. Label of a Section Break field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Style Settings" +msgstr "" + +#. Description of the 'Style' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange" +msgstr "" + +#. Label of a Tab Break field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Stylesheet" +msgstr "" + +#. Description of the 'Fraction' (Data) field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Sub-currency. For e.g. \"Cent\"" +msgstr "" + +#. Description of the 'Subdomain' (Small Text) field in DocType 'Website +#. Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Sub-domain provided by erpnext.com" +msgstr "" + +#. Label of a Small Text field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Subdomain" +msgstr "" + +#: public/js/frappe/views/communication.js:107 +#: public/js/frappe/views/inbox/inbox_view.js:63 +msgid "Subject" +msgstr "" + +#. Label of a Small Text field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Subject" +msgstr "" + +#. Label of a Data field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Subject" +msgstr "" + +#. Label of a Text field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Subject" +msgstr "" + +#. Label of a Small Text field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Subject" +msgstr "" + +#. Label of a Data field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "Subject" +msgstr "" + +#. Label of a Small Text field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Subject" +msgstr "" + +#. Label of a Small Text field in DocType 'Newsletter' +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Subject" +msgstr "" + +#. Label of a Data field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Subject" +msgstr "" + +#. Label of a Text field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Subject" +msgstr "" + +#. Label of a Select field in DocType 'Calendar View' +#: desk/doctype/calendar_view/calendar_view.json +msgctxt "Calendar View" +msgid "Subject Field" +msgstr "" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Subject Field" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Subject Field" +msgstr "" + +#: core/doctype/doctype/doctype.py:1874 +msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" +msgstr "" + +#. Name of a DocType +#: core/doctype/submission_queue/submission_queue.json +msgid "Submission Queue" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:138 +#: public/js/frappe/form/quick_entry.js:198 +#: public/js/frappe/form/sidebar/review.js:116 +#: public/js/frappe/ui/capture.js:307 +#: social/doctype/energy_point_log/energy_point_log.js:39 +#: social/doctype/energy_point_settings/energy_point_settings.js:47 +msgid "Submit" +msgstr "" + +#: public/js/frappe/list/list_view.js:1986 +msgctxt "Button in list view actions menu" +msgid "Submit" +msgstr "" + +#: website/doctype/web_form/templates/web_form.html:44 +msgctxt "Button in web form" +msgid "Submit" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Submit" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Submit" +msgstr "" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Submit" +msgstr "" + +#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point +#. Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Submit" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Submit" +msgstr "" + +#: public/js/frappe/ui/dialog.js:60 +msgctxt "Primary action in dialog" +msgid "Submit" +msgstr "" + +#: public/js/frappe/ui/messages.js:97 +msgctxt "Primary action of prompt dialog" +msgid "Submit" +msgstr "" + +#: public/js/frappe/desk.js:206 +msgctxt "Submit password for Email Account" +msgid "Submit" +msgstr "" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Submit" +msgstr "" + +#. Label of a Check field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Submit After Import" +msgstr "" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Submit Button Label" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:39 +msgid "Submit an Issue" +msgstr "" + +#: website/doctype/web_form/templates/web_form.html:153 +msgctxt "Button in web form" +msgid "Submit another response" +msgstr "" + +#. Label of a Check field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Submit on Creation" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:400 +msgid "Submit this document to complete this step." +msgstr "" + +#: public/js/frappe/form/form.js:1194 +msgid "Submit this document to confirm" +msgstr "" + +#: public/js/frappe/list/list_view.js:1991 +msgctxt "Title of confirmation dialog" +msgid "Submit {0} documents?" +msgstr "" + +#: public/js/frappe/model/indicator.js:95 +#: public/js/frappe/ui/filters/filter.js:495 +#: website/doctype/web_form/templates/web_form.html:133 +msgid "Submitted" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Submitted" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Submitted" +msgstr "" + +#: workflow/doctype/workflow/workflow.py:104 +msgid "Submitted Document cannot be converted back to draft. Transition row {0}" +msgstr "" + +#: 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 "" + +#: public/js/frappe/form/save.js:10 +msgctxt "Freeze message while submitting a document" +msgid "Submitting" +msgstr "" + +#: desk/doctype/bulk_update/bulk_update.py:89 +msgid "Submitting {0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Subsidiary" +msgstr "" + +#. Label of a Data field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Subtitle" +msgstr "" + +#. Label of a Data field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Subtitle" +msgstr "" + +#: core/doctype/data_import/data_import.js:465 +#: desk/doctype/bulk_update/bulk_update.js:31 +#: desk/doctype/desktop_icon/desktop_icon.py:446 +#: public/js/frappe/form/grid.js:1139 +#: public/js/frappe/views/translation_manager.js:21 +#: templates/includes/login/login.js:231 templates/includes/login/login.js:237 +#: templates/includes/login/login.js:270 templates/includes/login/login.js:278 +#: templates/pages/integrations/gcalendar-success.html:9 +#: workflow/doctype/workflow_action/workflow_action.py:166 +msgid "Success" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Success" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Success" +msgstr "" + +#. Label of a Check field in DocType 'Data Import Log' +#: core/doctype/data_import_log/data_import_log.json +msgctxt "Data Import Log" +msgid "Success" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Success" +msgstr "" + +#. Name of a DocType +#: core/doctype/success_action/success_action.json +msgid "Success Action" +msgstr "" + +#. Label of a Data field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Success Message" +msgstr "" + +#. Label of a Text field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Success Message" +msgstr "" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Success Title" +msgstr "" + +#. Label of a Data field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Success URI" +msgstr "" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Success URL" +msgstr "" + +#: www/update-password.html:79 +msgid "Success! You are good to go 👍" +msgstr "" + +#. Label of a Int field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Successful Job Count" +msgstr "" + +#: model/workflow.py:299 +msgid "Successful Transactions" +msgstr "" + +#: model/rename_doc.py:676 +msgid "Successful: {0} to {1}" +msgstr "" + +#: social/doctype/energy_point_settings/energy_point_settings.js:41 +msgid "Successfully Done" +msgstr "" + +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 +msgid "Successfully Updated" +msgstr "" + +#: core/doctype/data_import/data_import.js:429 +msgid "Successfully imported {0}" +msgstr "" + +#: core/doctype/data_import/data_import.js:144 +msgid "Successfully imported {0} out of {1} records." +msgstr "" + +#: desk/doctype/form_tour/form_tour.py:87 +msgid "Successfully reset onboarding status for all users." +msgstr "" + +#: public/js/frappe/views/translation_manager.js:22 +msgid "Successfully updated translations" +msgstr "" + +#: core/doctype/data_import/data_import.js:437 +msgid "Successfully updated {0}" +msgstr "" + +#: core/doctype/data_import/data_import.js:149 +msgid "Successfully updated {0} out of {1} records." +msgstr "" + +#: core/doctype/user/user.py:727 +msgid "Suggested Username: {0}" +msgstr "" + +#: public/js/frappe/ui/group_by/group_by.js:20 +msgid "Sum" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Sum" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Sum" +msgstr "" + +#: public/js/frappe/ui/group_by/group_by.js:328 +msgid "Sum of {0}" +msgstr "" + +#: public/js/frappe/views/interaction.js:88 +msgid "Summary" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Sunday" +msgstr "" + +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Sunday" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Sunday" +msgstr "" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Sunday" +msgstr "" + +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Sunday" +msgstr "" + +#: email/doctype/email_queue/email_queue_list.js:27 +msgid "Suspend Sending" +msgstr "" + +#: public/js/frappe/ui/capture.js:276 +msgid "Switch Camera" +msgstr "" + +#: public/js/frappe/desk.js:50 public/js/frappe/ui/theme_switcher.js:11 +msgid "Switch Theme" +msgstr "" + +#: templates/includes/navbar/navbar_login.html:17 +msgid "Switch To Desk" +msgstr "" + +#: public/js/frappe/ui/capture.js:281 +msgid "Switching Camera" +msgstr "" + +#. Label of a Data field in DocType 'Currency' +#: geo/doctype/currency/currency.json +msgctxt "Currency" +msgid "Symbol" +msgstr "" + +#. Label of a Section Break field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "Sync" +msgstr "" + +#. Label of a Section Break field in DocType 'Google Contacts' +#: integrations/doctype/google_contacts/google_contacts.json +msgctxt "Google Contacts" +msgid "Sync" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.js:28 +msgid "Sync Calendar" +msgstr "" + +#: integrations/doctype/google_contacts/google_contacts.js:28 +msgid "Sync Contacts" +msgstr "" + +#: custom/doctype/customize_form/customize_form.js:214 +msgid "Sync on Migrate" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:296 +msgid "Sync token was invalid and has been reset, Retry syncing." +msgstr "" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Sync with Google Calendar" +msgstr "" + +#. Label of a Check field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Sync with Google Contacts" +msgstr "" + +#: custom/doctype/doctype_layout/doctype_layout.js:46 +msgid "Sync {0} Fields" +msgstr "" + +#: custom/doctype/doctype_layout/doctype_layout.js:100 +msgid "Synced Fields" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.js:31 +#: integrations/doctype/google_contacts/google_contacts.js:31 +msgid "Syncing" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.js:19 +msgid "Syncing {0} of {1}" +msgstr "" + +#: utils/data.py:2427 +msgid "Syntax Error" +msgstr "" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "System" +msgstr "" + +#. Name of a DocType +#: desk/doctype/system_console/system_console.json +msgid "System Console" +msgstr "" + +#: custom/doctype/custom_field/custom_field.py:358 +msgid "System Generated Fields can not be renamed" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "System Logs" +msgstr "" + +#. Name of a role +#: automation/doctype/assignment_rule/assignment_rule.json +#: automation/doctype/auto_repeat/auto_repeat.json +#: automation/doctype/milestone/milestone.json +#: automation/doctype/milestone_tracker/milestone_tracker.json +#: contacts/doctype/address/address.json +#: contacts/doctype/address_template/address_template.json +#: contacts/doctype/contact/contact.json contacts/doctype/gender/gender.json +#: contacts/doctype/salutation/salutation.json +#: core/doctype/access_log/access_log.json +#: core/doctype/activity_log/activity_log.json +#: core/doctype/audit_trail/audit_trail.json core/doctype/comment/comment.json +#: core/doctype/communication/communication.json +#: core/doctype/custom_docperm/custom_docperm.json +#: core/doctype/custom_role/custom_role.json +#: core/doctype/data_export/data_export.json +#: core/doctype/data_import/data_import.json +#: core/doctype/data_import_log/data_import_log.json +#: core/doctype/deleted_document/deleted_document.json +#: core/doctype/docshare/docshare.json core/doctype/doctype/doctype.json +#: core/doctype/document_naming_rule/document_naming_rule.json +#: core/doctype/document_naming_settings/document_naming_settings.json +#: core/doctype/document_share_key/document_share_key.json +#: core/doctype/domain/domain.json +#: core/doctype/domain_settings/domain_settings.json +#: core/doctype/error_log/error_log.json core/doctype/file/file.json +#: core/doctype/installed_applications/installed_applications.json +#: core/doctype/language/language.json +#: core/doctype/log_settings/log_settings.json +#: core/doctype/module_def/module_def.json +#: core/doctype/module_profile/module_profile.json +#: core/doctype/navbar_settings/navbar_settings.json +#: core/doctype/package/package.json +#: core/doctype/package_import/package_import.json +#: core/doctype/package_release/package_release.json +#: core/doctype/page/page.json core/doctype/patch_log/patch_log.json +#: core/doctype/permission_inspector/permission_inspector.json +#: core/doctype/prepared_report/prepared_report.json +#: core/doctype/report/report.json core/doctype/role/role.json +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: core/doctype/role_profile/role_profile.json core/doctype/rq_job/rq_job.json +#: core/doctype/rq_worker/rq_worker.json +#: core/doctype/scheduled_job_log/scheduled_job_log.json +#: core/doctype/scheduled_job_type/scheduled_job_type.json +#: core/doctype/session_default_settings/session_default_settings.json +#: core/doctype/sms_log/sms_log.json +#: core/doctype/sms_settings/sms_settings.json +#: core/doctype/submission_queue/submission_queue.json +#: core/doctype/success_action/success_action.json +#: core/doctype/system_settings/system_settings.json +#: core/doctype/translation/translation.json core/doctype/user/user.json +#: core/doctype/user_group/user_group.json +#: core/doctype/user_permission/user_permission.json +#: core/doctype/user_type/user_type.json core/doctype/version/version.json +#: core/doctype/view_log/view_log.json +#: custom/doctype/client_script/client_script.json +#: custom/doctype/custom_field/custom_field.json +#: custom/doctype/customize_form/customize_form.json +#: custom/doctype/doctype_layout/doctype_layout.json +#: custom/doctype/property_setter/property_setter.json +#: desk/doctype/bulk_update/bulk_update.json +#: desk/doctype/calendar_view/calendar_view.json +#: desk/doctype/console_log/console_log.json +#: desk/doctype/custom_html_block/custom_html_block.json +#: desk/doctype/dashboard/dashboard.json +#: desk/doctype/dashboard_chart/dashboard_chart.json +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: desk/doctype/desktop_icon/desktop_icon.json desk/doctype/event/event.json +#: desk/doctype/form_tour/form_tour.json +#: desk/doctype/global_search_settings/global_search_settings.json +#: desk/doctype/kanban_board/kanban_board.json +#: desk/doctype/list_view_settings/list_view_settings.json +#: desk/doctype/module_onboarding/module_onboarding.json +#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json +#: desk/doctype/route_history/route_history.json +#: desk/doctype/system_console/system_console.json desk/doctype/tag/tag.json +#: desk/doctype/tag_link/tag_link.json desk/doctype/todo/todo.json +#: email/doctype/auto_email_report/auto_email_report.json +#: email/doctype/document_follow/document_follow.json +#: email/doctype/email_account/email_account.json +#: email/doctype/email_domain/email_domain.json +#: email/doctype/email_flag_queue/email_flag_queue.json +#: email/doctype/email_queue/email_queue.json +#: email/doctype/email_rule/email_rule.json +#: email/doctype/email_template/email_template.json +#: email/doctype/email_unsubscribe/email_unsubscribe.json +#: email/doctype/notification/notification.json +#: email/doctype/unhandled_email/unhandled_email.json +#: geo/doctype/country/country.json geo/doctype/currency/currency.json +#: integrations/doctype/connected_app/connected_app.json +#: integrations/doctype/dropbox_settings/dropbox_settings.json +#: integrations/doctype/google_calendar/google_calendar.json +#: integrations/doctype/google_contacts/google_contacts.json +#: integrations/doctype/google_drive/google_drive.json +#: integrations/doctype/google_settings/google_settings.json +#: integrations/doctype/integration_request/integration_request.json +#: integrations/doctype/ldap_settings/ldap_settings.json +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: integrations/doctype/oauth_client/oauth_client.json +#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: integrations/doctype/push_notification_settings/push_notification_settings.json +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +#: integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: integrations/doctype/social_login_key/social_login_key.json +#: integrations/doctype/token_cache/token_cache.json +#: integrations/doctype/webhook/webhook.json +#: integrations/doctype/webhook_request_log/webhook_request_log.json +#: printing/doctype/letter_head/letter_head.json +#: printing/doctype/network_printer_settings/network_printer_settings.json +#: printing/doctype/print_format/print_format.json +#: printing/doctype/print_format_field_template/print_format_field_template.json +#: printing/doctype/print_heading/print_heading.json +#: printing/doctype/print_settings/print_settings.json +#: printing/doctype/print_style/print_style.json +#: social/doctype/energy_point_log/energy_point_log.json +#: social/doctype/energy_point_rule/energy_point_rule.json +#: social/doctype/energy_point_settings/energy_point_settings.json +#: website/doctype/discussion_reply/discussion_reply.json +#: website/doctype/discussion_topic/discussion_topic.json +#: website/doctype/marketing_campaign/marketing_campaign.json +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: website/doctype/personal_data_download_request/personal_data_download_request.json +#: website/doctype/web_page_view/web_page_view.json +#: website/doctype/web_template/web_template.json +#: website/doctype/website_route_meta/website_route_meta.json +#: workflow/doctype/workflow/workflow.json +#: workflow/doctype/workflow_action_master/workflow_action_master.json +#: workflow/doctype/workflow_state/workflow_state.json +msgid "System Manager" +msgstr "" + +#: desk/page/backups/backups.js:36 +msgid "System Manager privileges required." +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "System Notification" +msgstr "" + +#. Label of a Section Break field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "System Notifications" +msgstr "" + +#. Label of a Check field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "System Page" +msgstr "" + +#. Name of a DocType +#: core/doctype/system_settings/system_settings.json +msgid "System Settings" +msgstr "" + +#. Label of a shortcut in the Build Workspace +#: core/workspace/build/build.json +msgctxt "System Settings" +msgid "System Settings" +msgstr "" + +#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType +#. 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "System managers are allowed by default" +msgstr "" + +#: public/js/frappe/utils/number_systems.js:5 +msgctxt "Number system" +msgid "T" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Tab Break" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Tab Break" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Tab Break" +msgstr "" + +#: core/doctype/data_export/exporter.py:23 +#: printing/page/print_format_builder/print_format_builder_field.html:38 +msgid "Table" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Table" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Table" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Table" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Table" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Table Break" +msgstr "" + +#: core/doctype/version/version_view.html:72 +msgid "Table Field" +msgstr "" + +#. Label of a Data field in DocType 'DocType Link' +#: core/doctype/doctype_link/doctype_link.json +msgctxt "DocType Link" +msgid "Table Fieldname" +msgstr "" + +#: core/doctype/doctype/doctype.py:1152 +msgid "Table Fieldname Missing" +msgstr "" + +#. Label of a HTML field in DocType 'Version' +#: core/doctype/version/version.json +msgctxt "Version" +msgid "Table HTML" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Table MultiSelect" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Table MultiSelect" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Table MultiSelect" +msgstr "" + +#: public/js/frappe/form/grid.js:1138 +msgid "Table updated" +msgstr "" + +#: model/document.py:1370 +msgid "Table {0} cannot be empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Tabloid" +msgstr "" + +#. Name of a DocType +#: desk/doctype/tag/tag.json +msgid "Tag" +msgstr "" + +#. Name of a DocType +#: desk/doctype/tag_link/tag_link.json +msgid "Tag Link" +msgstr "" + +#: model/meta.py:52 public/js/frappe/form/templates/form_sidebar.html:100 +#: public/js/frappe/list/bulk_operations.js:400 +#: public/js/frappe/list/list_sidebar.html:50 +#: public/js/frappe/list/list_sidebar.js:226 public/js/frappe/model/meta.js:204 +#: public/js/frappe/model/model.js:123 +#: public/js/frappe/ui/toolbar/awesome_bar.js:171 +msgid "Tags" +msgstr "" + +#: integrations/doctype/google_drive/google_drive.js:29 +msgid "Take Backup" +msgstr "" + +#: integrations/doctype/dropbox_settings/dropbox_settings.js:39 +#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:12 +msgid "Take Backup Now" +msgstr "" + +#: public/js/frappe/ui/capture.js:220 +msgid "Take Photo" +msgstr "" + +#. Label of a Data field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Target" +msgstr "" + +#. Label of a Small Text field in DocType 'Website Route Redirect' +#: website/doctype/website_route_redirect/website_route_redirect.json +msgctxt "Website Route Redirect" +msgid "Target" +msgstr "" + +#: desk/doctype/todo/todo_calendar.js:19 desk/doctype/todo/todo_calendar.js:25 +msgid "Task" +msgstr "" + +#: www/about.html:45 +msgid "Team Members" +msgstr "" + +#. Label of a Section Break field in DocType 'About Us Settings' +#. Label of a Table field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Team Members" +msgstr "" + +#. Label of a Data field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Team Members Heading" +msgstr "" + +#. Label of a Small Text field in DocType 'About Us Settings' +#: website/doctype/about_us_settings/about_us_settings.json +msgctxt "About Us Settings" +msgid "Team Members Subtitle" +msgstr "" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Telemetry" +msgstr "" + +#. Label of a Code field in DocType 'Address Template' +#: contacts/doctype/address_template/address_template.json +msgctxt "Address Template" +msgid "Template" +msgstr "" + +#. Label of a Link field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Template" +msgstr "" + +#. Label of a Code field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Template" +msgstr "" + +#. Label of a Code field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Template" +msgstr "" + +#: core/doctype/data_import/importer.py:464 +#: core/doctype/data_import/importer.py:591 +msgid "Template Error" +msgstr "" + +#. Label of a Data field in DocType 'Print Format Field Template' +#: printing/doctype/print_format_field_template/print_format_field_template.json +msgctxt "Print Format Field Template" +msgid "Template File" +msgstr "" + +#. Label of a Code field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Template Options" +msgstr "" + +#. Label of a Code field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Template Warnings" +msgstr "" + +#: public/js/frappe/views/workspace/blocks/paragraph.js:78 +msgid "Templates" +msgstr "" + +#: core/doctype/user/user.py:1023 +msgid "Temporarily Disabled" +msgstr "" + +#: email/doctype/newsletter/newsletter.py:94 +msgid "Test email sent to {0}" +msgstr "" + +#: core/doctype/file/test_file.py:361 +msgid "Test_Folder" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Text" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Text" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Text" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Text" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: website/doctype/web_template_field/web_template_field.json +msgctxt "Web Template Field" +msgid "Text" +msgstr "" + +#. Label of a Select field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Text Align" +msgstr "" + +#. Label of a Link field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Text Color" +msgstr "" + +#. Label of a Code field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Text Content" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Text Editor" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Text Editor" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Text Editor" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Text Editor" +msgstr "" + +#: templates/emails/password_reset.html:5 +msgid "Thank you" +msgstr "" + +#: www/contact.py:37 +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 "" + +#: website/doctype/web_form/templates/web_form.html:137 +msgid "Thank you for spending your valuable time to fill this form" +msgstr "" + +#: templates/emails/auto_reply.html:1 +msgid "Thank you for your email" +msgstr "" + +#: website/doctype/help_article/templates/help_article.html:27 +msgid "Thank you for your feedback!" +msgstr "" + +#: email/doctype/newsletter/newsletter.py:332 +msgid "Thank you for your interest in subscribing to our updates" +msgstr "" + +#: templates/emails/new_user.html:16 +msgid "Thanks" +msgstr "" + +#: templates/emails/auto_repeat_fail.html:3 +msgid "The Auto Repeat for this document has been disabled." +msgstr "" + +#: public/js/frappe/form/grid.js:1161 +msgid "The CSV format is case sensitive" +msgstr "" + +#. Description of the 'Client ID' (Data) field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "The Client ID obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "" + +#: email/doctype/notification/notification.py:130 +msgid "The Condition '{0}' is invalid" +msgstr "" + +#: core/doctype/file/file.py:205 +msgid "The File URL you've entered is incorrect" +msgstr "" + +#: 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 "" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:363 +msgid "The User record for this request has been auto-deleted due to inactivity by system admins." +msgstr "" + +#: public/js/frappe/desk.js:127 +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' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "The application name will be used in the Login page." +msgstr "" + +#: public/js/frappe/views/interaction.js:324 +msgid "The attachments could not be correctly linked to the new document" +msgstr "" + +#. Description of the 'API Key' (Data) field in DocType 'Google Settings' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "The browser API key obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "" + +#: database/database.py:425 +msgid "The changes have been reverted." +msgstr "" + +#: core/doctype/data_import/importer.py:959 +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 "" + +#: templates/includes/comments/comments.py:34 +msgid "The comment cannot be empty" +msgstr "" + +#: public/js/frappe/list/list_view.js:629 +msgid "The count shown is an estimated count. Click here to see the accurate count." +msgstr "" + +#: public/js/frappe/views/interaction.js:301 +msgid "The document could not be correctly assigned" +msgstr "" + +#: 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' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "The document type selected is a child table, so the parent document type is required." +msgstr "" + +#. Description of the 'Parent Document Type' (Link) field in DocType 'Number +#. Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "The document type selected is a child table, so the parent document type is required." +msgstr "" + +#: core/doctype/user_type/user_type.py:109 +msgid "The field {0} is mandatory" +msgstr "" + +#: core/doctype/file/file.py:143 +msgid "The fieldname you've specified in Attached To Field is invalid" +msgstr "" + +#: automation/doctype/assignment_rule/assignment_rule.py:60 +msgid "The following Assignment Days have been repeated: {0}" +msgstr "" + +#: 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 "" + +#: core/doctype/data_import/importer.py:1030 +msgid "The following values are invalid: {0}. Values must be one of {1}" +msgstr "" + +#: core/doctype/data_import/importer.py:993 +msgid "The following values do not exist for {0}: {1}" +msgstr "" + +#: core/doctype/user_type/user_type.py:88 +msgid "The limit has not set for the user type {0} in the site config file." +msgstr "" + +#: templates/emails/login_with_email_link.html:21 +msgid "The link will expire in {0} minutes" +msgstr "" + +#: www/login.py:179 +msgid "The link you trying to login is invalid or expired." +msgstr "" + +#: 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 "" + +#: 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' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "The name that will appear in Google Calendar" +msgstr "" + +#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "The next tour will start from where the user left off." +msgstr "" + +#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "The number of seconds until the request expires" +msgstr "" + +#: www/404.html:18 +msgid "The page you are looking for has gone missing." +msgstr "" + +#: www/update-password.html:86 +msgid "The password of your account has expired." +msgstr "" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:394 +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' +#: integrations/doctype/google_settings/google_settings.json +msgctxt "Google Settings" +msgid "The project number obtained from Google Cloud Console under \n" +"\"IAM & Admin\" > \"Settings\"\n" +"" +msgstr "" + +#: core/doctype/user/user.py:983 +msgid "The reset password link has been expired" +msgstr "" + +#: core/doctype/user/user.py:985 +msgid "The reset password link has either been used before or is invalid" +msgstr "" + +#: app.py:363 public/js/frappe/request.js:147 +msgid "The resource you are looking for is not available" +msgstr "" + +#: core/doctype/user_type/user_type.py:113 +msgid "The role {0} should be a custom role." +msgstr "" + +#: core/doctype/audit_trail/audit_trail.py:46 +msgid "The selected document {0} is not a {1}." +msgstr "" + +#: utils/response.py:317 +msgid "The system is being updated. Please refresh again after a few moments." +msgstr "" + +#: 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 "" + +#: public/js/frappe/form/grid_row.js:636 +msgid "The total column width cannot be more than 10." +msgstr "" + +#: core/doctype/user_type/user_type.py:96 +msgid "The total number of user document types limit has been crossed." +msgstr "" + +#. Description of the 'User Field' (Select) field in DocType 'Energy Point +#. Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "The user from this field will be rewarded points" +msgstr "" + +#: public/js/frappe/form/controls/data.js:24 +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' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "The webhook will be triggered if this expression is true" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.py:169 +msgid "The {0} is already on auto repeat {1}" +msgstr "" + +#. Label of a Section Break field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Theme" +msgstr "" + +#. Label of a Data field in DocType 'Website Theme' +#. Label of a Code field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Theme" +msgstr "" + +#: public/js/frappe/ui/theme_switcher.js:130 +msgid "Theme Changed" +msgstr "" + +#. Label of a Tab Break field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Theme Configuration" +msgstr "" + +#. Label of a Data field in DocType 'Website Theme' +#: website/doctype/website_theme/website_theme.json +msgctxt "Website Theme" +msgid "Theme URL" +msgstr "" + +#: 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 "" + +#: public/js/frappe/ui/notifications/notifications.js:428 +msgid "There are no upcoming events for you." +msgstr "" + +#: website/web_template/discussions/discussions.html:3 +msgid "There are no {0} for this {1}, why don't you start one!" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:891 +msgid "There are {0} with the same filters already in the queue:" +msgstr "" + +#: website/doctype/web_form/web_form.js:81 +#: website/doctype/web_form/web_form.js:317 +msgid "There can be only 9 Page Break fields in a Web Form" +msgstr "" + +#: core/doctype/doctype/doctype.py:1392 +msgid "There can be only one Fold in a form" +msgstr "" + +#: contacts/doctype/address/address.py:183 +msgid "There is an error in your Address Template {0}" +msgstr "" + +#: core/doctype/data_export/exporter.py:162 +msgid "There is no data to be exported" +msgstr "" + +#: core/doctype/file/file.py:571 utils/file_manager.py:372 +msgid "There is some problem with the file url: {0}" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:888 +msgid "There is {0} with the same filters already in the queue:" +msgstr "" + +#: core/page/permission_manager/permission_manager.py:155 +msgid "There must be atleast one permission rule." +msgstr "" + +#: core/doctype/user/user.py:535 +msgid "There should remain at least one System Manager" +msgstr "" + +#: www/error.py:16 +msgid "There was an error building this page" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:180 +msgid "There was an error saving filters" +msgstr "" + +#: public/js/frappe/form/sidebar/attachments.js:201 +msgid "There were errors" +msgstr "" + +#: public/js/frappe/views/interaction.js:276 +msgid "There were errors while creating the document. Please try again." +msgstr "" + +#: public/js/frappe/views/communication.js:820 +msgid "There were errors while sending email. Please try again." +msgstr "" + +#: model/naming.py:470 +msgid "There were some errors setting the name, please contact the administrator" +msgstr "" + +#: www/404.html:15 +msgid "There's nothing here" +msgstr "" + +#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType +#. 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "These settings are required if 'Custom' LDAP Directory is used" +msgstr "" + +#. Description of the 'Defaults' (Section Break) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +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 "" + +#: www/third_party_apps.html:3 www/third_party_apps.html:13 +msgid "Third Party Apps" +msgstr "" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Third Party Authentication" +msgstr "" + +#: geo/doctype/currency/currency.js:8 +msgid "This Currency is disabled. Enable to use in transactions" +msgstr "" + +#: geo/utils.py:84 +msgid "This Doctype does not contain latitude and longitude fields" +msgstr "" + +#: geo/utils.py:67 +msgid "This Doctype does not contain location fields" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:388 +msgid "This Kanban Board will be private" +msgstr "" + +#: __init__.py:1013 +msgid "This action is only allowed for {}" +msgstr "" + +#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:725 +msgid "This cannot be undone" +msgstr "" + +#. Description of the 'Is Public' (Check) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +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' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "This chart will be available to all Users if this is set" +msgstr "" + +#: desk/doctype/workspace/workspace.js:23 +msgid "This document allows you to edit limited fields. For all kinds of workspace customization, use the Edit button located on the workspace page" +msgstr "" + +#: model/delete_doc.py:112 +msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:90 +msgid "This document cannot be reverted" +msgstr "" + +#: www/confirm_workflow_action.html:8 +msgid "This document has been modified after the email was sent." +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.js:8 +msgid "This document has been reverted" +msgstr "" + +#: public/js/frappe/form/form.js:1075 +msgid "This document is already amended, you cannot ammend it again" +msgstr "" + +#: model/document.py:1537 +msgid "This document is currently locked and queued for execution. Please try again after some time." +msgstr "" + +#: templates/emails/auto_repeat_fail.html:7 +msgid "This email is autogenerated" +msgstr "" + +#: printing/doctype/network_printer_settings/network_printer_settings.py:30 +msgid "This feature can not be used as dependencies are missing.\n" +"\t\t\t\tPlease contact your system manager to enable this by installing pycups!" +msgstr "" + +#: public/js/frappe/form/templates/form_sidebar.html:23 +msgid "This feature is brand new and still experimental" +msgstr "" + +#. Description of the 'Depends On' (Code) field in DocType 'Customize Form +#. Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" +"myfield\n" +"eval:doc.myfield=='My Value'\n" +"eval:doc.age>18" +msgstr "" + +#: core/doctype/file/file.js:10 +msgid "This file is public. It can be accessed without authentication." +msgstr "" + +#: public/js/frappe/form/form.js:1172 +msgid "This form has been modified after you have loaded it" +msgstr "" + +#: public/js/frappe/form/form.js:457 +msgid "This form is not editable due to a Workflow." +msgstr "" + +#. Description of the 'Is Default' (Check) field in DocType 'Address Template' +#: contacts/doctype/address_template/address_template.json +msgctxt "Address Template" +msgid "This format is used if country specific format is not found" +msgstr "" + +#. Description of the 'Header' (HTML Editor) field in DocType 'Website +#. Slideshow' +#: website/doctype/website_slideshow/website_slideshow.json +msgctxt "Website Slideshow" +msgid "This goes above the slideshow." +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:2012 +msgid "This is a background report. Please set the appropriate filters and then generate a new one." +msgstr "" + +#: utils/password_strength.py:158 +msgid "This is a top-10 common password." +msgstr "" + +#: utils/password_strength.py:160 +msgid "This is a top-100 common password." +msgstr "" + +#: utils/password_strength.py:162 +msgid "This is a very common password." +msgstr "" + +#: core/doctype/rq_job/rq_job.js:9 +msgid "This is a virtual doctype and data is cleared periodically." +msgstr "" + +#: templates/emails/auto_reply.html:5 +msgid "This is an automatically generated reply" +msgstr "" + +#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog +#. Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "This is an example Google SERP Preview." +msgstr "" + +#: utils/password_strength.py:164 +msgid "This is similar to a commonly used password." +msgstr "" + +#. Description of the 'Current Value' (Int) field in DocType 'Document Naming +#. Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "This is the number of the last created transaction with this prefix" +msgstr "" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:403 +msgid "This link has already been activated for verification." +msgstr "" + +#: utils/verified_command.py:49 +msgid "This link is invalid or expired. Please make sure you have pasted correctly." +msgstr "" + +#: printing/page/print/print.js:410 +msgid "This may get printed on multiple pages" +msgstr "" + +#: utils/goal.py:109 +msgid "This month" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:223 +msgid "This newsletter is scheduled to be sent on {0}" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:50 +msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:963 +msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." +msgstr "" + +#: templates/emails/auto_email_report.html:57 +msgid "This report was generated on {0}" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:786 +msgid "This report was generated {0}." +msgstr "" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:118 +msgid "This request has not yet been approved by the user." +msgstr "" + +#: templates/includes/navbar/navbar_items.html:95 +msgid "This site is in read only mode, full functionality will be restored soon." +msgstr "" + +#: core/doctype/doctype/doctype.js:76 +msgid "This site is running in developer mode. Any change made here will be updated in code." +msgstr "" + +#: website/doctype/web_page/web_page.js:71 +msgid "This title will be used as the title of the webpage as well as in meta tags" +msgstr "" + +#: public/js/frappe/form/controls/base_input.js:120 +msgid "This value is fetched from {0}'s {1} field" +msgstr "" + +#: website/doctype/web_page/web_page.js:85 +msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" +msgstr "" + +#. Description of the 'Callback Message' (Small Text) field in DocType +#. 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "This will be shown in a modal after routing" +msgstr "" + +#. Description of the 'Report Description' (Data) field in DocType 'Onboarding +#. Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "This will be shown to the user in a dialog after routing to the report" +msgstr "" + +#: www/third_party_apps.html:21 +msgid "This will log out {0} from all other devices" +msgstr "" + +#: templates/emails/delete_data_confirmation.html:3 +msgid "This will permanently remove your data." +msgstr "" + +#: desk/doctype/form_tour/form_tour.js:103 +msgid "This will reset this tour and show it to all users. Are you sure?" +msgstr "" + +#: core/doctype/rq_job/rq_job.js:15 +msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgstr "" + +#: core/doctype/user/user.py:1243 +msgid "Throttled" +msgstr "" + +#. Label of a Small Text field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Thumbnail URL" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Thursday" +msgstr "" + +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Thursday" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Thursday" +msgstr "" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Thursday" +msgstr "" + +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Thursday" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:118 +msgid "Time" +msgstr "" + +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Time" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Time" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Time" +msgstr "" + +#. Label of a Datetime field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Time" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Time" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Time" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: website/doctype/web_form_field/web_form_field.json +msgctxt "Web Form Field" +msgid "Time" +msgstr "" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Time Format" +msgstr "" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Time Interval" +msgstr "" + +#. Label of a Check field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Time Series" +msgstr "" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Time Series Based On" +msgstr "" + +#. Label of a Duration field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Time Taken" +msgstr "" + +#. Label of a Int field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Time Window (Seconds)" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:395 +msgid "Time Zone" +msgstr "" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Time Zone" +msgstr "" + +#. Label of a Autocomplete field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Time Zone" +msgstr "" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Time Zone" +msgstr "" + +#. Label of a Text field in DocType 'Country' +#: geo/doctype/country/country.json +msgctxt "Country" +msgid "Time Zones" +msgstr "" + +#. Label of a Data field in DocType 'Country' +#: geo/doctype/country/country.json +msgctxt "Country" +msgid "Time format" +msgstr "" + +#. Label of a Float field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "Time in Queries" +msgstr "" + +#. Description of the 'Expiry time of QR Code Image Page' (Int) field in +#. DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Time in seconds to retain QR code image on server. Min:240" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:403 +msgid "Time series based on is required to create a dashboard chart" +msgstr "" + +#: public/js/frappe/form/controls/time.js:107 +msgid "Time {0} must be in format: {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Timed Out" +msgstr "" + +#: public/js/frappe/ui/theme_switcher.js:64 +msgid "Timeless Night" +msgstr "" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Timeline" +msgstr "" + +#. Label of a Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Timeline DocType" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Timeline Field" +msgstr "" + +#. Label of a Section Break field in DocType 'Communication' +#. Label of a Table field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Timeline Links" +msgstr "" + +#. Label of a Dynamic Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Timeline Name" +msgstr "" + +#: core/doctype/doctype/doctype.py:1487 +msgid "Timeline field must be a Link or Dynamic Link" +msgstr "" + +#: core/doctype/doctype/doctype.py:1483 +msgid "Timeline field must be a valid fieldname" +msgstr "" + +#. Label of a Duration field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "Timeout" +msgstr "" + +#. Label of a Check field in DocType 'Dashboard Chart Source' +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgctxt "Dashboard Chart Source" +msgid "Timeseries" +msgstr "" + +#: desk/page/leaderboard/leaderboard.js:123 +#: public/js/frappe/ui/filters/filter.js:28 +msgid "Timespan" +msgstr "" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Timespan" +msgstr "" + +#: core/report/transaction_log_report/transaction_log_report.py:112 +msgid "Timestamp" +msgstr "" + +#. Label of a Datetime field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "Timestamp" +msgstr "" + +#. Label of a Datetime field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Timestamp" +msgstr "" + +#: core/doctype/doctype/boilerplate/controller_list.html:14 +#: core/doctype/doctype/boilerplate/controller_list.html:23 +#: public/js/frappe/views/workspace/workspace.js:610 +#: public/js/frappe/views/workspace/workspace.js:939 +#: public/js/frappe/views/workspace/workspace.js:1186 +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Blog Category' +#: website/doctype/blog_category/blog_category.json +msgctxt "Blog Category" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Blog Settings' +#: website/doctype/blog_settings/blog_settings.json +msgctxt "Blog Settings" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Discussion Topic' +#: website/doctype/discussion_topic/discussion_topic.json +msgctxt "Discussion Topic" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Help Article' +#: website/doctype/help_article/help_article.json +msgctxt "Help Article" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Module Onboarding' +#: desk/doctype/module_onboarding/module_onboarding.json +msgctxt "Module Onboarding" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Note' +#: desk/doctype/note/note.json +msgctxt "Note" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Portal Menu Item' +#: website/doctype/portal_menu_item/portal_menu_item.json +msgctxt "Portal Menu Item" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Website Sidebar' +#: website/doctype/website_sidebar/website_sidebar.json +msgctxt "Website Sidebar" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Website Sidebar Item' +#: website/doctype/website_sidebar_item/website_sidebar_item.json +msgctxt "Website Sidebar Item" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "Title" +msgstr "" + +#. Label of a Data field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Title Field" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Title Field" +msgstr "" + +#. Label of a Data field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Title Prefix" +msgstr "" + +#: core/doctype/doctype/doctype.py:1424 +msgid "Title field must be a valid fieldname" +msgstr "" + +#: website/doctype/web_page/web_page.js:70 +msgid "Title of the page" +msgstr "" + +#: public/js/frappe/views/communication.js:53 +#: public/js/frappe/views/inbox/inbox_view.js:70 +msgid "To" +msgstr "" + +#. Label of a Code field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "To" +msgstr "" + +#. Label of a Section Break field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "To" +msgstr "" + +#: website/report/website_analytics/website_analytics.js:14 +msgid "To Date" +msgstr "" + +#. Label of a Date field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "To Date" +msgstr "" + +#. Label of a Select field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "To Date Field" +msgstr "" + +#: desk/doctype/todo/todo_list.js:6 +msgid "To Do" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "ToDo" +msgid "To Do" +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:50 +msgid "To User" +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "To add dynamic subject, use jinja tags like\n\n" +"
New {{ doc.doctype }} #{{ doc.name }}
" +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "To add dynamic subject, use jinja tags like\n\n" +"
{{ doc.name }} Delivered
" +msgstr "" + +#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "To add dynamic values from the document, use jinja tags like\n\n" +"
\n" +"
{ \"id\": \"{{ doc.name }}\" }\n"
+"
\n" +"
" +msgstr "" + +#: email/doctype/auto_email_report/auto_email_report.py:107 +msgid "To allow more reports update limit in System Settings." +msgstr "" + +#. Label of a Section Break field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "To and CC" +msgstr "" + +#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto +#. Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.js:35 +msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." +msgstr "" + +#: www/login.html:73 +msgid "To enable it follow the instructions in the following link: {0}" +msgstr "" + +#: core/doctype/server_script/server_script.js:37 +msgid "To enable server scripts, read the {0}." +msgstr "" + +#: desk/doctype/onboarding_step/onboarding_step.js:18 +msgid "To export this step as JSON, link it in a Onboarding document and save the document." +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:787 +msgid "To get the updated report, click on {0}." +msgstr "" + +#: www/me.html:51 +msgid "To manage your authorized third party apps" +msgstr "" + +#. Description of the 'Console' (Code) field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "To print output use print(text)" +msgstr "" + +#: core/doctype/user_type/user_type.py:295 +msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.js:8 +msgid "To use Google Calendar, enable {0}." +msgstr "" + +#: integrations/doctype/google_contacts/google_contacts.js:8 +msgid "To use Google Contacts, enable {0}." +msgstr "" + +#: integrations/doctype/google_drive/google_drive.js:8 +msgid "To use Google Drive, enable {0}." +msgstr "" + +#. Description of the 'Enable Google indexing' (Check) field in DocType +#. 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "To use Google Indexing, enable Google Settings." +msgstr "" + +#. Description of the 'Slack Channel' (Link) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "To use Slack Channel, add a Slack Webhook URL." +msgstr "" + +#: public/js/frappe/utils/diffview.js:44 +msgid "To version" +msgstr "" + +#. Name of a DocType +#. Name of a report +#: desk/doctype/todo/todo.json desk/report/todo/todo.json +msgid "ToDo" +msgstr "" + +#. Label of a shortcut in the Tools Workspace +#: automation/workspace/tools/tools.json +msgctxt "ToDo" +msgid "ToDo" +msgstr "" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "ToDo" +msgstr "" + +#: public/js/frappe/form/controls/date.js:58 +#: public/js/frappe/views/calendar/calendar.js:268 +msgid "Today" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:55 +msgid "Today's Events" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1492 +msgid "Toggle Chart" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py +msgid "Toggle Full Width" +msgstr "" + +#: public/js/frappe/views/file/file_view.js:33 +msgid "Toggle Grid View" +msgstr "" + +#: public/js/frappe/ui/page.js:193 public/js/frappe/ui/page.js:195 +#: public/js/frappe/views/reports/report_view.js:1496 +msgid "Toggle Sidebar" +msgstr "" + +#: public/js/frappe/list/list_view.js:1727 +msgctxt "Button in list view menu" +msgid "Toggle Sidebar" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py +msgid "Toggle Theme" +msgstr "" + +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "Token" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/token_cache/token_cache.json +msgid "Token Cache" +msgstr "" + +#. Linked DocType in Connected App's connections +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Token Cache" +msgstr "" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "Token Cache" +msgstr "" + +#. Label of a Data field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "Token Type" +msgstr "" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Token URI" +msgstr "" + +#: utils/oauth.py:179 +msgid "Token is missing" +msgstr "" + +#: desk/doctype/bulk_update/bulk_update.py:69 model/workflow.py:246 +msgid "Too Many Documents" +msgstr "" + +#: rate_limiter.py:88 +msgid "Too Many Requests" +msgstr "" + +#: database/database.py:424 +msgid "Too many changes to database in single action." +msgstr "" + +#: core/doctype/user/user.py:1024 +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 +#: automation/workspace/tools/tools.json +msgid "Tools" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Top" +msgstr "" + +#. Name of a DocType +#: website/doctype/top_bar_item/top_bar_item.json +msgid "Top Bar Item" +msgstr "" + +#. Label of a Table field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Top Bar Items" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Top Center" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Top Center" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Top Left" +msgstr "" + +#: templates/emails/energy_points_summary.html:3 +msgid "Top Performer" +msgstr "" + +#: templates/emails/energy_points_summary.html:18 +msgid "Top Reviewer" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "Top Right" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Top Right" +msgstr "" + +#: templates/emails/energy_points_summary.html:33 +msgid "Top {0}" +msgstr "" + +#. Label of a Link field in DocType 'Discussion Reply' +#: website/doctype/discussion_reply/discussion_reply.json +msgctxt "Discussion Reply" +msgid "Topic" +msgstr "" + +#: desk/query_report.py:497 public/js/frappe/views/reports/print_grid.html:45 +msgid "Total" +msgstr "" + +#: public/js/frappe/ui/capture.js:259 +msgid "Total Images" +msgstr "" + +#. Label of a Int field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Total Recipients" +msgstr "" + +#. Label of a Int field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Total Subscribers" +msgstr "" + +#. Label of a Read Only field in DocType 'Newsletter Email Group' +#: email/doctype/newsletter_email_group/newsletter_email_group.json +msgctxt "Newsletter Email Group" +msgid "Total Subscribers" +msgstr "" + +#. Label of a Int field in DocType 'Newsletter' +#: email/doctype/newsletter/newsletter.json +msgctxt "Newsletter" +msgid "Total Views" +msgstr "" + +#. Label of a Duration field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Total Working Time" +msgstr "" + +#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email +#. Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Total number of emails to sync in initial sync process " +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1178 +#: public/js/frappe/views/reports/report_view.js:1474 +msgid "Totals" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1153 +msgid "Totals Row" +msgstr "" + +#. Label of a Data field in DocType 'Error Log' +#: core/doctype/error_log/error_log.json +msgctxt "Error Log" +msgid "Trace ID" +msgstr "" + +#. Label of a Code field in DocType 'Patch Log' +#: core/doctype/patch_log/patch_log.json +msgctxt "Patch Log" +msgid "Traceback" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Track Changes" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Track Changes" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Track Email Status" +msgstr "" + +#. Label of a Data field in DocType 'Milestone' +#: automation/doctype/milestone/milestone.json +msgctxt "Milestone" +msgid "Track Field" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Track Seen" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Track Steps" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Track Views" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Track Views" +msgstr "" + +#. Description of the 'Track Email Status' (Check) field in DocType 'Email +#. Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Track if your email has been opened by the recipient.\n" +"
\n" +"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" +msgstr "" + +#. Description of a DocType +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + +#: public/js/frappe/utils/utils.js:1757 +msgid "Tracking URL generated and copied to clipboard" +msgstr "" + +#. Label of a Small Text field in DocType 'Transaction Log' +#: core/doctype/transaction_log/transaction_log.json +msgctxt "Transaction Log" +msgid "Transaction Hash" +msgstr "" + +#. Name of a DocType +#: core/doctype/transaction_log/transaction_log.json +msgid "Transaction Log" +msgstr "" + +#. Name of a report +#: core/report/transaction_log_report/transaction_log_report.json +msgid "Transaction Log Report" +msgstr "" + +#. Label of a Section Break field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Transition Rules" +msgstr "" + +#. Label of a Table field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Transitions" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Translatable" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Translatable" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Translatable" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Translate Link Fields" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Translate Link Fields" +msgstr "" + +#: public/js/frappe/views/translation_manager.js:11 +msgid "Translate {0}" +msgstr "" + +#. Label of a Code field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Translated Text" +msgstr "" + +#. Name of a DocType +#: core/doctype/translation/translation.json +msgid "Translation" +msgstr "" + +#: public/js/frappe/views/translation_manager.js:46 +msgid "Translations" +msgstr "" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Trash" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Tree" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Tree" +msgstr "" + +#. Description of the 'Is Tree' (Check) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Tree structures are implemented using Nested Set" +msgstr "" + +#: public/js/frappe/views/treeview.js:20 +msgid "Tree view is not available for {0}" +msgstr "" + +#. Label of a Data field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Trigger Method" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:194 +msgid "Trigger Primary Action" +msgstr "" + +#: tests/test_translate.py:54 +msgid "Trigger caching" +msgstr "" + +#. Description of the 'Trigger Method' (Data) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:323 +msgid "Try Again" +msgstr "" + +#. Label of a Data field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Try a Naming Series" +msgstr "" + +#: printing/page/print/print.js:189 printing/page/print/print.js:195 +msgid "Try the new Print Designer" +msgstr "" + +#: utils/password_strength.py:106 +msgid "Try to avoid repeated words and characters" +msgstr "" + +#: utils/password_strength.py:98 +msgid "Try to use a longer keyboard pattern with more turns" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Tuesday" +msgstr "" + +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Tuesday" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Tuesday" +msgstr "" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Tuesday" +msgstr "" + +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Tuesday" +msgstr "" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "Two Factor Authentication" +msgstr "" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Two Factor Authentication" +msgstr "" + +#. Label of a Select field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Two Factor Authentication method" +msgstr "" + +#: public/js/frappe/views/file/file_view.js:318 +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Type" +msgstr "" + +#. Label of a Data field in DocType 'Console Log' +#: desk/doctype/console_log/console_log.json +msgctxt "Console Log" +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'Notification Log' +#: desk/doctype/notification_log/notification_log.json +msgctxt "Notification Log" +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'Web Template' +#: website/doctype/web_template/web_template.json +msgctxt "Web Template" +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Type" +msgstr "" + +#. Label of a Select field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Type" +msgstr "" + +#: desk/page/user_profile/user_profile.html:17 +msgid "Type Distribution" +msgstr "" + +#: public/js/frappe/form/controls/comment.js:78 +msgid "Type a reply / comment" +msgstr "" + +#: templates/includes/search_template.html:51 +msgid "Type something in the search box to search" +msgstr "" + +#: templates/discussions/comment_box.html:8 +#: templates/discussions/reply_section.html:53 +#: templates/discussions/topic_modal.html:11 +msgid "Type title" +msgstr "" + +#: templates/discussions/discussions.js:341 +msgid "Type your reply here..." +msgstr "" + +#: core/doctype/data_export/exporter.py:143 +msgid "Type:" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "UI Tour" +msgstr "" + +#. Label of a Check field in DocType 'Form Tour Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "UI Tour" +msgstr "" + +#. Label of a Int field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "UID" +msgstr "" + +#. Label of a Data field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "UID" +msgstr "" + +#. Label of a Data field in DocType 'Unhandled Email' +#: email/doctype/unhandled_email/unhandled_email.json +msgctxt "Unhandled Email" +msgid "UID" +msgstr "" + +#. Label of a Int field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "UIDNEXT" +msgstr "" + +#. Label of a Data field in DocType 'IMAP Folder' +#: email/doctype/imap_folder/imap_folder.json +msgctxt "IMAP Folder" +msgid "UIDNEXT" +msgstr "" + +#. Label of a Data field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "UIDVALIDITY" +msgstr "" + +#. Label of a Data field in DocType 'IMAP Folder' +#: email/doctype/imap_folder/imap_folder.json +msgctxt "IMAP Folder" +msgid "UIDVALIDITY" +msgstr "" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "UNSEEN" +msgstr "" + +#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" +"
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" +msgstr "" + +#. Label of a Small Text field in DocType 'Integration Request' +#: integrations/doctype/integration_request/integration_request.json +msgctxt "Integration Request" +msgid "URL" +msgstr "" + +#. Label of a Data field in DocType 'Top Bar Item' +#: website/doctype/top_bar_item/top_bar_item.json +msgctxt "Top Bar Item" +msgid "URL" +msgstr "" + +#. Label of a Data field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "URL" +msgstr "" + +#. Label of a Data field in DocType 'Website Slideshow Item' +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgctxt "Website Slideshow Item" +msgid "URL" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of a Data field in DocType 'Workspace Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "URL" +msgstr "" + +#. Description of the 'Documentation Link' (Data) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "URL for documentation or help" +msgstr "" + +#: core/doctype/file/file.py:216 +msgid "URL must start with http:// or https://" +msgstr "" + +#: website/doctype/web_page/web_page.js:84 +msgid "URL of the page" +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgctxt "Website Slideshow Item" +msgid "URL to go to on clicking the slideshow image" +msgstr "" + +#: core/doctype/document_naming_settings/document_naming_settings.py:67 +msgid "Unable to find DocType {0}" +msgstr "" + +#: public/js/frappe/ui/capture.js:338 +msgid "Unable to load camera." +msgstr "" + +#: public/js/frappe/model/model.js:258 +msgid "Unable to load: {0}" +msgstr "" + +#: utils/csvutils.py:35 +msgid "Unable to open attached file. Did you export it as CSV?" +msgstr "" + +#: core/doctype/file/utils.py:98 core/doctype/file/utils.py:130 +msgid "Unable to read file format for {0}" +msgstr "" + +#: core/doctype/communication/email.py:179 +msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" +msgstr "" + +#: public/js/frappe/views/calendar/calendar.js:440 +msgid "Unable to update event" +msgstr "" + +#: core/doctype/file/file.py:458 +msgid "Unable to write file format for {0}" +msgstr "" + +#. Label of a Code field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Unassign Condition" +msgstr "" + +#: www/error.py:15 +msgid "Uncaught Server Exception" +msgstr "" + +#: public/js/frappe/form/toolbar.js:93 +msgid "Unchanged" +msgstr "" + +#: public/js/frappe/form/toolbar.js:450 +msgid "Undo" +msgstr "" + +#: public/js/frappe/form/toolbar.js:458 +msgid "Undo last action" +msgstr "" + +#: public/js/frappe/form/sidebar/form_sidebar.js:232 +#: public/js/frappe/form/templates/form_sidebar.html:132 +msgid "Unfollow" +msgstr "" + +#. Name of a DocType +#: email/doctype/unhandled_email/unhandled_email.json +msgid "Unhandled Email" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:567 +msgid "Unhide Workspace" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Unique" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Unique" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Unique" +msgstr "" + +#: website/report/website_analytics/website_analytics.js:60 +msgid "Unknown" +msgstr "" + +#: public/js/frappe/model/model.js:199 +msgid "Unknown Column: {0}" +msgstr "" + +#: utils/data.py:1193 +msgid "Unknown Rounding Method: {}" +msgstr "" + +#: auth.py:293 +msgid "Unknown User" +msgstr "" + +#: utils/csvutils.py:52 +msgid "Unknown file encoding. Tried utf-8, windows-1250, windows-1252." +msgstr "" + +#: core/doctype/submission_queue/submission_queue.js:7 +msgid "Unlock Reference Document" +msgstr "" + +#: website/doctype/blog_post/blog_post.js:36 +#: website/doctype/web_form/web_form.js:86 +msgid "Unpublish" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: email/doctype/email_flag_queue/email_flag_queue.json +msgctxt "Email Flag Queue" +msgid "Unread" +msgstr "" + +#. Label of a Check field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Unread Notification Sent" +msgstr "" + +#: utils/safe_exec.py:435 +msgid "Unsafe SQL query" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:158 +#: public/js/frappe/form/controls/multicheck.js:166 +msgid "Unselect All" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Unshared" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Unshared" +msgstr "" + +#: email/queue.py:66 +msgid "Unsubscribe" +msgstr "" + +#. Label of a Data field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Unsubscribe Method" +msgstr "" + +#. Label of a Data field in DocType 'Email Queue' +#: email/doctype/email_queue/email_queue.json +msgctxt "Email Queue" +msgid "Unsubscribe Param" +msgstr "" + +#: email/queue.py:122 +msgid "Unsubscribed" +msgstr "" + +#. Label of a Check field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "Unsubscribed" +msgstr "" + +#. Label of a Check field in DocType 'Email Group Member' +#: email/doctype/email_group_member/email_group_member.json +msgctxt "Email Group Member" +msgid "Unsubscribed" +msgstr "" + +#. Label of a Check field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Unsubscribed" +msgstr "" + +#: public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "" + +#: core/doctype/file/file.js:28 +msgid "Unzip" +msgstr "" + +#: public/js/frappe/views/file/file_view.js:132 +msgid "Unzipped {0} files" +msgstr "" + +#: public/js/frappe/views/file/file_view.js:125 +msgid "Unzipping files..." +msgstr "" + +#: desk/doctype/event/event.py:256 +msgid "Upcoming Events for Today" +msgstr "" + +#: core/doctype/data_import/data_import_list.js:40 +#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 +#: custom/doctype/customize_form/customize_form.js:370 +#: desk/doctype/bulk_update/bulk_update.js:15 +#: printing/page/print_format_builder/print_format_builder.js:447 +#: printing/page/print_format_builder/print_format_builder.js:501 +#: printing/page/print_format_builder/print_format_builder.js:670 +#: printing/page/print_format_builder/print_format_builder.js:757 +#: public/js/frappe/form/grid_row.js:403 +#: public/js/frappe/views/workspace/workspace.js:658 +msgid "Update" +msgstr "" + +#. Label of a Button field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Update" +msgstr "" + +#. Label of a Button field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Update Amendment Naming" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:607 +msgid "Update Details" +msgstr "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Update Existing Records" +msgstr "" + +#. Label of a Select field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Update Field" +msgstr "" + +#: core/doctype/installed_applications/installed_applications.js:6 +#: core/doctype/installed_applications/installed_applications.js:13 +msgid "Update Hooks Resolution Order" +msgstr "" + +#: core/doctype/installed_applications/installed_applications.js:45 +msgid "Update Order" +msgstr "" + +#. Label of a Section Break field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Update Series Counter" +msgstr "" + +#. Label of a Button field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "Update Series Number" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Update Settings" +msgstr "" + +#: public/js/frappe/views/translation_manager.js:13 +msgid "Update Translations" +msgstr "" + +#. Label of a Small Text field in DocType 'Bulk Update' +#: desk/doctype/bulk_update/bulk_update.json +msgctxt "Bulk Update" +msgid "Update Value" +msgstr "" + +#. Label of a Data field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Update Value" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:345 +msgid "Update {0} records" +msgstr "" + +#: desk/doctype/desktop_icon/desktop_icon.py:446 +#: public/js/frappe/web_form/web_form.js:423 +msgid "Updated" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Updated" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Updated" +msgstr "" + +#: desk/doctype/bulk_update/bulk_update.js:32 +msgid "Updated Successfully" +msgstr "" + +#: public/js/frappe/desk.js:420 +msgid "Updated To A New Version 🎉" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:342 +msgid "Updated successfully" +msgstr "" + +#. Label of a Tab Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Updates" +msgstr "" + +#: utils/response.py:316 +msgid "Updating" +msgstr "" + +#: public/js/frappe/form/save.js:11 +msgctxt "Freeze message while updating a document" +msgid "Updating" +msgstr "" + +#: email/doctype/email_queue/email_queue.py:428 +msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." +msgstr "" + +#: core/doctype/document_naming_rule/document_naming_rule.js:17 +msgid "Updating counter may lead to document name conflicts if not done properly" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.py:22 +msgid "Updating global settings" +msgstr "" + +#: core/doctype/document_naming_settings/document_naming_settings.js:59 +msgid "Updating naming series options" +msgstr "" + +#: public/js/frappe/form/toolbar.js:126 +msgid "Updating related fields..." +msgstr "" + +#: desk/doctype/bulk_update/bulk_update.py:96 +msgid "Updating {0}" +msgstr "" + +#: core/doctype/data_import/data_import.js:36 +msgid "Updating {0} of {1}, {2}" +msgstr "" + +#: public/js/frappe/file_uploader/file_uploader.bundle.js:121 +#: public/js/frappe/file_uploader/file_uploader.bundle.js:122 +#: public/js/frappe/form/grid.js:63 +#: public/js/frappe/form/templates/form_sidebar.html:13 +msgid "Upload" +msgstr "" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Uploaded To Dropbox" +msgstr "" + +#. Label of a Check field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "Uploaded To Google Drive" +msgstr "" + +#: integrations/doctype/google_drive/google_drive.py:196 +msgid "Uploading backup to Google Drive." +msgstr "" + +#: integrations/doctype/google_drive/google_drive.py:201 +msgid "Uploading successful." +msgstr "" + +#: integrations/doctype/google_drive/google_drive.js:16 +msgid "Uploading to Google Drive" +msgstr "" + +#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding +#. Step' +#: desk/doctype/onboarding_step/onboarding_step.json +#, python-format +msgctxt "Onboarding Step" +msgid "Use % for any non empty value." +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use ASCII encoding for password" +msgstr "" + +#. Label of a Check field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Use First Day of Period" +msgstr "" + +#. Label of a Check field in DocType 'Email Template' +#: email/doctype/email_template/email_template.json +msgctxt "Email Template" +msgid "Use HTML" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use IMAP" +msgstr "" + +#. Label of a Check field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Use IMAP" +msgstr "" + +#. Label of a Check field in DocType 'SMS Settings' +#: core/doctype/sms_settings/sms_settings.json +msgctxt "SMS Settings" +msgid "Use POST" +msgstr "" + +#. Label of a Check field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Use Report Chart" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use SSL" +msgstr "" + +#. Label of a Check field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Use SSL" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use STARTTLS" +msgstr "" + +#. Label of a Check field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Use STARTTLS" +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use TLS" +msgstr "" + +#. Label of a Check field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Use TLS" +msgstr "" + +#: utils/password_strength.py:44 +msgid "Use a few words, avoid common phrases." +msgstr "" + +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Use different Email ID" +msgstr "" + +#: model/db_query.py:423 +msgid "Use of function {0} in field is restricted" +msgstr "" + +#: model/db_query.py:402 +msgid "Use of sub-query or function is restricted" +msgstr "" + +#: printing/page/print/print.js:279 +msgid "Use the new Print Format Builder" +msgstr "" + +#. Description of the 'Title Field' (Data) field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "Use this fieldname to generate title" +msgstr "" + +#. Label of a Check field in DocType 'User Email' +#: core/doctype/user_email/user_email.json +msgctxt "User Email" +msgid "Used OAuth" +msgstr "" + +#. Name of a DocType +#: core/doctype/user/user.json +#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 +#: desk/page/user_profile/user_profile_controller.js:65 +#: public/js/frappe/form/templates/set_sharing.html:3 +#: templates/emails/energy_points_summary.html:38 +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Assignment Rule User' +#: automation/doctype/assignment_rule_user/assignment_rule_user.json +msgctxt "Assignment Rule User" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Dashboard Settings' +#: desk/doctype/dashboard_settings/dashboard_settings.json +msgctxt "Dashboard Settings" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Document Follow' +#: email/doctype/document_follow/document_follow.json +msgctxt "Document Follow" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Energy Point Log' +#: social/doctype/energy_point_log/energy_point_log.json +msgctxt "Energy Point Log" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Google Calendar' +#: integrations/doctype/google_calendar/google_calendar.json +msgctxt "Google Calendar" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Log Setting User' +#: core/doctype/log_setting_user/log_setting_user.json +msgctxt "Log Setting User" +msgid "User" +msgstr "" + +#. Linked DocType in Module Profile's connections +#: core/doctype/module_profile/module_profile.json +msgctxt "Module Profile" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Note Seen By' +#: desk/doctype/note_seen_by/note_seen_by.json +msgctxt "Note Seen By" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Notification Settings' +#: desk/doctype/notification_settings/notification_settings.json +msgctxt "Notification Settings" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'OAuth Bearer Token' +#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgctxt "OAuth Bearer Token" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'OAuth Client' +#: integrations/doctype/oauth_client/oauth_client.json +msgctxt "OAuth Client" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Permission Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Personal Data Download Request' +#: website/doctype/personal_data_download_request/personal_data_download_request.json +msgctxt "Personal Data Download Request" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "User" +msgstr "" + +#. Linked DocType in Role Profile's connections +#: core/doctype/role_profile/role_profile.json +msgctxt "Role Profile" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Route History' +#: desk/doctype/route_history/route_history.json +msgctxt "Route History" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Token Cache' +#: integrations/doctype/token_cache/token_cache.json +msgctxt "Token Cache" +msgid "User" +msgstr "" + +#. Label of a Link in the Users Workspace +#. Label of a shortcut in the Users Workspace +#: core/workspace/users/users.json +msgctxt "User" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'User Group Member' +#: core/doctype/user_group_member/user_group_member.json +msgctxt "User Group Member" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'User Permission' +#: core/doctype/user_permission/user_permission.json +msgctxt "User Permission" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "User" +msgstr "" + +#. Label of a Link field in DocType 'Access Log' +#: core/doctype/access_log/access_log.json +msgctxt "Access Log" +msgid "User " +msgstr "" + +#: core/doctype/has_role/has_role.py:25 +msgid "User '{0}' already has the role '{1}'" +msgstr "" + +#. Name of a DocType +#: core/doctype/report/user_activity_report.json +msgid "User Activity Report" +msgstr "" + +#. Name of a DocType +#: core/doctype/report/user_activity_report_without_sort.json +msgid "User Activity Report Without Sort" +msgstr "" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "User Agent" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "User Cannot Create" +msgstr "" + +#. Label of a Check field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "User Cannot Search" +msgstr "" + +#. Label of a Table field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Defaults" +msgstr "" + +#. Label of a Tab Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Details" +msgstr "" + +#. Name of a DocType +#: core/doctype/user_document_type/user_document_type.json +msgid "User Document Type" +msgstr "" + +#: core/doctype/user_type/user_type.py:97 +msgid "User Document Types Limit Exceeded" +msgstr "" + +#. Name of a DocType +#: core/doctype/user_email/user_email.json +msgid "User Email" +msgstr "" + +#. Label of a Table field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Emails" +msgstr "" + +#. Label of a Select field in DocType 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "User Field" +msgstr "" + +#. Name of a DocType +#: core/doctype/user_group/user_group.json +msgid "User Group" +msgstr "" + +#. Name of a DocType +#: core/doctype/user_group_member/user_group_member.json +msgid "User Group Member" +msgstr "" + +#. Label of a Table MultiSelect field in DocType 'User Group' +#: core/doctype/user_group/user_group.json +msgctxt "User Group" +msgid "User Group Members" +msgstr "" + +#. Label of a Data field in DocType 'User Social Login' +#: core/doctype/user_social_login/user_social_login.json +msgctxt "User Social Login" +msgid "User ID" +msgstr "" + +#. Label of a Data field in DocType 'Social Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "User ID Property" +msgstr "" + +#. Description of a DocType +#: website/doctype/blogger/blogger.json +msgid "User ID of a Blogger" +msgstr "" + +#. Label of a Link field in DocType 'Contact' +#: contacts/doctype/contact/contact.json +msgctxt "Contact" +msgid "User Id" +msgstr "" + +#. Label of a Select field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "User Id Field" +msgstr "" + +#: core/doctype/user_type/user_type.py:287 +msgid "User Id Field is mandatory in the user type {0}" +msgstr "" + +#. Label of a Attach Image field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Image" +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:114 +msgid "User Menu" +msgstr "" + +#. Label of a Data field in DocType 'Personal Data Download Request' +#: website/doctype/personal_data_download_request/personal_data_download_request.json +msgctxt "Personal Data Download Request" +msgid "User Name" +msgstr "" + +#. Name of a DocType +#: core/doctype/user_permission/user_permission.json +msgid "User Permission" +msgstr "" + +#. Linked DocType in User's connections +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Permission" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:30 +#: public/js/frappe/views/reports/query_report.js:1789 +#: public/js/frappe/views/reports/report_view.js:1654 +msgid "User Permissions" +msgstr "" + +#: public/js/frappe/list/list_view.js:1685 +msgctxt "Button in list view menu" +msgid "User Permissions" +msgstr "" + +#. Label of a Link in the Users Workspace +#: core/workspace/users/users.json +msgctxt "User Permission" +msgid "User Permissions" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created successfully" +msgstr "" + +#. Label of a shortcut in the Users Workspace +#: core/workspace/users/users.json +msgid "User Profile" +msgstr "" + +#. Label of a Link field in DocType 'LDAP Group Mapping' +#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgctxt "LDAP Group Mapping" +msgid "User Role" +msgstr "" + +#. Name of a DocType +#: core/doctype/user_role_profile/user_role_profile.json +msgid "User Role Profile" +msgstr "" + +#. Name of a DocType +#: core/doctype/user_select_document_type/user_select_document_type.json +msgid "User Select Document Type" +msgstr "" + +#: desk/page/user_profile/user_profile_sidebar.html:52 +msgid "User Settings" +msgstr "" + +#. Name of a DocType +#: core/doctype/user_social_login/user_social_login.json +msgid "User Social Login" +msgstr "" + +#. Label of a Data field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "User Tags" +msgstr "" + +#. Name of a DocType +#: core/doctype/user_type/user_type.json core/doctype/user_type/user_type.py:82 +msgid "User Type" +msgstr "" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "User Type" +msgstr "" + +#. Label of a shortcut in the Users Workspace +#: core/workspace/users/users.json +msgctxt "User Type" +msgid "User Type" +msgstr "" + +#. Name of a DocType +#: core/doctype/user_type_module/user_type_module.json +msgid "User Type Module" +msgstr "" + +#. Label of a Table field in DocType 'User Type' +#: core/doctype/user_type/user_type.json +msgctxt "User Type" +msgid "User Type Module" +msgstr "" + +#. Description of the 'Allow Login using Mobile Number' (Check) field in +#. DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "User can login using Email id or Mobile number" +msgstr "" + +#. Description of the 'Allow Login using User Name' (Check) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "User can login using Email id or User Name" +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:26 +msgid "User does not exist" +msgstr "" + +#: templates/includes/login/login.js:293 +msgid "User does not exist." +msgstr "" + +#: core/doctype/user_type/user_type.py:82 +msgid "User does not have permission to create the new {0}" +msgstr "" + +#: core/doctype/docshare/docshare.py:56 +msgid "User is mandatory for Share" +msgstr "" + +#. Label of a Check field in DocType 'Document Naming Settings' +#: core/doctype/document_naming_settings/document_naming_settings.json +msgctxt "Document Naming Settings" +msgid "User must always select" +msgstr "" + +#: model/delete_doc.py:235 +msgid "User not allowed to delete {0}: {1}" +msgstr "" + +#: core/doctype/user_permission/user_permission.py:60 +msgid "User permission already exists" +msgstr "" + +#: www/login.py:151 +msgid "User with email address {0} does not exist" +msgstr "" + +#: integrations/doctype/ldap_settings/ldap_settings.py:224 +msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." +msgstr "" + +#: core/doctype/user/user.py:540 +msgid "User {0} cannot be deleted" +msgstr "" + +#: core/doctype/user/user.py:279 +msgid "User {0} cannot be disabled" +msgstr "" + +#: core/doctype/user/user.py:609 +msgid "User {0} cannot be renamed" +msgstr "" + +#: permissions.py:137 +msgid "User {0} does not have access to this document" +msgstr "" + +#: permissions.py:160 +msgid "User {0} does not have doctype access via role permission for document {1}" +msgstr "" + +#: templates/emails/data_deletion_approval.html:1 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:108 +msgid "User {0} has requested for data deletion" +msgstr "" + +#: core/doctype/user/user.py:1372 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: utils/oauth.py:265 +msgid "User {0} is disabled" +msgstr "" + +#: desk/form/assign_to.py:101 +msgid "User {0} is not permitted to access this document." +msgstr "" + +#. Label of a Data field in DocType 'Connected App' +#: integrations/doctype/connected_app/connected_app.json +msgctxt "Connected App" +msgid "Userinfo URI" +msgstr "" + +#: www/login.py:99 +msgid "Username" +msgstr "" + +#. Label of a Data field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Username" +msgstr "" + +#. Label of a Data field in DocType 'User Social Login' +#: core/doctype/user_social_login/user_social_login.json +msgctxt "User Social Login" +msgid "Username" +msgstr "" + +#: core/doctype/user/user.py:694 +msgid "Username {0} already exists" +msgstr "" + +#. Name of a Workspace +#. Label of a Card Break in the Users Workspace +#: core/workspace/users/users.json +msgid "Users" +msgstr "" + +#. Label of a Table MultiSelect field in DocType 'Assignment Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Users" +msgstr "" + +#. Description of the 'Allot Points To Assigned Users' (Check) field in DocType +#. 'Energy Point Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Users assigned to the reference document will get points." +msgstr "" + +#: core/page/permission_manager/permission_manager.js:349 +msgid "Users with role {0}:" +msgstr "" + +#: public/js/frappe/ui/theme_switcher.js:70 +msgid "Uses system's theme to switch between light and dark mode" +msgstr "" + +#: public/js/frappe/desk.js:112 +msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." +msgstr "" + +#. Label of a Percent field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Utilization %" +msgstr "" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Valid" +msgstr "" + +#: templates/includes/login/login.js:53 templates/includes/login/login.js:66 +msgid "Valid Login id required." +msgstr "" + +#: templates/includes/login/login.js:40 +msgid "Valid email and name required" +msgstr "" + +#. Label of a Check field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Validate Field" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:356 +msgid "Validation Error" +msgstr "" + +#. Label of a Select field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "Validity" +msgstr "" + +#: core/doctype/prepared_report/prepared_report.js:8 +#: desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: desk/doctype/number_card/number_card.js:205 +#: desk/doctype/number_card/number_card.js:333 +#: email/doctype/auto_email_report/auto_email_report.js:92 +#: public/js/frappe/list/bulk_operations.js:306 +#: public/js/frappe/list/bulk_operations.js:368 +#: public/js/frappe/list/list_view_permission_restrictions.html:4 +#: website/doctype/web_form/web_form.js:197 +msgid "Value" +msgstr "" + +#. Label of a Text field in DocType 'DefaultValue' +#: core/doctype/defaultvalue/defaultvalue.json +msgctxt "DefaultValue" +msgid "Value" +msgstr "" + +#. Label of a Data field in DocType 'Document Naming Rule Condition' +#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgctxt "Document Naming Rule Condition" +msgid "Value" +msgstr "" + +#. Label of a Data field in DocType 'Milestone' +#: automation/doctype/milestone/milestone.json +msgctxt "Milestone" +msgid "Value" +msgstr "" + +#. Label of a Data field in DocType 'Query Parameters' +#: integrations/doctype/query_parameters/query_parameters.json +msgctxt "Query Parameters" +msgid "Value" +msgstr "" + +#. Label of a Data field in DocType 'SMS Parameter' +#: core/doctype/sms_parameter/sms_parameter.json +msgctxt "SMS Parameter" +msgid "Value" +msgstr "" + +#. Label of a Small Text field in DocType 'Webhook Header' +#: integrations/doctype/webhook_header/webhook_header.json +msgctxt "Webhook Header" +msgid "Value" +msgstr "" + +#. Label of a Text field in DocType 'Website Meta Tag' +#: website/doctype/website_meta_tag/website_meta_tag.json +msgctxt "Website Meta Tag" +msgid "Value" +msgstr "" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Value Based On" +msgstr "" + +#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point +#. Rule' +#: social/doctype/energy_point_rule/energy_point_rule.json +msgctxt "Energy Point Rule" +msgid "Value Change" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Value Change" +msgstr "" + +#. Label of a Select field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Value Changed" +msgstr "" + +#. Label of a Data field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "Value To Be Set" +msgstr "" + +#: model/base_document.py:955 model/document.py:668 +msgid "Value cannot be changed for {0}" +msgstr "" + +#: model/document.py:614 +msgid "Value cannot be negative for" +msgstr "" + +#: model/document.py:618 +msgid "Value cannot be negative for {0}: {1}" +msgstr "" + +#: custom/doctype/property_setter/property_setter.js:7 +msgid "Value for a check field can be either 0 or 1" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:607 +msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" +msgstr "" + +#: model/base_document.py:379 +msgid "Value for {0} cannot be a list" +msgstr "" + +#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment +#. Rule' +#: automation/doctype/assignment_rule/assignment_rule.json +msgctxt "Assignment Rule" +msgid "Value from this field will be set as the due date in the ToDo" +msgstr "" + +#: model/base_document.py:733 +msgid "Value missing for" +msgstr "" + +#: core/doctype/data_import/importer.py:695 +msgid "Value must be one of {0}" +msgstr "" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Value to Validate" +msgstr "" + +#: model/base_document.py:1022 +msgid "Value too big" +msgstr "" + +#: core/doctype/data_import/importer.py:708 +msgid "Value {0} missing for {1}" +msgstr "" + +#: core/doctype/data_import/importer.py:739 utils/data.py:861 +msgid "Value {0} must be in the valid duration format: d h m s" +msgstr "" + +#: core/doctype/data_import/importer.py:726 +msgid "Value {0} must in {1} format" +msgstr "" + +#: core/doctype/version/version_view.html:8 +msgid "Values Changed" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: printing/doctype/print_settings/print_settings.json +msgctxt "Print Settings" +msgid "Verdana" +msgstr "" + +#: twofactor.py:357 +msgid "Verfication Code" +msgstr "" + +#: templates/emails/delete_data_confirmation.html:10 +msgid "Verification Link" +msgstr "" + +#: templates/includes/login/login.js:391 +msgid "Verification code email not sent. Please contact Administrator." +msgstr "" + +#: twofactor.py:248 +msgid "Verification code has been sent to your registered email address." +msgstr "" + +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: core/doctype/translation/translation.json +msgctxt "Translation" +msgid "Verified" +msgstr "" + +#: public/js/frappe/ui/messages.js:350 +msgid "Verify" +msgstr "" + +#: public/js/frappe/ui/messages.js:349 +msgid "Verify Password" +msgstr "" + +#: templates/includes/login/login.js:172 +msgid "Verifying..." +msgstr "" + +#. Name of a DocType +#: core/doctype/version/version.json +msgid "Version" +msgstr "" + +#: public/js/frappe/desk.js:131 +msgid "Version Updated" +msgstr "" + +#. Label of a Data field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Video URL" +msgstr "" + +#. Label of a Select field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "View" +msgstr "" + +#: core/doctype/success_action/success_action.js:58 +#: public/js/frappe/form/success_action.js:89 +msgid "View All" +msgstr "" + +#: public/js/frappe/form/toolbar.js:507 +msgid "View Audit Trail" +msgstr "" + +#: templates/includes/likes/likes.py:34 +msgid "View Blog Post" +msgstr "" + +#: templates/includes/comments/comments.py:56 +msgid "View Comment" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:213 +msgid "View Full Log" +msgstr "" + +#: public/js/frappe/views/treeview.js:467 +#: public/js/frappe/widgets/quick_list_widget.js:245 +msgid "View List" +msgstr "" + +#. Name of a DocType +#: core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "" + +#: core/doctype/user/user.js:137 +#: core/doctype/user_permission/user_permission.js:24 +msgid "View Permitted Documents" +msgstr "" + +#. Label of a Button field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "View Properties (via Customize Form)" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log_list.js:20 +msgid "View Ref" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "View Report" +msgstr "" + +#. Label of a Section Break field in DocType 'Customize Form' +#: custom/doctype/customize_form/customize_form.json +msgctxt "Customize Form" +msgid "View Settings" +msgstr "" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "View Settings" +msgstr "" + +#. Label of a Check field in DocType 'Role' +#: core/doctype/role/role.json +msgctxt "Role" +msgid "View Switcher" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: hooks.py website/doctype/website_settings/website_settings.js:16 +msgid "View Website" +msgstr "" + +#: www/confirm_workflow_action.html:12 +msgid "View document" +msgstr "" + +#: core/doctype/file/file.js:31 +msgid "View file" +msgstr "" + +#: templates/emails/auto_email_report.html:60 +msgid "View report in your browser" +msgstr "" + +#: templates/emails/print_link.html:2 +msgid "View this in your browser" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:450 +msgctxt "Button in web form" +msgid "View your response" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.js:43 +#: desk/doctype/calendar_view/calendar_view_list.js:10 +#: desk/doctype/dashboard/dashboard_list.js:10 +msgid "View {0}" +msgstr "" + +#. Label of a Data field in DocType 'View Log' +#: core/doctype/view_log/view_log.json +msgctxt "View Log" +msgid "Viewed By" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: core/workspace/build/build.json +msgid "Views" +msgstr "" + +#. Group in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Views" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Virtual" +msgstr "" + +#: model/virtual_doctype.py:76 +msgid "Virtual DocType {} requires a static method called {} found {}" +msgstr "" + +#: model/virtual_doctype.py:89 +msgid "Virtual DocType {} requires overriding an instance method called {} found {}" +msgstr "" + +#. Label of a Section Break field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Visibility" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Visit" +msgstr "" + +#: website/doctype/website_route_meta/website_route_meta.js:7 +msgid "Visit Web Page" +msgstr "" + +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Visitor ID" +msgstr "" + +#: templates/discussions/reply_section.html:39 +msgid "Want to discuss?" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: contacts/doctype/address/address.json +msgctxt "Address" +msgid "Warehouse" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "Warning" +msgstr "" + +#: public/js/frappe/model/meta.js:179 +msgid "Warning: Unable to find {0} in any table related to {1}" +msgstr "" + +#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' +#: core/doctype/document_naming_rule/document_naming_rule.json +msgctxt "Document Naming Rule" +msgid "Warning: Updating counter may lead to document name conflicts if not done properly" +msgstr "" + +#: website/doctype/help_article/templates/help_article.html:24 +msgid "Was this article helpful?" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: desk/doctype/onboarding_step/onboarding_step.json +msgctxt "Onboarding Step" +msgid "Watch Video" +msgstr "" + +#: desk/doctype/workspace/workspace.js:38 +msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" +msgstr "" + +#: templates/emails/delete_data_confirmation.html:2 +msgid "We have received a request for deletion of {0} data associated with: {1}" +msgstr "" + +#: templates/emails/download_data.html:2 +msgid "We have received a request from you to download your {0} data associated with: {1}" +msgstr "" + +#: www/contact.py:48 +msgid "We've received your query!" +msgstr "" + +#: public/js/frappe/form/controls/password.js:88 +msgid "Weak" +msgstr "" + +#. Name of a DocType +#: website/doctype/web_form/web_form.json +msgid "Web Form" +msgstr "" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Web Form" +msgstr "" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Web Form" +msgstr "" + +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Web Form" +msgid "Web Form" +msgstr "" + +#. Name of a DocType +#: website/doctype/web_form_field/web_form_field.json +msgid "Web Form Field" +msgstr "" + +#. Label of a Table field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Web Form Fields" +msgstr "" + +#. Name of a DocType +#: website/doctype/web_form_list_column/web_form_list_column.json +msgid "Web Form List Column" +msgstr "" + +#. Name of a DocType +#: website/doctype/web_page/web_page.json +msgid "Web Page" +msgstr "" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Web Page" +msgstr "" + +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Web Page" +msgid "Web Page" +msgstr "" + +#. Name of a DocType +#: website/doctype/web_page_block/web_page_block.json +msgid "Web Page Block" +msgstr "" + +#: public/js/frappe/utils/utils.js:1698 +msgid "Web Page URL" +msgstr "" + +#. Name of a DocType +#: website/doctype/web_page_view/web_page_view.json +msgid "Web Page View" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: website/workspace/website/website.json +msgid "Web Site" +msgstr "" + +#. Name of a DocType +#: website/doctype/web_template/web_template.json +msgid "Web Template" +msgstr "" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Web Template" +msgstr "" + +#. Label of a Link field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Web Template" +msgstr "" + +#. Name of a DocType +#: website/doctype/web_template_field/web_template_field.json +msgid "Web Template Field" +msgstr "" + +#. Label of a Code field in DocType 'Web Page Block' +#: website/doctype/web_page_block/web_page_block.json +msgctxt "Web Page Block" +msgid "Web Template Values" +msgstr "" + +#: utils/jinja_globals.py:48 +msgid "Web Template is not specified" +msgstr "" + +#. Label of a Section Break field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Web View" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/webhook/webhook.json +msgid "Webhook" +msgstr "" + +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Webhook" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Webhook" +msgid "Webhook" +msgstr "" + +#. Label of a Link field in DocType 'Webhook Request Log' +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgctxt "Webhook Request Log" +msgid "Webhook" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/webhook_data/webhook_data.json +msgid "Webhook Data" +msgstr "" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Data" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/webhook_header/webhook_header.json +msgid "Webhook Header" +msgstr "" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Headers" +msgstr "" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Request" +msgstr "" + +#. Name of a DocType +#: integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Webhook Request Log" +msgstr "" + +#. Linked DocType in Webhook's connections +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Request Log" +msgstr "" + +#. Label of a Password field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Secret" +msgstr "" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Security" +msgstr "" + +#. Label of a Section Break field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Webhook Trigger" +msgstr "" + +#. Label of a Data field in DocType 'Slack Webhook URL' +#: integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgctxt "Slack Webhook URL" +msgid "Webhook URL" +msgstr "" + +#. Name of a Workspace +#: email/doctype/newsletter/newsletter.py:449 +#: public/js/frappe/ui/toolbar/about.js:8 +#: website/workspace/website/website.json +msgid "Website" +msgstr "" + +#. Group in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Website" +msgstr "" + +#. Name of a report +#: website/report/website_analytics/website_analytics.json +msgid "Website Analytics" +msgstr "" + +#. Name of a role +#: core/doctype/comment/comment.json +#: website/doctype/about_us_settings/about_us_settings.json +#: website/doctype/blog_category/blog_category.json +#: website/doctype/blog_post/blog_post.json +#: website/doctype/blog_settings/blog_settings.json +#: website/doctype/blogger/blogger.json website/doctype/color/color.json +#: website/doctype/contact_us_settings/contact_us_settings.json +#: website/doctype/help_category/help_category.json +#: website/doctype/portal_settings/portal_settings.json +#: website/doctype/web_form/web_form.json +#: website/doctype/web_page/web_page.json +#: website/doctype/website_script/website_script.json +#: website/doctype/website_settings/website_settings.json +#: website/doctype/website_sidebar/website_sidebar.json +#: website/doctype/website_slideshow/website_slideshow.json +#: website/doctype/website_theme/website_theme.json +msgid "Website Manager" +msgstr "" + +#. Name of a DocType +#: website/doctype/website_meta_tag/website_meta_tag.json +msgid "Website Meta Tag" +msgstr "" + +#. Name of a DocType +#: website/doctype/website_route_meta/website_route_meta.json +msgid "Website Route Meta" +msgstr "" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Route Meta" +msgid "Website Route Meta" +msgstr "" + +#. Name of a DocType +#: website/doctype/website_route_redirect/website_route_redirect.json +msgid "Website Route Redirect" +msgstr "" + +#. Name of a DocType +#: website/doctype/website_script/website_script.json +msgid "Website Script" +msgstr "" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Script" +msgid "Website Script" +msgstr "" + +#. Label of a Data field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Website Search Field" +msgstr "" + +#: core/doctype/doctype/doctype.py:1471 +msgid "Website Search Field must be a valid fieldname" +msgstr "" + +#. Name of a DocType +#: website/doctype/website_settings/website_settings.json +msgid "Website Settings" +msgstr "" + +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Settings" +msgid "Website Settings" +msgstr "" + +#. Name of a DocType +#: website/doctype/website_sidebar/website_sidebar.json +msgid "Website Sidebar" +msgstr "" + +#. Label of a Link field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "Website Sidebar" +msgstr "" + +#. Label of a Link field in DocType 'Web Page' +#: website/doctype/web_page/web_page.json +msgctxt "Web Page" +msgid "Website Sidebar" +msgstr "" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Sidebar" +msgid "Website Sidebar" +msgstr "" + +#. Name of a DocType +#: website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Website Sidebar Item" +msgstr "" + +#. Name of a DocType +#: website/doctype/website_slideshow/website_slideshow.json +msgid "Website Slideshow" +msgstr "" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Slideshow" +msgid "Website Slideshow" +msgstr "" + +#. Name of a DocType +#: website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Website Slideshow Item" +msgstr "" + +#. Name of a DocType +#: website/doctype/website_theme/website_theme.json +msgid "Website Theme" +msgstr "" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Website Theme" +msgstr "" + +#. Label of a Link field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Website Theme" +msgstr "" + +#. Label of a Link in the Website Workspace +#: website/workspace/website/website.json +msgctxt "Website Theme" +msgid "Website Theme" +msgstr "" + +#. Name of a DocType +#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "Website Theme Ignore App" +msgstr "" + +#. Label of a Image field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Website Theme Image" +msgstr "" + +#. Label of a Code field in DocType 'Website Settings' +#: website/doctype/website_settings/website_settings.json +msgctxt "Website Settings" +msgid "Website Theme image link" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#: automation/doctype/assignment_rule_day/assignment_rule_day.json +msgctxt "Assignment Rule Day" +msgid "Wednesday" +msgstr "" + +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Wednesday" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#: automation/doctype/auto_repeat_day/auto_repeat_day.json +msgctxt "Auto Repeat Day" +msgid "Wednesday" +msgstr "" + +#. Label of a Check field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Wednesday" +msgstr "" + +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Wednesday" +msgstr "" + +#: public/js/frappe/views/calendar/calendar.js:270 +msgid "Week" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Weekdays" +msgstr "" + +#: public/js/frappe/utils/common.js:399 +#: website/report/website_analytics/website_analytics.js:24 +msgid "Weekly" +msgstr "" + +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Weekly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Weekly" +msgstr "" + +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Weekly" +msgstr "" + +#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox +#. Settings' +#: integrations/doctype/dropbox_settings/dropbox_settings.json +msgctxt "Dropbox Settings" +msgid "Weekly" +msgstr "" + +#. Option for the 'Point Allocation Periodicity' (Select) field in DocType +#. 'Energy Point Settings' +#: social/doctype/energy_point_settings/energy_point_settings.json +msgctxt "Energy Point Settings" +msgid "Weekly" +msgstr "" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Weekly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Google Drive' +#: integrations/doctype/google_drive/google_drive.json +msgctxt "Google Drive" +msgid "Weekly" +msgstr "" + +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Weekly" +msgstr "" + +#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup +#. Settings' +#: integrations/doctype/s3_backup_settings/s3_backup_settings.json +msgctxt "S3 Backup Settings" +msgid "Weekly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Weekly" +msgstr "" + +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Weekly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Weekly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Weekly Long" +msgstr "" + +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Weekly Long" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:372 +msgid "Welcome" +msgstr "" + +#. Label of a Link field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Welcome Email Template" +msgstr "" + +#. Label of a Link field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Welcome Email Template" +msgstr "" + +#. Label of a Data field in DocType 'Email Group' +#: email/doctype/email_group/email_group.json +msgctxt "Email Group" +msgid "Welcome URL" +msgstr "" + +#. Name of a Workspace +#: core/workspace/welcome_workspace/welcome_workspace.json desk/desktop.py:470 +msgid "Welcome Workspace" +msgstr "" + +#: core/doctype/user/user.py:397 +msgid "Welcome email sent" +msgstr "" + +#: core/doctype/user/user.py:472 +msgid "Welcome to {0}" +msgstr "" + +#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." +msgstr "" + +#. Description of the 'Store Attached PDF Document' (Check) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." +msgstr "" + +#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in +#. DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:18 +msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:479 +msgid "Which view of the associated DocType should this shortcut take you to?" +msgstr "" + +#. Description of the 'DocType View' (Select) field in DocType 'Workspace +#. Shortcut' +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgctxt "Workspace Shortcut" +msgid "Which view of the associated DocType should this shortcut take you to?" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_column_selector.html:8 +msgid "Width" +msgstr "" + +#. Label of a Data field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Width" +msgstr "" + +#. Label of a Data field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Width" +msgstr "" + +#. Label of a Select field in DocType 'Dashboard Chart Link' +#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgctxt "Dashboard Chart Link" +msgid "Width" +msgstr "" + +#. Label of a Data field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Width" +msgstr "" + +#. Label of a Int field in DocType 'Report Column' +#: core/doctype/report_column/report_column.json +msgctxt "Report Column" +msgid "Width" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "" + +#. Label of a Check field in DocType 'Report Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Wildcard Filter" +msgstr "" + +#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report +#. Filter' +#: core/doctype/report_filter/report_filter.json +msgctxt "Report Filter" +msgid "Will add \"%\" before and after the query" +msgstr "" + +#. Description of the 'Short Name' (Data) field in DocType 'Blogger' +#: website/doctype/blogger/blogger.json +msgctxt "Blogger" +msgid "Will be used in url (usually first name)." +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:470 +msgid "Will be your login ID" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:424 +msgid "Will only be shown if section headings are enabled" +msgstr "" + +#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field +#. in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0." +msgstr "" + +#: public/js/frappe/form/print_utils.js:13 +msgid "With Letter head" +msgstr "" + +#: workflow/doctype/workflow/workflow.js:140 +msgid "Worflow States Don't Exist" +msgstr "" + +#. Label of a Section Break field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Worker Information" +msgstr "" + +#. Label of a Data field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "Worker Name" +msgstr "" + +#. Name of a DocType +#: public/js/workflow_builder/store.js:129 +#: workflow/doctype/workflow/workflow.json +msgid "Workflow" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: core/doctype/comment/comment.json +msgctxt "Comment" +msgid "Workflow" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Communication' +#: core/doctype/communication/communication.json +msgctxt "Communication" +msgid "Workflow" +msgstr "" + +#. Group in DocType's connections +#. Linked DocType in DocType's connections +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "Workflow" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Workflow" +msgid "Workflow" +msgstr "" + +#. Name of a DocType +#: workflow/doctype/workflow_action/workflow_action.json +#: workflow/doctype/workflow_action/workflow_action.py:438 +msgid "Workflow Action" +msgstr "" + +#. Name of a DocType +#. Description of a DocType +#: workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Master" +msgstr "" + +#. Label of a Data field in DocType 'Workflow Action Master' +#: workflow/doctype/workflow_action_master/workflow_action_master.json +msgctxt "Workflow Action Master" +msgid "Workflow Action Name" +msgstr "" + +#. Name of a DocType +#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Workflow Action Permitted Role" +msgstr "" + +#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow +#. Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Workflow Action is not created for optional states" +msgstr "" + +#: public/js/workflow_builder/store.js:129 +#: workflow/doctype/workflow/workflow.js:25 +#: workflow/page/workflow_builder/workflow_builder.js:4 +msgid "Workflow Builder" +msgstr "" + +#. Label of a Data field in DocType 'Workflow Document State' +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgctxt "Workflow Document State" +msgid "Workflow Builder ID" +msgstr "" + +#. Label of a Data field in DocType 'Workflow Transition' +#: workflow/doctype/workflow_transition/workflow_transition.json +msgctxt "Workflow Transition" +msgid "Workflow Builder ID" +msgstr "" + +#: workflow/doctype/workflow/workflow.js:11 +msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." +msgstr "" + +#. Label of a JSON field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Workflow Data" +msgstr "" + +#. Name of a DocType +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Document State" +msgstr "" + +#. Label of a Data field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Workflow Name" +msgstr "" + +#. Name of a DocType +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow State" +msgstr "" + +#. Label of a Data field in DocType 'Workflow Action' +#: workflow/doctype/workflow_action/workflow_action.json +msgctxt "Workflow Action" +msgid "Workflow State" +msgstr "" + +#. Label of a Data field in DocType 'Workflow' +#: workflow/doctype/workflow/workflow.json +msgctxt "Workflow" +msgid "Workflow State Field" +msgstr "" + +#: model/workflow.py:61 +msgid "Workflow State not set" +msgstr "" + +#: model/workflow.py:197 model/workflow.py:205 +msgid "Workflow State transition not allowed from {0} to {1}" +msgstr "" + +#: model/workflow.py:320 +msgid "Workflow Status" +msgstr "" + +#. Name of a DocType +#: workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Transition" +msgstr "" + +#. Description of a DocType +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + +#. Description of the Onboarding Step 'Setup Approval Workflows' +#: custom/onboarding_step/workflows/workflows.json +msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions." +msgstr "" + +#. Name of a DocType +#: desk/doctype/workspace/workspace.json +#: public/js/frappe/ui/toolbar/search_utils.js:557 +#: public/js/frappe/views/workspace/workspace.js:10 +msgid "Workspace" +msgstr "" + +#. Linked DocType in Module Def's connections +#: core/doctype/module_def/module_def.json +msgctxt "Module Def" +msgid "Workspace" +msgstr "" + +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Workspace" +msgstr "" + +#. Label of a Link in the Build Workspace +#: core/workspace/build/build.json +msgctxt "Workspace" +msgid "Workspace" +msgstr "" + +#: public/js/frappe/router.js:194 +msgid "Workspace {0} does not exist" +msgstr "" + +#. Name of a DocType +#: desk/doctype/workspace_chart/workspace_chart.json +msgid "Workspace Chart" +msgstr "" + +#. Name of a DocType +#: desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Workspace Custom Block" +msgstr "" + +#. Name of a DocType +#: desk/doctype/workspace_link/workspace_link.json +msgid "Workspace Link" +msgstr "" + +#. Name of a role +#: desk/doctype/custom_html_block/custom_html_block.json +#: desk/doctype/workspace/workspace.json +msgid "Workspace Manager" +msgstr "" + +#. Name of a DocType +#: desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Workspace Number Card" +msgstr "" + +#. Name of a DocType +#: desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Workspace Quick List" +msgstr "" + +#. Name of a DocType +#: desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Workspace Shortcut" +msgstr "" + +#: desk/doctype/workspace/workspace.py:281 +msgid "Workspace not found" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1276 +msgid "Workspace {0} Created Successfully" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:905 +msgid "Workspace {0} Deleted Successfully" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:683 +msgid "Workspace {0} Edited Successfully" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: desk/doctype/form_tour/form_tour.json +msgctxt "Form Tour" +msgid "Workspaces" +msgstr "" + +#. Label of a Check field in DocType 'Custom DocPerm' +#: core/doctype/custom_docperm/custom_docperm.json +msgctxt "Custom DocPerm" +msgid "Write" +msgstr "" + +#. Label of a Check field in DocType 'DocPerm' +#: core/doctype/docperm/docperm.json +msgctxt "DocPerm" +msgid "Write" +msgstr "" + +#. Label of a Check field in DocType 'DocShare' +#: core/doctype/docshare/docshare.json +msgctxt "DocShare" +msgid "Write" +msgstr "" + +#. Label of a Check field in DocType 'User Document Type' +#: core/doctype/user_document_type/user_document_type.json +msgctxt "User Document Type" +msgid "Write" +msgstr "" + +#: model/base_document.py:865 +msgid "Wrong Fetch From value" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:459 +msgid "X Axis Field" +msgstr "" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "X Field" +msgstr "" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "XLSX" +msgstr "" + +#. Label of a Table field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Y Axis" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:466 +msgid "Y Axis Fields" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1146 +msgid "Y Field" +msgstr "" + +#. Label of a Select field in DocType 'Dashboard Chart Field' +#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgctxt "Dashboard Chart Field" +msgid "Y Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Yahoo Mail" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Yandex.Mail" +msgstr "" + +#. Label of a Data field in DocType 'Company History' +#: website/doctype/company_history/company_history.json +msgctxt "Company History" +msgid "Year" +msgstr "" + +#. Label of a Select field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Year" +msgstr "" + +#: public/js/frappe/utils/common.js:403 +msgid "Yearly" +msgstr "" + +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Yearly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: automation/doctype/auto_repeat/auto_repeat.json +msgctxt "Auto Repeat" +msgid "Yearly" +msgstr "" + +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#: desk/doctype/dashboard_chart/dashboard_chart.json +msgctxt "Dashboard Chart" +msgid "Yearly" +msgstr "" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Yearly" +msgstr "" + +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#: desk/doctype/number_card/number_card.json +msgctxt "Number Card" +msgid "Yearly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: core/doctype/scheduled_job_type/scheduled_job_type.json +msgctxt "Scheduled Job Type" +msgid "Yearly" +msgstr "" + +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Yearly" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#: core/doctype/doctype_state/doctype_state.json +msgctxt "DocType State" +msgid "Yellow" +msgstr "" + +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: desk/doctype/kanban_board_column/kanban_board_column.json +msgctxt "Kanban Board Column" +msgid "Yellow" +msgstr "" + +#: integrations/doctype/webhook/webhook.py:130 +#: integrations/doctype/webhook/webhook.py:140 +#: public/js/form_builder/utils.js:336 +#: public/js/frappe/form/controls/link.js:472 +#: public/js/frappe/list/list_sidebar_group_by.js:223 +#: public/js/frappe/views/reports/query_report.js:1530 +#: website/doctype/help_article/templates/help_article.html:25 +msgid "Yes" +msgstr "" + +#: public/js/frappe/ui/messages.js:32 +msgctxt "Approve confirmation dialog" +msgid "Yes" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:501 +msgctxt "Checkbox is checked" +msgid "Yes" +msgstr "" + +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "Yes" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "Yes" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: printing/doctype/print_format/print_format.json +msgctxt "Print Format" +msgid "Yes" +msgstr "" + +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#: core/doctype/report/report.json +msgctxt "Report" +msgid "Yes" +msgstr "" + +#: public/js/frappe/utils/user.js:33 +msgctxt "Name of the current user. For example: You edited this 5 hours ago." +msgid "You" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:462 +msgid "You Liked" +msgstr "" + +#: public/js/frappe/dom.js:425 +msgid "You are connected to internet." +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:20 +msgid "You are impersonating as another user." +msgstr "" + +#: permissions.py:413 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" +msgstr "" + +#: permissions.py:402 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_board.bundle.js:69 +msgid "You are not allowed to create columns" +msgstr "" + +#: core/doctype/report/report.py:97 +msgid "You are not allowed to delete Standard Report" +msgstr "" + +#: website/doctype/website_theme/website_theme.py:73 +msgid "You are not allowed to delete a standard Website Theme" +msgstr "" + +#: core/doctype/report/report.py:383 +msgid "You are not allowed to edit the report." +msgstr "" + +#: permissions.py:610 +msgid "You are not allowed to export {} doctype" +msgstr "" + +#: public/js/frappe/views/treeview.js:431 +msgid "You are not allowed to print this report" +msgstr "" + +#: public/js/frappe/views/communication.js:764 +msgid "You are not allowed to send emails related to this document" +msgstr "" + +#: website/doctype/web_form/web_form.py:462 +msgid "You are not allowed to update this Web Form Document" +msgstr "" + +#: public/js/frappe/request.js:35 +msgid "You are not connected to Internet. Retry after sometime." +msgstr "" + +#: public/js/frappe/web_form/webform_script.js:22 +msgid "You are not permitted to access this page without login." +msgstr "" + +#: www/app.py:23 +msgid "You are not permitted to access this page." +msgstr "" + +#: __init__.py:932 +msgid "You are not permitted to access this resource." +msgstr "" + +#: public/js/frappe/form/sidebar/document_follow.js:131 +msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." +msgstr "" + +#: core/doctype/installed_applications/installed_applications.py:60 +msgid "You are only allowed to update order, do not remove or add apps." +msgstr "" + +#: email/doctype/email_account/email_account.js:221 +msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:413 +msgctxt "Form timeline" +msgid "You attached {0}" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder.js:741 +msgid "You can add dynamic properties from the document by using Jinja templating." +msgstr "" + +#: printing/doctype/letter_head/letter_head.js:32 +msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" +msgstr "" + +#: templates/emails/new_user.html:22 +msgid "You can also copy-paste following link in your browser" +msgstr "" + +#: templates/emails/download_data.html:9 +msgid "You can also copy-paste this " +msgstr "" + +#: templates/emails/delete_data_confirmation.html:11 +msgid "You can also copy-paste this {0} to your browser" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:17 +msgid "You can change Submitted documents by cancelling them and then, amending them." +msgstr "" + +#: public/js/frappe/logtypes.js:21 +msgid "You can change the retention policy from {0}." +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:199 +msgid "You can continue with the onboarding after exploring this page" +msgstr "" + +#: core/doctype/user/user.py:600 +msgid "You can disable the user instead of deleting it." +msgstr "" + +#: core/doctype/file/file.py:684 +msgid "You can increase the limit from System Settings." +msgstr "" + +#: utils/synchronization.py:48 +msgid "You can manually remove the lock if you think it's safe: {}" +msgstr "" + +#: public/js/frappe/form/controls/markdown_editor.js:75 +msgid "You can only insert images in Markdown fields" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:41 +msgid "You can only print upto {0} documents at a time" +msgstr "" + +#: core/doctype/user_type/user_type.py:103 +msgid "You can only set the 3 custom doctypes in the Document Types table." +msgstr "" + +#: handler.py:225 +msgid "You can only upload JPG, PNG, PDF, TXT or Microsoft documents." +msgstr "" + +#: core/doctype/data_export/exporter.py:199 +msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "You can select one from the following," +msgstr "" + +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + +#: desk/query_report.py:332 +msgid "You can try changing the filters of your report." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:27 +msgid "You can use Customize Form to set levels on fields." +msgstr "" + +#: public/js/frappe/form/link_selector.js:30 +msgid "You can use wildcard %" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:385 +msgid "You can't set 'Options' for field {0}" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:389 +msgid "You can't set 'Translatable' for field {0}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:74 +msgctxt "Form timeline" +msgid "You cancelled this document" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:61 +msgctxt "Form timeline" +msgid "You cancelled this document {1}" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.py:407 +msgid "You cannot create a dashboard chart from single DocTypes" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:45 +msgid "You cannot give review points to yourself" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:381 +msgid "You cannot unset 'Read Only' for field {0}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:121 +msgid "You changed the value of {0}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:110 +msgid "You changed the value of {0} {1}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:183 +msgid "You changed the values for {0}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:172 +msgid "You changed the values for {0} {1}" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:442 +msgctxt "Form timeline" +msgid "You changed {0} to {1}" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:138 +#: public/js/frappe/form/sidebar/form_sidebar.js:106 +msgid "You created this" +msgstr "" + +#: client.py:430 +msgid "You do not have Read or Select Permissions for {}" +msgstr "" + +#: public/js/frappe/request.js:174 +msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." +msgstr "" + +#: app.py:354 +msgid "You do not have enough permissions to complete the action" +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:91 +msgid "You do not have enough points" +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:31 +#: social/doctype/energy_point_log/energy_point_log.py:294 +msgid "You do not have enough review points" +msgstr "" + +#: www/printview.py:376 +msgid "You do not have permission to view this document" +msgstr "" + +#: public/js/frappe/form/form.js:979 +msgid "You do not have permissions to cancel all linked documents." +msgstr "" + +#: desk/query_report.py:39 +msgid "You don't have access to Report: {0}" +msgstr "" + +#: website/doctype/web_form/web_form.py:698 +msgid "You don't have permission to access the {0} DocType." +msgstr "" + +#: utils/response.py:270 utils/response.py:274 +msgid "You don't have permission to access this file" +msgstr "" + +#: desk/query_report.py:45 +msgid "You don't have permission to get a report on: {0}" +msgstr "" + +#: website/doctype/web_form/web_form.py:168 +msgid "You don't have the permissions to access this document" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:156 +msgid "You gained {0} point" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:158 +msgid "You gained {0} points" +msgstr "" + +#: templates/emails/new_message.html:1 +msgid "You have a new message from: " +msgstr "" + +#: handler.py:123 +msgid "You have been successfully logged out" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:240 +msgid "You have hit the row size limit on database table: {0}" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:382 +msgid "You have not entered a value. The field will be set to empty." +msgstr "" + +#: templates/includes/likes/likes.py:31 +msgid "You have received a ❤️ like on your blog post" +msgstr "" + +#: twofactor.py:448 +msgid "You have to enable Two Factor Auth from System Settings." +msgstr "" + +#: public/js/frappe/model/create_new.js:332 +msgid "You have unsaved changes in this form. Please save before you continue." +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:50 +msgid "You have unseen notifications" +msgstr "" + +#: core/doctype/log_settings/log_settings.py:126 +msgid "You have unseen {0}" +msgstr "" + +#: public/js/frappe/views/dashboard/dashboard_view.js:191 +msgid "You haven't added any Dashboard Charts or Number Cards yet." +msgstr "" + +#: public/js/frappe/list/list_view.js:471 +msgid "You haven't created a {0} yet" +msgstr "" + +#: rate_limiter.py:150 +msgid "You hit the rate limit because of too many requests. Please try after sometime." +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:149 +#: public/js/frappe/form/sidebar/form_sidebar.js:95 +msgid "You last edited this" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:347 +msgid "You must add atleast one link." +msgstr "" + +#: website/doctype/web_form/web_form.py:668 +msgid "You must be logged in to use this form." +msgstr "" + +#: website/doctype/web_form/web_form.py:502 +msgid "You must login to submit this form" +msgstr "" + +#: desk/doctype/workspace/workspace.py:73 +msgid "You need to be Workspace Manager to edit this document" +msgstr "" + +#: website/doctype/web_form/web_form.py:91 +msgid "You need to be in developer mode to edit a Standard Web Form" +msgstr "" + +#: utils/response.py:259 +msgid "You need to be logged in and have System Manager Role to be able to access backups." +msgstr "" + +#: www/me.py:13 www/third_party_apps.py:10 +msgid "You need to be logged in to access this page" +msgstr "" + +#: website/doctype/web_form/web_form.py:159 +msgid "You need to be logged in to access this {0}." +msgstr "" + +#: public/js/frappe/widgets/links_widget.js:63 +msgid "You need to create these first: " +msgstr "" + +#: www/login.html:73 +msgid "You need to enable JavaScript for your app to work." +msgstr "" + +#: core/doctype/docshare/docshare.py:62 +msgid "You need to have \"Share\" permission" +msgstr "" + +#: utils/print_format.py:255 +msgid "You need to install pycups to use this feature!" +msgstr "" + +#: email/doctype/email_account/email_account.py:147 +msgid "You need to set one IMAP folder for {0}" +msgstr "" + +#: model/rename_doc.py:377 +msgid "You need write permission to rename" +msgstr "" + +#: client.py:458 +msgid "You need {0} permission to fetch values from {1} {2}" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:418 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:525 +msgid "You seem good to go!" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:30 +msgid "You selected Draft or Cancelled documents" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:48 +msgctxt "Form timeline" +msgid "You submitted this document" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:35 +msgctxt "Form timeline" +msgid "You submitted this document {0}" +msgstr "" + +#: public/js/frappe/form/sidebar/document_follow.js:144 +msgid "You unfollowed this document" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:182 +msgid "You viewed this" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:385 +msgid "Your Country" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:377 +msgid "Your Language" +msgstr "" + +#: templates/includes/comments/comments.html:21 +msgid "Your Name" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:123 +msgid "Your PDF is ready for download" +msgstr "" + +#: patches/v14_0/update_workspace2.py:34 +msgid "Your Shortcuts" +msgstr "" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:141 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:147 +msgid "Your account has been deleted" +msgstr "" + +#: auth.py:472 +msgid "Your account has been locked and will resume after {0} seconds" +msgstr "" + +#: desk/form/assign_to.py:276 +msgid "Your assignment on {0} {1} has been removed by {2}" +msgstr "" + +#: core/doctype/file/file.js:66 +msgid "Your browser does not support the audio element." +msgstr "" + +#: core/doctype/file/file.js:48 +msgid "Your browser does not support the video element." +msgstr "" + +#: templates/pages/integrations/gcalendar-success.html:11 +msgid "Your connection request to Google Calendar was successfully accepted" +msgstr "" + +#: www/contact.html:35 +msgid "Your email address" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:424 +msgid "Your form has been successfully updated" +msgstr "" + +#: templates/emails/new_user.html:6 +msgid "Your login id is" +msgstr "" + +#: www/update-password.html:165 +msgid "Your new password has been set successfully." +msgstr "" + +#: www/update-password.html:145 +msgid "Your old password is incorrect." +msgstr "" + +#. Description of the 'Email Footer Address' (Small Text) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Your organization name and address for the email footer." +msgstr "" + +#: templates/emails/auto_reply.html:2 +msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." +msgstr "" + +#: app.py:345 +msgid "Your session has expired, please login again to continue." +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "" + +#: templates/emails/verification_code.html:1 +msgid "Your verification code is {0}" +msgstr "" + +#. Success message of the Module Onboarding 'Website' +#: website/module_onboarding/website/website.json +msgid "Your website is all set up!" +msgstr "" + +#: utils/data.py:1496 +msgid "Zero" +msgstr "" + +#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field +#. in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Zero means send records updated at anytime" +msgstr "" + +#. Label of a Link field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "_doctype" +msgstr "" + +#. Label of a Link field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "_report" +msgstr "" + +#: database/database.py:314 +msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" +msgstr "" + +#: utils/background_jobs.py:105 +msgid "`job_id` paramater is required for deduplication." +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:219 +msgid "added rows for {0}" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "adjust" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "after_insert" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "align-center" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "align-justify" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "align-left" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "align-right" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "amend" +msgstr "" + +#: public/js/frappe/utils/utils.js:396 utils/data.py:1504 +msgid "and" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "arrow-down" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "arrow-left" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "arrow-right" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "arrow-up" +msgstr "" + +#: public/js/frappe/ui/sort_selector.html:5 +#: public/js/frappe/ui/sort_selector.js:48 +msgid "ascending" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "asterisk" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "backward" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "ban-circle" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "barcode" +msgstr "" + +#: model/document.py:1341 +msgid "beginning with" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "bell" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "blue" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "bold" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "book" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "bookmark" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "briefcase" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "bullhorn" +msgstr "" + +#: public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "" + +#. Label of a Code field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "cProfile Output" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:286 +msgid "calendar" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "calendar" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "camera" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "cancel" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "canceled" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "certificate" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "check" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "chevron-down" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "chevron-left" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "chevron-right" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "chevron-up" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "circle-arrow-down" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "circle-arrow-left" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "circle-arrow-right" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "circle-arrow-up" +msgstr "" + +#: templates/includes/list/filters.html:19 +msgid "clear" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "cog" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "comment" +msgstr "" + +#: public/js/frappe/form/templates/timeline_message_box.html:33 +msgid "commented" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "create" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "cyan" +msgstr "" + +#: public/js/frappe/utils/utils.js:1114 +msgctxt "Days (Field: Duration)" +msgid "d" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "darkgrey" +msgstr "" + +#: core/page/dashboard_view/dashboard_view.js:65 +msgid "dashboard" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "dd-mm-yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "dd.mm.yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "dd/mm/yyyy" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "default" +msgstr "" + +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "default" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "deferred" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "delete" +msgstr "" + +#: public/js/frappe/ui/sort_selector.html:5 +#: public/js/frappe/ui/sort_selector.js:48 +msgid "descending" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:163 +msgid "document type..., e.g. customer" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "download" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "download-alt" +msgstr "" + +#. Description of the 'Email Account Name' (Data) field in DocType 'Email +#. Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:183 +msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." +msgstr "" + +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "e.g. pop.gmail.com / imap.gmail.com" +msgstr "" + +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "e.g. pop.gmail.com / imap.gmail.com" +msgstr "" + +#. Description of the 'Default Incoming' (Check) field in DocType 'Email +#. Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." +msgstr "" + +#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "e.g. smtp.gmail.com" +msgstr "" + +#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "e.g. smtp.gmail.com" +msgstr "" + +#: custom/doctype/custom_field/custom_field.js:98 +msgid "e.g.:" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "edit" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "eject" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "email" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "email" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:305 +msgid "email inbox" +msgstr "" + +#: permissions.py:407 permissions.py:418 +#: public/js/frappe/form/controls/link.js:481 +msgid "empty" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "envelope" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "exclamation-sign" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "export" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "eye-close" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "eye-open" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "facebook" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "facetime-video" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "failed" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: integrations/doctype/social_login_key/social_login_key.json +msgctxt "Social Login Key" +msgid "fairlogin" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "fast-backward" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "fast-forward" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "file" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "film" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "filter" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "finished" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "fire" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "flag" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "folder-close" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "folder-open" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "font" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "forward" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "fullscreen" +msgstr "" + +#: public/js/frappe/utils/energy_point_utils.js:61 +msgid "gained by {0} via automatic rule {1}" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "gift" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "glass" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "globe" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "gray" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "green" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "grey" +msgstr "" + +#: utils/backups.py:373 +msgid "gzip not found in PATH! This is required to take a backup." +msgstr "" + +#: public/js/frappe/utils/utils.js:1118 +msgctxt "Hours (Field: Duration)" +msgid "h" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "hand-down" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "hand-left" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "hand-right" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "hand-up" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "hdd" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "headphones" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "heart" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "home" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:296 +msgid "hub" +msgstr "" + +#. Label of a Data field in DocType 'Page' +#: core/doctype/page/page.json +msgctxt "Page" +msgid "icon" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "import" +msgstr "" + +#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' +#: website/doctype/blog_post/blog_post.json +msgctxt "Blog Post" +msgid "in minutes" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "inbox" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "indent-left" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "indent-right" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "info-sign" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "italic" +msgstr "" + +#: templates/signup.html:11 www/login.html:10 +msgid "jane@example.com" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:46 +msgid "just now" +msgstr "" + +#: desk/desktop.py:255 desk/query_report.py:277 +msgid "label" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "leaf" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "light-blue" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "link" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "linkedin" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "list" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "list" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "list-alt" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "lock" +msgstr "" + +#: www/third_party_apps.html:41 +msgid "logged in" +msgstr "" + +#: website/doctype/web_form/web_form.js:362 +msgid "login_required" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "long" +msgstr "" + +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "long" +msgstr "" + +#: public/js/frappe/utils/utils.js:1122 +msgctxt "Minutes (Field: Duration)" +msgid "m" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "magnet" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "map-marker" +msgstr "" + +#: model/rename_doc.py:212 +msgid "merged {0} into {1}" +msgstr "" + +#: website/doctype/blog_post/templates/blog_post.html:25 +#: website/doctype/blog_post/templates/blog_post_row.html:36 +msgid "min read" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "minus" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "minus-sign" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "mm-dd-yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "mm/dd/yyyy" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "module" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:178 +msgid "module name..." +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "move" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "music" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:160 +msgid "new" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:158 +msgid "new type of document" +msgstr "" + +#. Label of a Int field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "no failed attempts" +msgstr "" + +#. Label of a Data field in DocType 'OAuth Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "nonce" +msgstr "" + +#: model/document.py:1340 +msgid "none of" +msgstr "" + +#. Label of a Check field in DocType 'Reminder' +#: automation/doctype/reminder/reminder.json +msgctxt "Reminder" +msgid "notified" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:25 +msgid "now" +msgstr "" + +#: public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "off" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "ok" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "ok-circle" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "ok-sign" +msgstr "" + +#. Label of a Data field in DocType 'File' +#: core/doctype/file/file.json +msgctxt "File" +msgid "old_parent" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_cancel" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_change" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_submit" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_trash" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_update" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "on_update_after_submit" +msgstr "" + +#: model/document.py:1339 +msgid "one of" +msgstr "" + +#: public/js/frappe/utils/utils.js:393 www/login.html:87 www/login.py:101 +msgid "or" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "orange" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "page" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "pause" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "pencil" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "picture" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "pink" +msgstr "" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "plain" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "plane" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "play" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "play-circle" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "plus" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "plus-sign" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "print" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "print" +msgstr "" + +#. Label of a HTML field in DocType 'System Console' +#: desk/doctype/system_console/system_console.json +msgctxt "System Console" +msgid "processlist" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "purple" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "qrcode" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: desk/doctype/desktop_icon/desktop_icon.json +msgctxt "Desktop Icon" +msgid "query-report" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "question-sign" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "queued" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "random" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "read" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "red" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "refresh" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "remove" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "remove-circle" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "remove-sign" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:221 +msgid "removed rows for {0}" +msgstr "" + +#: model/rename_doc.py:214 +msgid "renamed from {0} to {1}" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "repeat" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "report" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "resize-full" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "resize-horizontal" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "resize-small" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "resize-vertical" +msgstr "" + +#. Label of a HTML field in DocType 'Custom Role' +#: core/doctype/custom_role/custom_role.json +msgctxt "Custom Role" +msgid "response" +msgstr "" + +#: core/doctype/deleted_document/deleted_document.py:61 +msgid "restored {0} as {1}" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "retweet" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "road" +msgstr "" + +#: public/js/frappe/utils/utils.js:1126 +msgctxt "Seconds (Field: Duration)" +msgid "s" +msgstr "" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgctxt "OAuth Authorization Code" +msgid "s256" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "scheduled" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "screenshot" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "search" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "select" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "share" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "share" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "share-alt" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "shopping-cart" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "short" +msgstr "" + +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: core/doctype/rq_worker/rq_worker.json +msgctxt "RQ Worker" +msgid "short" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "signal" +msgstr "" + +#: public/js/frappe/widgets/number_card_widget.js:282 +msgid "since last month" +msgstr "" + +#: public/js/frappe/widgets/number_card_widget.js:281 +msgid "since last week" +msgstr "" + +#: public/js/frappe/widgets/number_card_widget.js:283 +msgid "since last year" +msgstr "" + +#: public/js/frappe/widgets/number_card_widget.js:280 +msgid "since yesterday" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "star" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "star-empty" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: core/doctype/rq_job/rq_job.json +msgctxt "RQ Job" +msgid "started" +msgstr "" + +#: desk/page/setup_wizard/setup_wizard.js:194 +msgid "starting the setup..." +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "step-backward" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "step-forward" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "stop" +msgstr "" + +#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP +#. Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "string value, i.e. group" +msgstr "" + +#. Description of the 'LDAP Group Member attribute' (Data) field in DocType +#. 'LDAP Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "string value, i.e. member" +msgstr "" + +#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP +#. Settings' +#: integrations/doctype/ldap_settings/ldap_settings.json +msgctxt "LDAP Settings" +msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "submit" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "tag" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:173 +msgid "tag name..., e.g. #tag" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "tags" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "tasks" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:168 +msgid "text in document type" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "text-height" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "text-width" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "th" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "th-large" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "th-list" +msgstr "" + +#: public/js/frappe/form/controls/data.js:35 +msgid "this form" +msgstr "" + +#: tests/test_translate.py:157 +msgid "this shouldn't break" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "thumbs-down" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "thumbs-up" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "time" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "tint" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "trash" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: website/doctype/social_link_settings/social_link_settings.json +msgctxt "Social Link Settings" +msgid "twitter" +msgstr "" + +#: public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "upload" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:340 +msgid "use % as wildcard" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "user" +msgstr "" + +#: public/js/frappe/ui/filters/filter.js:339 +msgid "values separated by commas" +msgstr "" + +#. Label of a HTML field in DocType 'Audit Trail' +#: core/doctype/audit_trail/audit_trail.json +msgctxt "Audit Trail" +msgid "version_table" +msgstr "" + +#: automation/doctype/assignment_rule/assignment_rule.py:380 +msgid "via Assignment Rule" +msgstr "" + +#: core/doctype/data_import/importer.py:255 +#: core/doctype/data_import/importer.py:276 +msgid "via Data Import" +msgstr "" + +#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "via Google Meet" +msgstr "" + +#: email/doctype/notification/notification.py:215 +msgid "via Notification" +msgstr "" + +#: public/js/frappe/utils/energy_point_utils.js:46 +msgid "via automatic rule {0} on {1}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:17 +msgid "via {0}" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "volume-down" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "volume-off" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "volume-up" +msgstr "" + +#: templates/includes/oauth_confirmation.html:5 +msgid "wants to access the following details from your account" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "warning-sign" +msgstr "" + +#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour +#. Step' +#: desk/doctype/form_tour_step/form_tour_step.json +msgctxt "Form Tour Step" +msgid "when clicked on element it will focus popover if present." +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "wrench" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: core/doctype/permission_inspector/permission_inspector.json +msgctxt "Permission Inspector" +msgid "write" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: desk/doctype/workspace/workspace.json +msgctxt "Workspace" +msgid "yellow" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:58 +msgid "yesterday" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "yyyy-mm-dd" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "zoom-in" +msgstr "" + +#. Option for the 'Icon' (Select) field in DocType 'Workflow State' +#: workflow/doctype/workflow_state/workflow_state.json +msgctxt "Workflow State" +msgid "zoom-out" +msgstr "" + +#: desk/doctype/event/event.js:87 +msgid "{0}" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:193 +msgid "{0} ${skip_list ? \"\" : type}" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:198 +msgid "{0} ${type}" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:79 +#: public/js/frappe/views/gantt/gantt_view.js:54 +msgid "{0} ({1})" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:76 +msgid "{0} ({1}) (1 row mandatory)" +msgstr "" + +#: public/js/frappe/views/gantt/gantt_view.js:53 +msgid "{0} ({1}) - {2}%" +msgstr "" + +#: public/js/frappe/ui/toolbar/awesome_bar.js:348 +#: public/js/frappe/ui/toolbar/awesome_bar.js:351 +msgid "{0} = {1}" +msgstr "" + +#: public/js/frappe/views/calendar/calendar.js:30 +msgid "{0} Calendar" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:539 +msgid "{0} Chart" +msgstr "" + +#: core/page/dashboard_view/dashboard_view.js:67 +#: public/js/frappe/ui/toolbar/search_utils.js:347 +#: public/js/frappe/ui/toolbar/search_utils.js:348 +#: public/js/frappe/utils/utils.js:930 +#: public/js/frappe/views/dashboard/dashboard_view.js:10 +msgid "{0} Dashboard" +msgstr "" + +#: public/js/frappe/form/grid_row.js:457 +#: public/js/frappe/list/list_settings.js:224 +#: public/js/frappe/views/kanban/kanban_settings.js:178 +msgid "{0} Fields" +msgstr "" + +#: integrations/doctype/google_calendar/google_calendar.py:361 +msgid "{0} Google Calendar Events synced." +msgstr "" + +#: integrations/doctype/google_contacts/google_contacts.py:193 +msgid "{0} Google Contacts synced." +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:463 +msgid "{0} Liked" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:83 +#: public/js/frappe/ui/toolbar/search_utils.js:84 +#: public/js/frappe/utils/utils.js:924 +#: public/js/frappe/widgets/chart_widget.js:317 www/list.html:4 www/list.html:8 +msgid "{0} List" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:37 +msgid "{0} M" +msgstr "" + +#: public/js/frappe/views/map/map_view.js:14 +msgid "{0} Map" +msgstr "" + +#: public/js/frappe/utils/utils.js:927 +msgid "{0} Modules" +msgstr "" + +#: public/js/frappe/form/quick_entry.js:118 +msgid "{0} Name" +msgstr "" + +#: model/base_document.py:1052 +msgid "{0} Not allowed to change {1} after submission from {2} to {3}" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:95 +#: public/js/frappe/ui/toolbar/search_utils.js:96 +#: public/js/frappe/utils/utils.js:921 +#: public/js/frappe/widgets/chart_widget.js:325 +msgid "{0} Report" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:882 +msgid "{0} Reports" +msgstr "" + +#: public/js/frappe/list/list_settings.js:32 +#: public/js/frappe/views/kanban/kanban_settings.js:26 +msgid "{0} Settings" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:87 +#: public/js/frappe/ui/toolbar/search_utils.js:88 +#: public/js/frappe/views/treeview.js:139 +msgid "{0} Tree" +msgstr "" + +#: public/js/frappe/list/base_list.js:209 +msgid "{0} View" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:126 +#: public/js/frappe/form/sidebar/form_sidebar.js:86 +msgid "{0} Web page views" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:91 +#: public/js/frappe/ui/toolbar/search_utils.js:92 +msgid "{0} Workspace" +msgstr "" + +#: public/js/frappe/form/link_selector.js:225 +msgid "{0} added" +msgstr "" + +#: public/js/frappe/form/controls/data.js:203 +msgid "{0} already exists. Select another name" +msgstr "" + +#: email/doctype/email_unsubscribe/email_unsubscribe.py:36 +msgid "{0} already unsubscribed" +msgstr "" + +#: email/doctype/email_unsubscribe/email_unsubscribe.py:49 +msgid "{0} already unsubscribed for {1} {2}" +msgstr "" + +#: utils/data.py:1687 +msgid "{0} and {1}" +msgstr "" + +#: public/js/frappe/utils/energy_point_utils.js:38 +msgid "{0} appreciated on {1}" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:126 +#: social/doctype/energy_point_log/energy_point_log.py:163 +msgid "{0} appreciated your work on {1} with {2} point" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:128 +#: social/doctype/energy_point_log/energy_point_log.py:165 +msgid "{0} appreciated your work on {1} with {2} points" +msgstr "" + +#: public/js/frappe/utils/energy_point_utils.js:53 +msgid "{0} appreciated {1}" +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:148 +msgid "{0} appreciation point for {1}" +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:150 +msgid "{0} appreciation points for {1}" +msgstr "" + +#: public/js/frappe/form/sidebar/form_sidebar_users.js:72 +msgid "{0} are currently {1}" +msgstr "" + +#: printing/doctype/print_format/print_format.py:87 +msgid "{0} are required" +msgstr "" + +#: desk/form/assign_to.py:283 +msgid "{0} assigned a new task {1} {2} to you" +msgstr "" + +#: desk/doctype/todo/todo.py:48 +msgid "{0} assigned {1}: {2}" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:414 +msgctxt "Form timeline" +msgid "{0} attached {1}" +msgstr "" + +#: core/doctype/system_settings/system_settings.py:142 +msgid "{0} can not be more than {1}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:77 +msgid "{0} cancelled this document" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:68 +msgctxt "Form timeline" +msgid "{0} cancelled this document {1}" +msgstr "" + +#: public/js/form_builder/store.js:190 +msgid "{0} cannot be hidden and mandatory without any default value" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:124 +msgid "{0} changed the value of {1}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:115 +msgid "{0} changed the value of {1} {2}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:186 +msgid "{0} changed the values for {1}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:177 +msgid "{0} changed the values for {1} {2}" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:443 +msgctxt "Form timeline" +msgid "{0} changed {1} to {2}" +msgstr "" + +#: website/doctype/blog_post/blog_post.py:376 +msgid "{0} comments" +msgstr "" + +#: public/js/frappe/views/interaction.js:261 +msgid "{0} created successfully" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:139 +#: public/js/frappe/form/sidebar/form_sidebar.js:107 +msgid "{0} created this" +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:154 +msgid "{0} criticism point for {1}" +msgstr "" + +#: public/js/frappe/form/sidebar/review.js:156 +msgid "{0} criticism points for {1}" +msgstr "" + +#: public/js/frappe/utils/energy_point_utils.js:41 +msgid "{0} criticized on {1}" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:132 +#: social/doctype/energy_point_log/energy_point_log.py:170 +msgid "{0} criticized your work on {1} with {2} point" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:134 +#: social/doctype/energy_point_log/energy_point_log.py:172 +msgid "{0} criticized your work on {1} with {2} points" +msgstr "" + +#: public/js/frappe/utils/energy_point_utils.js:56 +msgid "{0} criticized {1}" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:33 +msgid "{0} d" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:60 +msgid "{0} days ago" +msgstr "" + +#: website/doctype/website_settings/website_settings.py:96 +#: website/doctype/website_settings/website_settings.py:116 +msgid "{0} does not exist in row {1}" +msgstr "" + +#: database/mariadb/schema.py:126 database/postgres/schema.py:178 +msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" +msgstr "" + +#: core/doctype/data_import/importer.py:1012 +msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:97 +msgid "{0} from {1} to {2}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:157 +msgid "{0} from {1} to {2} in row #{3}" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:120 +msgid "{0} gained {1} point for {2} {3}" +msgstr "" + +#: templates/emails/energy_points_summary.html:8 +msgid "{0} gained {1} points" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:122 +msgid "{0} gained {1} points for {2} {3}" +msgstr "" + +#: templates/emails/energy_points_summary.html:23 +msgid "{0} gave {1} points" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:29 +msgid "{0} h" +msgstr "" + +#: core/doctype/user_permission/user_permission.py:77 +msgid "{0} has already assigned default value for {1}." +msgstr "" + +#: email/doctype/newsletter/newsletter.py:380 +msgid "{0} has been successfully added to the Email Group." +msgstr "" + +#: email/queue.py:123 +msgid "{0} has left the conversation in {1} {2}" +msgstr "" + +#: __init__.py:2483 +msgid "{0} has no versions tracked." +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:54 +msgid "{0} hours ago" +msgstr "" + +#: website/doctype/web_form/templates/web_form.html:145 +msgid "{0} if you are not redirected within {1} seconds" +msgstr "" + +#: website/doctype/website_settings/website_settings.py:102 +#: website/doctype/website_settings/website_settings.py:122 +msgid "{0} in row {1} cannot have both URL and child items" +msgstr "" + +#: core/doctype/doctype/doctype.py:915 +msgid "{0} is a mandatory field" +msgstr "" + +#: core/doctype/file/file.py:503 +msgid "{0} is a not a valid zip file" +msgstr "" + +#: core/doctype/doctype/doctype.py:1555 +msgid "{0} is an invalid Data field." +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.py:148 +msgid "{0} is an invalid email address in 'Recipients'" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1391 +msgid "{0} is between {1} and {2}" +msgstr "" + +#: public/js/frappe/form/sidebar/form_sidebar_users.js:41 +#: public/js/frappe/form/sidebar/form_sidebar_users.js:69 +msgid "{0} is currently {1}" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1360 +msgid "{0} is equal to {1}" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1380 +msgid "{0} is greater than or equal to {1}" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1370 +msgid "{0} is greater than {1}" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1385 +msgid "{0} is less than or equal to {1}" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1375 +msgid "{0} is less than {1}" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1410 +msgid "{0} is like {1}" +msgstr "" + +#: email/doctype/email_account/email_account.py:176 +msgid "{0} is mandatory" +msgstr "" + +#: core/doctype/document_naming_rule/document_naming_rule.py:50 +msgid "{0} is not a field of doctype {1}" +msgstr "" + +#: www/printview.py:359 +msgid "{0} is not a raw printing format." +msgstr "" + +#: public/js/frappe/views/calendar/calendar.js:82 +msgid "{0} is not a valid Calendar. Redirecting to default Calendar." +msgstr "" + +#: core/doctype/scheduled_job_type/scheduled_job_type.py:62 +msgid "{0} is not a valid Cron expression." +msgstr "" + +#: public/js/frappe/form/controls/dynamic_link.js:27 +msgid "{0} is not a valid DocType for Dynamic Link" +msgstr "" + +#: email/doctype/email_group/email_group.py:131 utils/__init__.py:189 +msgid "{0} is not a valid Email Address" +msgstr "" + +#: utils/__init__.py:157 +msgid "{0} is not a valid Name" +msgstr "" + +#: utils/__init__.py:136 +msgid "{0} is not a valid Phone Number" +msgstr "" + +#: model/workflow.py:182 +msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." +msgstr "" + +#: permissions.py:791 +msgid "{0} is not a valid parent DocType for {1}" +msgstr "" + +#: permissions.py:811 +msgid "{0} is not a valid parentfield for {1}" +msgstr "" + +#: email/doctype/auto_email_report/auto_email_report.py:115 +msgid "{0} is not a valid report format. Report format should one of the following {1}" +msgstr "" + +#: core/doctype/file/file.py:483 +msgid "{0} is not a zip file" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1365 +msgid "{0} is not equal to {1}" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1412 +msgid "{0} is not like {1}" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1406 +msgid "{0} is not one of {1}" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1416 +msgid "{0} is not set" +msgstr "" + +#: printing/doctype/print_format/print_format.py:163 +msgid "{0} is now default print format for {1} doctype" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1399 +msgid "{0} is one of {1}" +msgstr "" + +#: email/doctype/email_account/email_account.py:277 model/naming.py:202 +#: printing/doctype/print_format/print_format.py:90 utils/csvutils.py:131 +msgid "{0} is required" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1415 +msgid "{0} is set" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1394 +msgid "{0} is within {1}" +msgstr "" + +#: public/js/frappe/list/list_view.js:1602 +msgid "{0} items selected" +msgstr "" + +#: core/doctype/user/user.py:1381 +msgid "{0} just impersonated as you. They gave this reason: {1}" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:150 +#: public/js/frappe/form/sidebar/form_sidebar.js:96 +msgid "{0} last edited this" +msgstr "" + +#: core/doctype/activity_log/feed.py:13 +msgid "{0} logged in" +msgstr "" + +#: core/doctype/activity_log/feed.py:19 +msgid "{0} logged out: {1}" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:27 +msgid "{0} m" +msgstr "" + +#: desk/notifications.py:374 +msgid "{0} mentioned you in a comment in {1} {2}" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:50 +msgid "{0} minutes ago" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:68 +msgid "{0} months ago" +msgstr "" + +#: model/document.py:1594 +msgid "{0} must be after {1}" +msgstr "" + +#: utils/csvutils.py:136 +msgid "{0} must be one of {1}" +msgstr "" + +#: model/base_document.py:790 +msgid "{0} must be set first" +msgstr "" + +#: model/base_document.py:648 +msgid "{0} must be unique" +msgstr "" + +#: core/doctype/language/language.py:43 +msgid "{0} must begin and end with a letter and can only contain letters,\n" +"\t\t\t\thyphen or underscore." +msgstr "" + +#: workflow/doctype/workflow/workflow.py:91 +msgid "{0} not a valid State" +msgstr "" + +#: model/rename_doc.py:380 +msgid "{0} not allowed to be renamed" +msgstr "" + +#: desk/doctype/desktop_icon/desktop_icon.py:365 +msgid "{0} not found" +msgstr "" + +#: core/doctype/report/report.py:419 public/js/frappe/list/list_view.js:987 +msgid "{0} of {1}" +msgstr "" + +#: public/js/frappe/list/list_view.js:989 +msgid "{0} of {1} ({2} rows with children)" +msgstr "" + +#: email/doctype/newsletter/newsletter.js:205 +msgid "{0} of {1} sent" +msgstr "" + +#: utils/data.py:1507 +msgctxt "Money in words" +msgid "{0} only." +msgstr "" + +#: utils/data.py:1677 +msgid "{0} or {1}" +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:177 +msgid "{0} record deleted" +msgstr "" + +#: public/js/frappe/logtypes.js:22 +msgid "{0} records are not automatically deleted." +msgstr "" + +#: public/js/frappe/logtypes.js:29 +msgid "{0} records are retained for {1} days." +msgstr "" + +#: core/doctype/user_permission/user_permission_list.js:179 +msgid "{0} records deleted" +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:228 +msgid "{0} records will be exported" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:419 +msgctxt "Form timeline" +msgid "{0} removed attachment {1}" +msgstr "" + +#: desk/doctype/todo/todo.py:58 +msgid "{0} removed their assignment." +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:139 +#: social/doctype/energy_point_log/energy_point_log.py:178 +msgid "{0} reverted your point on {1}" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:141 +#: social/doctype/energy_point_log/energy_point_log.py:180 +msgid "{0} reverted your points on {1}" +msgstr "" + +#: public/js/frappe/utils/energy_point_utils.js:44 +#: public/js/frappe/utils/energy_point_utils.js:59 +msgid "{0} reverted {1}" +msgstr "" + +#: public/js/frappe/roles_editor.js:62 +msgid "{0} role does not have permission on any doctype" +msgstr "" + +#: desk/query_report.py:576 +msgid "{0} saved successfully" +msgstr "" + +#: desk/doctype/todo/todo.py:44 +msgid "{0} self assigned this task: {1}" +msgstr "" + +#: share.py:233 +msgid "{0} shared a document {1} {2} with you" +msgstr "" + +#: core/doctype/docshare/docshare.py:77 +msgid "{0} shared this document with everyone" +msgstr "" + +#: core/doctype/docshare/docshare.py:80 +msgid "{0} shared this document with {1}" +msgstr "" + +#: core/doctype/doctype/doctype.py:315 +msgid "{0} should be indexed because it's referred in dashboard connections" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.py:137 +msgid "{0} should not be same as {1}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:51 +msgid "{0} submitted this document" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:42 +msgctxt "Form timeline" +msgid "{0} submitted this document {1}" +msgstr "" + +#: email/doctype/email_group/email_group.py:62 +#: email/doctype/email_group/email_group.py:133 +msgid "{0} subscribers added" +msgstr "" + +#: email/queue.py:68 +msgid "{0} to stop receiving emails of this type" +msgstr "" + +#: public/js/frappe/form/controls/date_range.js:46 +#: public/js/frappe/form/controls/date_range.js:62 +#: public/js/frappe/form/formatters.js:234 +msgid "{0} to {1}" +msgstr "" + +#: core/doctype/docshare/docshare.py:89 +msgid "{0} un-shared this document with {1}" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:249 +msgid "{0} updated" +msgstr "" + +#: public/js/frappe/form/controls/multiselect_list.js:182 +msgid "{0} values selected" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:183 +msgid "{0} viewed this" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:35 +msgid "{0} w" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:64 +msgid "{0} weeks ago" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:39 +msgid "{0} y" +msgstr "" + +#: public/js/frappe/utils/pretty_date.js:72 +msgid "{0} years ago" +msgstr "" + +#: public/js/frappe/form/link_selector.js:219 +msgid "{0} {1} added" +msgstr "" + +#: public/js/frappe/utils/dashboard_utils.js:270 +msgid "{0} {1} added to Dashboard {2}" +msgstr "" + +#: model/base_document.py:581 model/rename_doc.py:110 +msgid "{0} {1} already exists" +msgstr "" + +#: model/base_document.py:898 +msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" +msgstr "" + +#: utils/nestedset.py:337 +msgid "{0} {1} cannot be a leaf node as it has children" +msgstr "" + +#: model/rename_doc.py:371 +msgid "{0} {1} does not exist, select a new target to merge" +msgstr "" + +#: public/js/frappe/form/form.js:970 +msgid "{0} {1} is linked with the following submitted documents: {2}" +msgstr "" + +#: model/document.py:173 permissions.py:564 +msgid "{0} {1} not found" +msgstr "" + +#: model/delete_doc.py:242 +msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." +msgstr "" + +#: model/base_document.py:1013 +msgid "{0}, Row {1}" +msgstr "" + +#: model/base_document.py:1018 +msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1739 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "" + +#: core/doctype/doctype/doctype.py:1757 +msgid "{0}: Cannot set Assign Amend if not Submittable" +msgstr "" + +#: core/doctype/doctype/doctype.py:1755 +msgid "{0}: Cannot set Assign Submit if not Submittable" +msgstr "" + +#: core/doctype/doctype/doctype.py:1734 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "" + +#: core/doctype/doctype/doctype.py:1741 +msgid "{0}: Cannot set Import without Create" +msgstr "" + +#: core/doctype/doctype/doctype.py:1737 +msgid "{0}: Cannot set Submit, Cancel, Amend without Write" +msgstr "" + +#: core/doctype/doctype/doctype.py:1761 +msgid "{0}: Cannot set import as {1} is not importable" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.py:394 +msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" +msgstr "" + +#: core/doctype/doctype/doctype.py:1375 +msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" +msgstr "" + +#: core/doctype/doctype/doctype.py:1283 +msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" +msgstr "" + +#: core/doctype/doctype/doctype.py:1242 +msgid "{0}: Field {1} of type {2} cannot be mandatory" +msgstr "" + +#: core/doctype/doctype/doctype.py:1230 +msgid "{0}: Fieldname {1} appears multiple times in rows {2}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1362 +msgid "{0}: Fieldtype {1} for {2} cannot be unique" +msgstr "" + +#: core/doctype/doctype/doctype.py:1694 +msgid "{0}: No basic permissions set" +msgstr "" + +#: core/doctype/doctype/doctype.py:1708 +msgid "{0}: Only one rule allowed with the same Role, Level and {1}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1264 +msgid "{0}: Options must be a valid DocType for field {1} in row {2}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1253 +msgid "{0}: Options required for Link or Table type field {1} in row {2}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1271 +msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" +msgstr "" + +#: public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "" + +#: core/doctype/doctype/doctype.py:1723 +msgid "{0}: Permission at level 0 must be set before higher levels are set" +msgstr "" + +#: public/js/frappe/form/controls/data.js:50 +msgid "{0}: You can increase the limit for the field if required via {1}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1217 +msgid "{0}: fieldname cannot be set to reserved keyword {1}" +msgstr "" + +#: contacts/doctype/address/address.js:35 +#: contacts/doctype/contact/contact.js:83 +#: public/js/frappe/views/workspace/workspace.js:169 +msgid "{0}: {1}" +msgstr "" + +#: workflow/doctype/workflow_action/workflow_action.py:167 +msgid "{0}: {1} is set to state {2}" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1204 +msgid "{0}: {1} vs {2}" +msgstr "" + +#: core/doctype/doctype/doctype.py:1383 +msgid "{0}:Fieldtype {1} for {2} cannot be indexed" +msgstr "" + +#: public/js/frappe/utils/datatable.js:12 +msgid "{count} cell copied" +msgstr "" + +#: public/js/frappe/utils/datatable.js:13 +msgid "{count} cells copied" +msgstr "" + +#: public/js/frappe/utils/datatable.js:16 +msgid "{count} row selected" +msgstr "" + +#: public/js/frappe/utils/datatable.js:17 +msgid "{count} rows selected" +msgstr "" + +#: core/doctype/doctype/doctype.py:1437 +msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." +msgstr "" + +#: public/js/frappe/form/form.js:553 +msgid "{} Complete" +msgstr "" + +#: utils/data.py:2421 +msgid "{} Invalid python code on line {}" +msgstr "" + +#: utils/data.py:2430 +msgid "{} Possibly invalid python code.
{}" +msgstr "" + +#: core/doctype/log_settings/log_settings.py:55 +msgid "{} does not support automated log clearing." +msgstr "" + +#: core/doctype/audit_trail/audit_trail.py:41 +msgid "{} field cannot be empty." +msgstr "" + +#: email/doctype/email_account/email_account.py:200 +#: email/doctype/email_account/email_account.py:208 +msgid "{} has been disabled. It can only be enabled if {} is checked." +msgstr "" + +#: utils/data.py:124 +msgid "{} is not a valid date string." +msgstr "" + +#: commands/utils.py:538 +msgid "{} not found in PATH! This is required to access the console." +msgstr "" + +#: database/db_manager.py:81 +msgid "{} not found in PATH! This is required to restore the database." +msgstr "" + +#: utils/backups.py:439 +msgid "{} not found in PATH! This is required to take a backup." +msgstr "" + diff --git a/frappe/locale/de.po b/frappe/locale/de.po index ee5f454cd6..cfedef7186 100644 --- a/frappe/locale/de.po +++ b/frappe/locale/de.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2024-03-24 09:33+0000\n" -"PO-Revision-Date: 2024-03-26 12:06\n" +"PO-Revision-Date: 2024-04-04 14:56\n" "Last-Translator: developers@frappe.io\n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -2510,11 +2510,11 @@ msgstr "Änderung" #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Amendment Naming Override" -msgstr "" +msgstr "Überschreibung der Berichtigungsbenennung" #: core/doctype/document_naming_settings/document_naming_settings.py:207 msgid "Amendment naming rules updated." -msgstr "" +msgstr "Benennungsregeln für Berichtigungen aktualisiert." #: public/js/frappe/ui/toolbar/toolbar.js:297 msgid "An error occurred while setting Session Defaults" @@ -2827,7 +2827,7 @@ msgstr "Genehmigung erforderlich" #: public/js/frappe/utils/number_systems.js:41 msgctxt "Number system" msgid "Ar" -msgstr "" +msgstr "Ar" #: public/js/frappe/views/kanban/kanban_column.html:14 msgid "Archive" @@ -3314,7 +3314,7 @@ msgstr "Zielgruppe" #. Name of a report #: custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" -msgstr "" +msgstr "System Hooks überprüfen" #. Name of a DocType #: core/doctype/audit_trail/audit_trail.json @@ -3497,11 +3497,11 @@ msgstr "Automatische Wiederholung" #. Name of a DocType #: automation/doctype/auto_repeat_day/auto_repeat_day.json msgid "Auto Repeat Day" -msgstr "" +msgstr "Tag mit automatischer Wiederholung" #: automation/doctype/auto_repeat/auto_repeat.py:159 msgid "Auto Repeat Day{0} {1} has been repeated." -msgstr "" +msgstr "Auto-Wiederholung Tag{0} {1} wurde wiederholt." #: automation/doctype/auto_repeat/auto_repeat.py:437 msgid "Auto Repeat Document Creation Failed" @@ -8710,7 +8710,7 @@ msgstr "Lösche {0} Einträge..." #: public/js/frappe/model/model.js:711 msgid "Deleting {0}..." -msgstr "" +msgstr "Lösche {0}..." #. Label of a Table field in DocType 'Personal Data Deletion Request' #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -9197,7 +9197,7 @@ msgstr "Verwerfen" #: public/js/frappe/web_form/web_form.js:184 msgid "Discard?" -msgstr "" +msgstr "Verwerfen?" #. Name of a DocType #: website/doctype/discussion_reply/discussion_reply.json @@ -10601,7 +10601,7 @@ msgstr "z. B. smsgateway.com/api/send_sms.cgi" #: rate_limiter.py:139 msgid "Either key or IP flag is required." -msgstr "" +msgstr "Entweder der key (Schlüssel) oder das IP-Flag ist erforderlich." #. Label of a Data field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -13573,7 +13573,7 @@ msgstr "Formular-Generator" #: core/doctype/recorder/recorder.json msgctxt "Recorder" msgid "Form Dict" -msgstr "" +msgstr "Formular Dict" #. Label of a Section Break field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -13617,19 +13617,19 @@ msgstr "Formular URL-verschlüsselt" #: public/js/frappe/widgets/widget_dialog.js:567 msgid "Format" -msgstr "" +msgstr "Formatierung" #. Label of a Select field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Format" -msgstr "" +msgstr "Formatierung" #. Label of a Data field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Format" -msgstr "" +msgstr "Formatierung" #. Label of a Code field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json @@ -17004,7 +17004,7 @@ msgstr "Ist Abfragebericht" #: integrations/doctype/integration_request/integration_request.json msgctxt "Integration Request" msgid "Is Remote Request?" -msgstr "" +msgstr "Ist dies eine Remote-Anfrage?" #: core/doctype/doctype/doctype_list.js:64 msgid "Is Single" @@ -18269,7 +18269,7 @@ msgstr "Like Limit pro Stunde" #: templates/includes/likes/likes.py:30 msgid "Like on {0}: {1}" -msgstr "" +msgstr "„Gefällt mir“ für {0}: {1}" #: desk/like.py:91 msgid "Liked" @@ -21219,7 +21219,7 @@ msgstr "Noch keine Kommentare" #: templates/includes/comments/comments.html:4 msgid "No comments yet. " -msgstr "" +msgstr "Noch keine Kommentare. " #: public/js/frappe/form/templates/contact_list.html:85 msgid "No contacts added yet." @@ -23161,7 +23161,7 @@ msgstr "Passwort überschreitet die maximal zulässige Länge." #: www/update-password.html:78 msgid "Passwords do not match" -msgstr "" +msgstr "Passwörter stimmen nicht überein" #: core/doctype/user/user.js:191 msgid "Passwords do not match!" @@ -25367,13 +25367,13 @@ msgstr "Erneut in der Konsole ausführen" #: email/doctype/email_account/email_account.py:660 msgid "Re:" -msgstr "" +msgstr "AW:" #: core/doctype/communication/communication.js:268 #: public/js/frappe/form/footer/form_timeline.js:587 #: public/js/frappe/views/communication.js:347 msgid "Re: {0}" -msgstr "" +msgstr "AW: {0}" #: client.py:459 msgid "Read" @@ -25622,12 +25622,12 @@ msgstr "Empfänger" #. Name of a DocType #: core/doctype/recorder/recorder.json msgid "Recorder" -msgstr "" +msgstr "Rekorder" #. Name of a DocType #: core/doctype/recorder_query/recorder_query.json msgid "Recorder Query" -msgstr "" +msgstr "Rekorder-Abfrage" #: core/doctype/user_permission/user_permission_help.html:2 msgid "Records for following doctypes will be filtered" @@ -26844,7 +26844,7 @@ msgstr "Benötigt einen gültigen fdn-Pfad. z.B. ou=users,dc=example,dc=com" #: core/doctype/communication/communication.js:279 msgid "Res: {0}" -msgstr "" +msgstr "AW: {0}" #: desk/doctype/form_tour/form_tour.js:101 #: desk/doctype/global_search_settings/global_search_settings.js:19 @@ -26955,7 +26955,7 @@ msgstr "Antwort" #: email/doctype/email_template/email_template.json msgctxt "Email Template" msgid "Response " -msgstr "" +msgstr "Antwort " #. Label of a Select field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json @@ -30631,13 +30631,13 @@ msgstr "Pos" #: core/doctype/recorder/recorder.js:33 msgid "Stack Trace" -msgstr "" +msgstr "Stack Trace" #. Label of a HTML field in DocType 'Recorder Query' #: core/doctype/recorder_query/recorder_query.json msgctxt "Recorder Query" msgid "Stack Trace" -msgstr "" +msgstr "Stack Trace" #: core/doctype/user_type/user_type_list.js:5 msgid "Standard" @@ -31264,7 +31264,7 @@ msgstr "Betreff Der Feldtyp sollte Daten, Text, Langtext, Kleiner Text, Textedit #. Name of a DocType #: core/doctype/submission_queue/submission_queue.json msgid "Submission Queue" -msgstr "" +msgstr "Buchungs-Warteschlange" #: core/doctype/user_permission/user_permission_list.js:138 #: public/js/frappe/form/quick_entry.js:198 @@ -33281,19 +33281,19 @@ msgstr "Titel der Seite" #: public/js/frappe/views/communication.js:53 #: public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" -msgstr "Zu" +msgstr "An" #. Label of a Code field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "To" -msgstr "Zu" +msgstr "An" #. Label of a Section Break field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "To" -msgstr "Zu" +msgstr "An" #: website/report/website_analytics/website_analytics.js:14 msgid "To Date" @@ -33706,7 +33706,7 @@ msgstr "E-Mail-Status verfolgen" #: automation/doctype/milestone/milestone.json msgctxt "Milestone" msgid "Track Field" -msgstr "" +msgstr "Verfolge Feld" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json @@ -35694,7 +35694,7 @@ msgstr "Tutorial ansehen" #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Watch Video" -msgstr "Schau Video" +msgstr "Video ansehen" #: desk/doctype/workspace/workspace.js:38 msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" @@ -35963,13 +35963,13 @@ msgstr "Website-Meta-Tag" #. Name of a DocType #: website/doctype/website_route_meta/website_route_meta.json msgid "Website Route Meta" -msgstr "" +msgstr "Meta-Tags für Website-Pfad" #. Label of a Link in the Website Workspace #: website/workspace/website/website.json msgctxt "Website Route Meta" msgid "Website Route Meta" -msgstr "" +msgstr "Meta-Tags für Website-Pfad" #. Name of a DocType #: website/doctype/website_route_redirect/website_route_redirect.json @@ -37372,7 +37372,7 @@ msgstr "Der Parameter `job_id` ist für die Deduplizierung erforderlich." #: public/js/frappe/form/footer/version_timeline_content_builder.js:219 msgid "added rows for {0}" -msgstr "Zeilen für {0} hinzugefügt" +msgstr "hat Zeilen für {0} hinzugefügt" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -37415,7 +37415,7 @@ msgstr "rechtsbündig" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "amend" -msgstr "" +msgstr "berichtigen" #: public/js/frappe/utils/utils.js:396 utils/data.py:1504 msgid "and" @@ -37551,13 +37551,13 @@ msgstr "Kamera" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "cancel" -msgstr "" +msgstr "stornieren" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json msgctxt "RQ Job" msgid "canceled" -msgstr "" +msgstr "storniert" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -37644,7 +37644,7 @@ msgstr "kommentierte(n)" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "create" -msgstr "" +msgstr "erstellen" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -37708,7 +37708,7 @@ msgstr "aufgeschoben" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "delete" -msgstr "" +msgstr "löschen" #: public/js/frappe/ui/sort_selector.html:5 #: public/js/frappe/ui/sort_selector.js:48 @@ -37860,7 +37860,7 @@ msgstr "Apple FaceTime-Video" #: core/doctype/rq_job/rq_job.json msgctxt "RQ Job" msgid "failed" -msgstr "" +msgstr "fehlgeschlagen" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' @@ -37903,7 +37903,7 @@ msgstr "Filter" #: core/doctype/rq_job/rq_job.json msgctxt "RQ Job" msgid "finished" -msgstr "" +msgstr "fertig" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -38495,7 +38495,7 @@ msgstr "zufällig" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "read" -msgstr "" +msgstr "lesen" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -38529,7 +38529,7 @@ msgstr "Entfernen-Zeichen" #: public/js/frappe/form/footer/version_timeline_content_builder.js:221 msgid "removed rows for {0}" -msgstr "entfernte Zeilen für {0}" +msgstr "hat Zeilen von {0} entfernt" #: model/rename_doc.py:214 msgid "renamed from {0} to {1}" @@ -38610,7 +38610,7 @@ msgstr "s256" #: core/doctype/rq_job/rq_job.json msgctxt "RQ Job" msgid "scheduled" -msgstr "" +msgstr "geplant" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -38629,7 +38629,7 @@ msgstr "Suche" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "select" -msgstr "" +msgstr "auswählen" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -38706,7 +38706,7 @@ msgstr "sternenleer" #: core/doctype/rq_job/rq_job.json msgctxt "RQ Job" msgid "started" -msgstr "" +msgstr "gestartet" #: desk/page/setup_wizard/setup_wizard.js:194 msgid "starting the setup..." @@ -38756,7 +38756,7 @@ msgstr "String-Wert, z.B {0} oder uid={0},ou=users,dc=example,dc=com" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "submit" -msgstr "" +msgstr "buchen" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -38962,7 +38962,7 @@ msgstr "Schraubenschlüssel" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "write" -msgstr "" +msgstr "schreiben" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json diff --git a/frappe/locale/es.po b/frappe/locale/es.po index 05be7f9334..8404fcfb50 100644 --- a/frappe/locale/es.po +++ b/frappe/locale/es.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2024-03-24 09:33+0000\n" -"PO-Revision-Date: 2024-03-26 12:06\n" +"PO-Revision-Date: 2024-04-03 14:58\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -830,7 +830,7 @@ msgstr "TODOS" #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "API" -msgstr "" +msgstr "API" #. Label of a Section Break field in DocType 'S3 Backup Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json @@ -848,7 +848,7 @@ msgstr "Acceso API" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "API Endpoint" -msgstr "" +msgstr "Endpoint de la API" #. Label of a Code field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json @@ -886,7 +886,7 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "API Key cannot be regenerated" -msgstr "" +msgstr "No se puede regenerar la clave API" #. Label of a Data field in DocType 'Server Script' #: core/doctype/server_script/server_script.json @@ -1081,7 +1081,7 @@ msgstr "Acción / Ruta" #: public/js/frappe/widgets/onboarding_widget.js:310 #: public/js/frappe/widgets/onboarding_widget.js:381 msgid "Action Complete" -msgstr "" +msgstr "Acción completada" #: model/document.py:1678 msgid "Action Failed" @@ -1107,11 +1107,11 @@ msgstr "Tipo de Acción" #: core/doctype/submission_queue/submission_queue.py:120 msgid "Action {0} completed successfully on {1} {2}. View it {3}" -msgstr "" +msgstr "Acción {0} completada con éxito en {1} {2}. Véalo en {3}" #: core/doctype/submission_queue/submission_queue.py:116 msgid "Action {0} failed on {1} {2}. View it {3}" -msgstr "" +msgstr "La acción {0} falló en {1} {2}. Véalo en {3}" #: core/doctype/communication/communication.js:66 #: core/doctype/communication/communication.js:74 @@ -1152,7 +1152,7 @@ msgstr "Acciones" #: core/doctype/package_import/package_import.json msgctxt "Package Import" msgid "Activate" -msgstr "" +msgstr "Activar" #: core/doctype/recorder/recorder_list.js:207 core/doctype/user/user_list.js:12 #: workflow/doctype/workflow/workflow_list.js:5 @@ -1262,12 +1262,12 @@ msgstr "Añadir un adjunto" #: website/doctype/web_page_block/web_page_block.json msgctxt "Web Page Block" msgid "Add Background Image" -msgstr "" +msgstr "Añadir imagen de fondo" #. Title of an Onboarding Step #: website/onboarding_step/add_blog_category/add_blog_category.json msgid "Add Blog Category" -msgstr "" +msgstr "Añadir Categoría Blog" #. Label of a Check field in DocType 'Web Page Block' #: website/doctype/web_page_block/web_page_block.json @@ -2356,7 +2356,7 @@ msgstr "Un archivo de icono con .ico extensión. Debería ser de 16 x 16 píxele #: templates/includes/oauth_confirmation.html:35 msgid "An unexpected error occurred while authorizing {}." -msgstr "" +msgstr "Se produjo un error inesperado al autorizar {}." #. Label of a Section Break field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -2378,7 +2378,7 @@ msgstr "Anual" #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgctxt "Personal Data Deletion Request" msgid "Anonymization Matrix" -msgstr "" +msgstr "Matriz de anonimización" #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json @@ -2408,13 +2408,13 @@ msgstr "" #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "App" -msgstr "" +msgstr "App" #. Label of a Data field in DocType 'Website Theme Ignore App' #: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json msgctxt "Website Theme Ignore App" msgid "App" -msgstr "" +msgstr "App" #. Label of a Data field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json @@ -2442,17 +2442,17 @@ msgstr "Clave Secreta de Aplicación" #: integrations/doctype/google_settings/google_settings.json msgctxt "Google Settings" msgid "App ID" -msgstr "" +msgstr "ID de la App" #: public/js/frappe/ui/toolbar/navbar.html:8 msgid "App Logo" -msgstr "" +msgstr "Logo de la App" #. Label of a Attach Image field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "App Logo" -msgstr "" +msgstr "Logo de la App" #: core/doctype/installed_applications/installed_applications.js:27 msgid "App Name" @@ -2484,7 +2484,7 @@ msgstr "Clave Secreta de Aplicación" #: modules/utils.py:262 msgid "App not found for module: {0}" -msgstr "" +msgstr "App no encontrada para el módulo: {0}" #: __init__.py:1784 msgid "App {0} is not installed" @@ -2783,7 +2783,7 @@ msgstr "Asignar a usuarios" #: public/js/frappe/form/sidebar/assign_to.js:232 msgid "Assign a user" -msgstr "" +msgstr "Asignar a usuario" #: automation/doctype/assignment_rule/assignment_rule.js:52 msgid "Assign one by one, in sequence" @@ -2842,7 +2842,7 @@ msgstr "Asignado a / Propietario" #: public/js/frappe/form/sidebar/assign_to.js:241 msgid "Assigning..." -msgstr "" +msgstr "Asignando..." #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json @@ -3220,7 +3220,7 @@ msgstr "Código de Autorización" #: integrations/doctype/connected_app/connected_app.json msgctxt "Connected App" msgid "Authorization URI" -msgstr "" +msgstr "URI de Autorización" #: templates/includes/oauth_confirmation.html:32 msgid "Authorization error for {}." @@ -3230,7 +3230,7 @@ msgstr "" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Authorize API Access" -msgstr "" +msgstr "Autorizar acceso a API" #. Label of a Button field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -3422,17 +3422,17 @@ msgstr "Autoincremento" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Automated Message" -msgstr "" +msgstr "Mensaje automático" #: public/js/frappe/ui/theme_switcher.js:69 msgid "Automatic" -msgstr "" +msgstr "Automático" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Automatic" -msgstr "" +msgstr "Automático" #: email/doctype/email_account/email_account.py:706 msgid "Automatic Linking can be activated only for one Email Account." @@ -3462,7 +3462,7 @@ msgstr "Automatización" #: website/doctype/blogger/blogger.json msgctxt "Blogger" msgid "Avatar" -msgstr "" +msgstr "Avatar" #: public/js/frappe/form/controls/password.js:89 #: public/js/frappe/ui/group_by/group_by.js:21 @@ -3686,7 +3686,7 @@ msgstr "Detalles de la copia de seguridad" #: desk/page/backups/backups.js:26 msgid "Backup Encryption Key" -msgstr "" +msgstr "Clave de Cifrado de Copia de Seguridad" #. Label of a Check field in DocType 'S3 Backup Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json @@ -3755,13 +3755,13 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Banner" -msgstr "" +msgstr "Anuncio" #. Label of a Code field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Banner HTML" -msgstr "" +msgstr "Anuncio HTML" #. Label of a Attach Image field in DocType 'User' #: core/doctype/user/user.json @@ -3849,7 +3849,7 @@ msgstr "Base" #: core/doctype/user/user.json msgctxt "User" msgid "Basic Info" -msgstr "" +msgstr "Información básica" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json @@ -3991,7 +3991,7 @@ msgstr "Obstruido" #: website/doctype/blog_post/templates/blog_post_list.html:11 #: website/workspace/website/website.json msgid "Blog" -msgstr "" +msgstr "Blog" #. Name of a DocType #: website/doctype/blog_category/blog_category.json @@ -4064,26 +4064,26 @@ msgstr "Título del Blog" #: website/doctype/blog_settings/blog_settings.json #: website/doctype/blogger/blogger.json msgid "Blogger" -msgstr "" +msgstr "Bloguero" #. Label of a Link field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Blogger" -msgstr "" +msgstr "Bloguero" #. Label of a Link in the Website Workspace #. Label of a shortcut in the Website Workspace #: website/workspace/website/website.json msgctxt "Blogger" msgid "Blogger" -msgstr "" +msgstr "Bloguero" #. Linked DocType in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "Blogger" -msgstr "" +msgstr "Bloguero" #. Subtitle of the Module Onboarding 'Website' #: website/module_onboarding/website/website.json @@ -4144,31 +4144,31 @@ msgstr "Fondo" #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Bottom Center" -msgstr "" +msgstr "Parte inferior centro" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Bottom Center" -msgstr "" +msgstr "Parte inferior centro" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Bottom Left" -msgstr "" +msgstr "Parte inferior izquierda" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Bottom Right" -msgstr "" +msgstr "Parte inferior derecha" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Bottom Right" -msgstr "" +msgstr "Parte inferior derecha" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json @@ -4280,7 +4280,7 @@ msgstr "Construir {0}" #: core/doctype/role/role.json msgctxt "Role" msgid "Bulk Actions" -msgstr "" +msgstr "Acciones masivas" #: core/doctype/user_permission/user_permission_list.js:142 msgid "Bulk Delete" @@ -4288,7 +4288,7 @@ msgstr "Eliminar a granel" #: public/js/frappe/list/bulk_operations.js:291 msgid "Bulk Edit" -msgstr "" +msgstr "Edición masiva" #: public/js/frappe/form/grid.js:1157 msgid "Bulk Edit {0}" @@ -4311,7 +4311,7 @@ msgstr "Actualización masiva" #: model/workflow.py:246 msgid "Bulk approval only support up to 500 documents." -msgstr "" +msgstr "La aprobación masiva solo admite hasta 500 documentos." #: desk/doctype/bulk_update/bulk_update.py:57 msgid "Bulk operation is enqueued in background." @@ -4365,13 +4365,13 @@ msgstr "Sombras de botones" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "By \"Naming Series\" field" -msgstr "" +msgstr "Por el campo \"Serie de nombres\"" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "By \"Naming Series\" field" -msgstr "" +msgstr "Por el campo \"Serie de nombres\"" #: website/doctype/web_page/web_page.js:111 #: website/doctype/web_page/web_page.js:118 @@ -4389,25 +4389,25 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "By fieldname" -msgstr "" +msgstr "Por nombre de campo" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "By fieldname" -msgstr "" +msgstr "Por nombre de campo" #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "By script" -msgstr "" +msgstr "Por script" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "By script" -msgstr "" +msgstr "Por script" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json @@ -4650,7 +4650,7 @@ msgstr "Puede Escribir" #: custom/doctype/custom_field/custom_field.py:360 msgid "Can not rename as column {0} is already present on DocType." -msgstr "" +msgstr "No se puede renombrar porque la columna {0} ya está presente en DocType." #: core/doctype/doctype/doctype.py:1112 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" @@ -4665,7 +4665,7 @@ msgstr "" #: model/rename_doc.py:361 msgid "Can't rename {0} to {1} because {0} doesn't exist." -msgstr "" +msgstr "No se puede renombrar {0} a {1} porque {0} no existe." #: core/doctype/doctype/doctype_list.js:130 #: public/js/frappe/form/reminders.js:54 @@ -4800,7 +4800,7 @@ msgstr "" #: core/doctype/file/file.py:574 msgid "Cannot access file path {0}" -msgstr "" +msgstr "No se puede acceder a la ruta del archivo {0}" #: public/js/workflow_builder/utils.js:183 msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" @@ -4868,7 +4868,7 @@ msgstr "" #: custom/doctype/customize_form/customize_form.js:276 msgid "Cannot delete standard field {0}. You can hide it instead." -msgstr "" +msgstr "No se puede eliminar el campo estándar {0}. Puede ocultarlo en su lugar." #: custom/doctype/customize_form/customize_form.js:298 msgid "Cannot delete standard link. You can hide it if you want" @@ -4876,7 +4876,7 @@ msgstr "No se puede eliminar el enlace estándar. Puedes esconderlo si quieres" #: custom/doctype/customize_form/customize_form.js:268 msgid "Cannot delete system generated field {0}. You can hide it instead." -msgstr "" +msgstr "No se puede eliminar el campo generado por el sistema {0}. Puedes ocultarlo en su lugar." #: public/js/frappe/list/bulk_operations.js:185 msgid "Cannot delete {0}" @@ -4920,7 +4920,7 @@ msgstr "" #: core/doctype/file/file.py:249 msgid "Cannot find file {} on disk" -msgstr "" +msgstr "No se puede encontrar el archivo {} en el disco" #: core/doctype/file/file.py:520 msgid "Cannot get file contents of a Folder" @@ -4993,7 +4993,7 @@ msgstr "La capitalización no ayuda mucho." #: public/js/frappe/ui/capture.js:294 msgid "Capture" -msgstr "" +msgstr "Capturar" #. Label of a Link field in DocType 'Number Card Link' #: desk/doctype/number_card_link/number_card_link.json @@ -5005,7 +5005,7 @@ msgstr "Tarjeta" #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Card Break" -msgstr "" +msgstr "Salto de tarjeta" #: public/js/frappe/views/reports/query_report.js:261 msgid "Card Label" @@ -5314,7 +5314,7 @@ msgstr "" #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Child Doctype" -msgstr "" +msgstr "DocTypo hijo" #: core/doctype/doctype/doctype.py:1584 msgid "Child Table {0} for field {1}" @@ -5336,7 +5336,7 @@ msgstr "Elija una tarjeta existente o cree una nueva tarjeta" #: public/js/frappe/views/workspace/workspace.js:1396 msgid "Choose a block or continue typing" -msgstr "" +msgstr "Elija un bloque o continúe escribiendo" #: public/js/frappe/form/controls/color.js:5 msgid "Choose a color" @@ -5372,11 +5372,11 @@ msgstr "Quitar" #: public/js/frappe/views/communication.js:415 msgid "Clear & Add Template" -msgstr "" +msgstr "Borrar y Agregar Plantilla" #: public/js/frappe/views/communication.js:102 msgid "Clear & Add template" -msgstr "" +msgstr "Borrar y Agregar plantilla" #: public/js/frappe/list/list_view.js:1865 msgctxt "Button in list view actions menu" @@ -5399,7 +5399,7 @@ msgstr "Borrar Filtros" #: core/doctype/logs_to_clear/logs_to_clear.json msgctxt "Logs To Clear" msgid "Clear Logs After (days)" -msgstr "" +msgstr "Borrar registros después (días)" #: core/doctype/user_permission/user_permission_list.js:144 msgid "Clear User Permissions" @@ -5480,7 +5480,7 @@ msgstr "Clic para establecer filtros" #: public/js/frappe/list/list_view.js:678 msgid "Click to sort by {0}" -msgstr "" +msgstr "Clic para ordenar por {0}" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json @@ -5522,19 +5522,19 @@ msgstr "Credenciales del Cliente" #: integrations/doctype/google_settings/google_settings.json msgctxt "Google Settings" msgid "Client ID" -msgstr "" +msgstr "Id del cliente" #. Label of a Data field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Client ID" -msgstr "" +msgstr "Id del cliente" #. Label of a Data field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json msgctxt "Connected App" msgid "Client Id" -msgstr "" +msgstr "Id de cliente" #. Label of a Section Break field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json @@ -5546,38 +5546,38 @@ msgstr "Información del Cliente" #: custom/doctype/client_script/client_script.json #: website/doctype/web_page/web_page.js:103 msgid "Client Script" -msgstr "" +msgstr "Script de cliente" #. Label of a Link in the Build Workspace #. Label of a shortcut in the Build Workspace #: core/workspace/build/build.json msgctxt "Client Script" msgid "Client Script" -msgstr "" +msgstr "Script de cliente" #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Client Script" -msgstr "" +msgstr "Script de cliente" #. Label of a Code field in DocType 'DocType Layout' #: custom/doctype/doctype_layout/doctype_layout.json msgctxt "DocType Layout" msgid "Client Script" -msgstr "" +msgstr "Script de cliente" #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Client Script" -msgstr "" +msgstr "Script de cliente" #. Label of a Code field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Client Script" -msgstr "" +msgstr "Script de cliente" #. Label of a Password field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json @@ -6008,13 +6008,13 @@ msgstr "El comentario solo puede ser editado por el propietario" #: website/doctype/blog_settings/blog_settings.json msgctxt "Blog Settings" msgid "Comment limit" -msgstr "" +msgstr "Límite de Comentarios" #. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json msgctxt "Blog Settings" msgid "Comment limit per hour" -msgstr "" +msgstr "Límite de Comentarios por hora" #: model/meta.py:54 public/js/frappe/form/controls/comment.js:9 #: public/js/frappe/model/meta.js:206 public/js/frappe/model/model.js:125 @@ -6036,7 +6036,7 @@ msgstr "Los comentarios no pueden tener enlaces o direcciones de correo electró #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Commercial Rounding" -msgstr "" +msgstr "Redondeo comercial" #. Label of a Check field in DocType 'System Console' #: desk/doctype/system_console/system_console.json @@ -6270,7 +6270,7 @@ msgstr "Condición" #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Condition Description" -msgstr "" +msgstr "Descripción de la Condición" #. Label of a JSON field in DocType 'Web Form' #: website/doctype/web_form/web_form.json @@ -6343,7 +6343,7 @@ msgstr "Confirmar nueva contraseña" #: www/update-password.html:24 msgid "Confirm Password" -msgstr "" +msgstr "Confirmar Contraseña" #: templates/emails/data_deletion_approval.html:6 #: templates/emails/delete_data_confirmation.html:7 @@ -6496,7 +6496,7 @@ msgstr "Contacto sincronizado con los contactos de Google." #: www/contact.html:4 msgid "Contact Us" -msgstr "" +msgstr "Contáctanos" #. Name of a DocType #: website/doctype/contact_us_settings/contact_us_settings.json @@ -6806,7 +6806,7 @@ msgstr "País" #: public/js/frappe/utils/number_systems.js:45 msgctxt "Number system" msgid "Cr" -msgstr "" +msgstr "Cr" #: core/doctype/communication/communication.js:117 #: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 @@ -6840,12 +6840,12 @@ msgstr "Crear" #: core/doctype/doctype/doctype_list.js:102 msgid "Create & Continue" -msgstr "" +msgstr "Crear y Continuar" #. Title of an Onboarding Step #: website/onboarding_step/create_blogger/create_blogger.json msgid "Create Blogger" -msgstr "" +msgstr "Crear Bloguero" #: public/js/frappe/views/reports/query_report.js:186 #: public/js/frappe/views/reports/query_report.js:231 @@ -6870,7 +6870,7 @@ msgstr "Crear Campos Personalizados" #: public/js/frappe/views/workspace/workspace.js:936 msgid "Create Duplicate" -msgstr "" +msgstr "Crear duplicado" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json @@ -6897,7 +6897,7 @@ msgstr "Crear" #: core/doctype/doctype/doctype_list.js:100 msgid "Create New DocType" -msgstr "" +msgstr "Crear nuevo DocType" #: public/js/frappe/list/list_view_select.js:204 msgid "Create New Kanban Board" @@ -7131,7 +7131,7 @@ msgstr "Id de Trabajo actual" #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Current Value" -msgstr "" +msgstr "Valor actual" #: public/js/frappe/form/workflow.js:45 msgid "Current status" @@ -7506,7 +7506,7 @@ msgstr "Personalización" #: custom/doctype/customize_form/customize_form.js:89 msgid "Customize Child Table" -msgstr "" +msgstr "Personalizar Tabla Secundaria" #: public/js/frappe/views/dashboard/dashboard_view.js:37 msgid "Customize Dashboard" @@ -7528,7 +7528,7 @@ msgstr "Personalizar Formulario" #: custom/doctype/customize_form/customize_form.js:100 msgid "Customize Form - {0}" -msgstr "" +msgstr "Personalizar formulario - {0}" #. Name of a DocType #: custom/doctype/customize_form_field/customize_form_field.json @@ -7538,7 +7538,7 @@ msgstr "Personalizar campos de formulario" #. Title of an Onboarding Step #: custom/onboarding_step/print_format/print_format.json msgid "Customize Print Formats" -msgstr "" +msgstr "Personalizar Formatos de Impresión" #: public/js/frappe/views/file/file_view.js:144 msgid "Cut" @@ -7560,13 +7560,13 @@ msgstr "" #: core/doctype/recorder/recorder.json msgctxt "Recorder" msgid "DELETE" -msgstr "" +msgstr "DELETE" #. Option for the 'Request Method' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "DELETE" -msgstr "" +msgstr "DELETE" #. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -7896,7 +7896,7 @@ msgstr "Importación de Datos" #. Name of a DocType #: core/doctype/data_import_log/data_import_log.json msgid "Data Import Log" -msgstr "" +msgstr "Registro de Importación de Datos" #: core/doctype/data_export/exporter.py:174 msgid "Data Import Template" @@ -7920,7 +7920,7 @@ msgstr "Motor de base de datos" #: desk/doctype/system_console/system_console.json msgctxt "System Console" msgid "Database Processes" -msgstr "" +msgstr "Procesos de Base de Datos" #: public/js/frappe/doctype/index.js:38 msgid "Database Row Size Utilization" @@ -8106,7 +8106,7 @@ msgstr "Días antes o despues" #: public/js/frappe/request.js:249 msgid "Deadlock Occurred" -msgstr "" +msgstr "Se produjo un bloqueo" #: templates/emails/password_reset.html:1 msgid "Dear" @@ -8129,7 +8129,7 @@ msgstr "Estimado {0}" #: core/doctype/scheduled_job_log/scheduled_job_log.json msgctxt "Scheduled Job Log" msgid "Debug Log" -msgstr "" +msgstr "Registro de depuración" #: templates/form_grid/fields.html:30 msgid "Default" @@ -8307,13 +8307,13 @@ msgstr "Tema predeterminado" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "Default User Role" -msgstr "" +msgstr "Rol de usuario por defecto" #. Label of a Link field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "Default User Type" -msgstr "" +msgstr "Tipo de usuario por defecto" #. Label of a Text field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -8343,7 +8343,7 @@ msgstr "Vista predeterminada" #: core/doctype/user/user.json msgctxt "User" msgid "Default Workspace" -msgstr "" +msgstr "Espacio de trabajo predeterminado" #: core/doctype/doctype/doctype.py:1325 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" @@ -8436,7 +8436,7 @@ msgstr "Eliminar" #: www/me.html:75 msgid "Delete Account" -msgstr "" +msgstr "Eliminar Cuenta" #: public/js/frappe/form/grid.js:63 msgid "Delete All" @@ -8578,7 +8578,7 @@ msgstr "Departamento" #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Dependencies" -msgstr "" +msgstr "Dependencias" #. Label of a Code field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -8737,13 +8737,13 @@ msgstr "Acceso a Escritorio" #: core/doctype/user/user.json msgctxt "User" msgid "Desk Settings" -msgstr "" +msgstr "Configuración del Escritorio" #. Label of a Select field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Desk Theme" -msgstr "" +msgstr "Tema de Escritorio" #. Name of a role #: automation/doctype/reminder/reminder.json core/doctype/report/report.json @@ -8878,7 +8878,7 @@ msgstr "Deshabilitar Compartir Documentos" #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Disable Likes" -msgstr "" +msgstr "Desactivar Me Gusta" #: core/doctype/report/report.js:36 msgid "Disable Report" @@ -8922,7 +8922,7 @@ msgstr "Deshabilitar el inicio de sesión con nombre de Usuario/Contraseña" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Disable signups" -msgstr "" +msgstr "Deshabilitar registros" #: core/doctype/user/user_list.js:14 #: public/js/frappe/form/templates/address_list.html:29 @@ -9022,7 +9022,7 @@ msgstr "Descartar" #: public/js/frappe/web_form/web_form.js:184 msgid "Discard?" -msgstr "" +msgstr "¿Descartar?" #. Name of a DocType #: website/doctype/discussion_reply/discussion_reply.json @@ -9092,7 +9092,7 @@ msgstr "" #: core/doctype/system_settings/system_settings.js:66 msgid "Do you still want to proceed?" -msgstr "" +msgstr "¿Aún quiere continuar?" #: public/js/frappe/form/form.js:977 msgid "Do you want to cancel all linked documents?" @@ -9119,18 +9119,18 @@ msgstr "Estado de Doc." #. Name of a DocType #: core/doctype/docfield/docfield.json msgid "DocField" -msgstr "" +msgstr "DocField" #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "DocField" -msgstr "" +msgstr "DocField" #. Name of a DocType #: core/doctype/docperm/docperm.json msgid "DocPerm" -msgstr "" +msgstr "DocPerm" #. Name of a DocType #: core/doctype/docshare/docshare.json @@ -9149,94 +9149,94 @@ msgstr "" #: core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 #: website/doctype/website_slideshow/website_slideshow.js:18 msgid "DocType" -msgstr "" +msgstr "DocType" #. Label of a Link field in DocType 'Amended Document Naming Settings' #: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json msgctxt "Amended Document Naming Settings" msgid "DocType" -msgstr "" +msgstr "DocType" #. Label of a Link field in DocType 'Audit Trail' #: core/doctype/audit_trail/audit_trail.json msgctxt "Audit Trail" msgid "DocType" -msgstr "" +msgstr "DocType" #. Label of a Link field in DocType 'Client Script' #: custom/doctype/client_script/client_script.json msgctxt "Client Script" msgid "DocType" -msgstr "" +msgstr "DocType" #. Label of a Link field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "DocType" -msgstr "" +msgstr "DocType" #. Label of a Link in the Build Workspace #. Label of a shortcut in the Build Workspace #: core/workspace/build/build.json msgctxt "DocType" msgid "DocType" -msgstr "" +msgstr "DocType" #. Group in Module Def's connections #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "DocType" -msgstr "" +msgstr "DocType" #. Label of a Link field in DocType 'Permission Inspector' #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "DocType" -msgstr "" +msgstr "DocType" #. Label of a Link field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "DocType" -msgstr "" +msgstr "DocType" #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #. Label of a Link field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "DocType" -msgstr "" +msgstr "DocType" #. Label of a Link field in DocType 'Version' #: core/doctype/version/version.json msgctxt "Version" msgid "DocType" -msgstr "" +msgstr "DocType" #. Label of a Link field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "DocType" -msgstr "" +msgstr "DocType" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "DocType" -msgstr "" +msgstr "DocType" #. Label of a Link field in DocType 'Workspace Quick List' #: desk/doctype/workspace_quick_list/workspace_quick_list.json msgctxt "Workspace Quick List" msgid "DocType" -msgstr "" +msgstr "DocType" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "DocType" -msgstr "" +msgstr "DocType" #: core/doctype/doctype/doctype.py:1526 msgid "DocType {0} provided for the field {1} must have atleast one Link field" @@ -9245,25 +9245,25 @@ msgstr "El tipo de documento {0} proporcionado para el campo {1} d #. Name of a DocType #: core/doctype/doctype_action/doctype_action.json msgid "DocType Action" -msgstr "" +msgstr "Acción DocType" #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "DocType Action" -msgstr "" +msgstr "Acción DocType" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #. Label of a Select field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "DocType Event" -msgstr "" +msgstr "Evento DocType" #. Name of a DocType #: custom/doctype/doctype_layout/doctype_layout.json msgid "DocType Layout" -msgstr "" +msgstr "Diseño de DocType" #. Name of a DocType #: custom/doctype/doctype_layout_field/doctype_layout_field.json @@ -9283,18 +9283,18 @@ msgstr "" #: core/doctype/doctype/doctype_list.js:22 msgid "DocType Name" -msgstr "" +msgstr "Nombre DocType" #. Name of a DocType #: core/doctype/doctype_state/doctype_state.json msgid "DocType State" -msgstr "" +msgstr "DocType Estado" #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "DocType State" -msgstr "" +msgstr "DocType Estado" #. Label of a Select field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json @@ -9339,15 +9339,15 @@ msgstr "El flujo de trabajo será aplicable en el documento seleccionado." #: public/js/frappe/views/kanban/kanban_settings.js:4 msgid "DocType required" -msgstr "" +msgstr "Doctype Requerido" #: modules/utils.py:157 msgid "DocType {0} does not exist." -msgstr "" +msgstr "DocType {0} no existe." #: modules/utils.py:220 msgid "DocType {} not found" -msgstr "" +msgstr "DocType {} no encontrado" #: core/doctype/doctype/doctype.py:1009 msgid "DocType's name should not start or end with whitespace" @@ -9355,21 +9355,21 @@ msgstr "El nombre de DocType no debe comenzar ni terminar con espacios en blanco #: core/doctype/doctype/doctype.js:70 msgid "DocTypes can not be modified, please use {0} instead" -msgstr "" +msgstr "Los DocTypes no se pueden modificar, utilice {0} en su lugar" #: public/js/frappe/widgets/widget_dialog.js:684 msgid "Doctype" -msgstr "" +msgstr "Doctype" #. Label of a Link field in DocType 'Document Follow' #: email/doctype/document_follow/document_follow.json msgctxt "Document Follow" msgid "Doctype" -msgstr "" +msgstr "Doctype" #: core/doctype/doctype/doctype.py:1003 msgid "Doctype name is limited to {0} characters ({1})" -msgstr "" +msgstr "El nombre de los Doctype está limitado a {0} caracteres ({1})" #: public/js/frappe/list/bulk_operations.js:3 msgid "Doctype required" @@ -9377,7 +9377,7 @@ msgstr "Doctype Requerido" #: public/js/frappe/views/workspace/workspace.js:1314 msgid "Doctype with same route already exist. Please choose different title." -msgstr "" +msgstr "Doctype con la misma ruta ya existe. Por favor, elija un título diferente." #. Label of a Dynamic Link field in DocType 'Audit Trail' #: core/doctype/audit_trail/audit_trail.json @@ -9441,7 +9441,7 @@ msgstr "Enlace de documento" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Document Linking" -msgstr "" +msgstr "Vinculación de documentos" #. Label of a Section Break field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -9508,7 +9508,7 @@ msgstr "Nombre de Documento" #: client.py:424 msgid "Document Name must be a string" -msgstr "" +msgstr "Nombre del documento debe ser una cadena" #. Name of a DocType #: core/doctype/document_naming_rule/document_naming_rule.json @@ -9542,7 +9542,7 @@ msgstr "Documento Restaurado" #: public/js/frappe/widgets/onboarding_widget.js:420 #: public/js/frappe/widgets/onboarding_widget.js:439 msgid "Document Saved" -msgstr "" +msgstr "Documento guardado" #. Label of a Check field in DocType 'Notification Settings' #: desk/doctype/notification_settings/notification_settings.json @@ -9818,7 +9818,7 @@ msgstr "El documento {0} se ha configurado en estado {1} por {2}" #: client.py:443 msgid "Document {0} {1} does not exist" -msgstr "" +msgstr "El documento {0} {1} no existe" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json @@ -9840,7 +9840,7 @@ msgstr "URL de documentación" #: public/js/frappe/form/templates/form_dashboard.html:17 msgid "Documents" -msgstr "" +msgstr "Documentos" #: core/doctype/deleted_document/deleted_document_list.js:25 msgid "Documents restored successfully" @@ -9881,7 +9881,7 @@ msgstr "Dominio" #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Domain Name" -msgstr "" +msgstr "Nombre del dominio" #. Name of a DocType #: core/doctype/domain_settings/domain_settings.json @@ -9938,7 +9938,7 @@ msgstr "" #: www/login.html:119 www/login.html:135 www/update-password.html:34 msgid "Don't have an account?" -msgstr "" +msgstr "¿No tiene una cuenta?" #: public/js/frappe/ui/messages.js:231 #: public/js/onboarding_tours/onboarding_tours.js:17 @@ -10020,13 +10020,13 @@ msgstr "" #: integrations/doctype/dropbox_settings/dropbox_settings.json msgctxt "Dropbox Settings" msgid "Dropbox Access Token" -msgstr "" +msgstr "Token de Acceso de Dropbox" #. Label of a Password field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json msgctxt "Dropbox Settings" msgid "Dropbox Refresh Token" -msgstr "" +msgstr "Token de Actualización de Dropbox" #. Name of a DocType #: integrations/doctype/dropbox_settings/dropbox_settings.json @@ -10344,7 +10344,7 @@ msgstr "" #: website/doctype/web_form/templates/web_form.html:20 msgctxt "Button in web form" msgid "Edit Response" -msgstr "" +msgstr "Editar respuesta" #: public/js/frappe/widgets/widget_dialog.js:40 msgid "Edit Shortcut" @@ -10432,7 +10432,7 @@ msgstr "" #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Element Selector" -msgstr "" +msgstr "Selector de elementos" #. Label of a Card Break in the Tools Workspace #: automation/workspace/tools/tools.json @@ -10558,7 +10558,7 @@ msgstr "Cuentas de correo electrónico" #: email/doctype/email_account/email_account.py:316 msgid "Email Account Disabled." -msgstr "" +msgstr "Cuenta de correo desactivada." #. Label of a Data field in DocType 'Email Account' #: email/doctype/email_account/email_account.json @@ -11297,13 +11297,13 @@ msgstr "Terminado a las" #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgctxt "S3 Backup Settings" msgid "Endpoint URL" -msgstr "" +msgstr "URL de Endpoint" #. Label of a Section Break field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json msgctxt "Connected App" msgid "Endpoints" -msgstr "" +msgstr "Endpoints" #. Label of a Datetime field in DocType 'Event' #: desk/doctype/event/event.json @@ -11395,7 +11395,7 @@ msgstr "Ingrese el Valor" #: public/js/frappe/form/form_tour.js:58 msgid "Enter a name for this {0}" -msgstr "" +msgstr "Introduzca un nombre para este {0}" #. Description of the 'User Defaults' (Table) field in DocType 'User' #: core/doctype/user/user.json @@ -11542,11 +11542,11 @@ msgstr "Se produjo un error en {0}" #: public/js/frappe/form/script_manager.js:187 msgid "Error in Client Script" -msgstr "" +msgstr "Error en el script del cliente" #: public/js/frappe/form/script_manager.js:241 msgid "Error in Client Script." -msgstr "" +msgstr "Error en el script del cliente." #: printing/doctype/letter_head/letter_head.js:21 msgid "Error in Header/Footer Script" @@ -11560,7 +11560,7 @@ msgstr "Error en la Notificación" #: utils/pdf.py:52 msgid "Error in print format on line {0}: {1}" -msgstr "" +msgstr "Error en formato de impresión en línea {0}: {1}" #: email/doctype/email_account/email_account.py:614 msgid "Error while connecting to email account {0}" @@ -11605,7 +11605,7 @@ msgstr "Categoría de Evento" #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Event Frequency" -msgstr "" +msgstr "Frecuencia del Evento" #. Name of a DocType #: desk/doctype/event_participants/event_participants.json @@ -11768,7 +11768,7 @@ msgstr "Tiempo de ejecución: {0} segundos" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Executive" -msgstr "" +msgstr "Ejecutivo" #: public/js/frappe/widgets/base_widget.js:157 msgid "Expand" @@ -11983,7 +11983,7 @@ msgstr "Expresión, Opcional" #: integrations/doctype/connected_app/connected_app.json msgctxt "Connected App" msgid "Extra Parameters" -msgstr "" +msgstr "Parámetros extra" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' @@ -12085,7 +12085,7 @@ msgstr "" #: utils/image.py:73 msgid "Failed to optimize image: {0}" -msgstr "" +msgstr "Fallo en la optimización de la imagen: {0}" #: email/doctype/email_queue/email_queue.py:280 msgid "Failed to send email with subject:" @@ -12173,19 +12173,19 @@ msgstr "Recuperar imágenes adjuntas del documento" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Fetch on Save if Empty" -msgstr "" +msgstr "Obtener en Guardar si está vacío" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Fetch on Save if Empty" -msgstr "" +msgstr "Obtener en Guardar si está vacío" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Fetch on Save if Empty" -msgstr "" +msgstr "Obtener en Guardar si está vacío" #: desk/doctype/global_search_settings/global_search_settings.py:61 msgid "Fetching default Global Search documents." @@ -12261,7 +12261,7 @@ msgstr "Descripción de Campo" #: core/doctype/doctype/doctype.py:1040 msgid "Field Missing" -msgstr "" +msgstr "Falta campo" #. Label of a Select field in DocType 'Kanban Board' #: desk/doctype/kanban_board/kanban_board.json @@ -12317,11 +12317,11 @@ msgstr "El Tipo de Campo no se puede cambiar para {0}" #: database/database.py:838 msgid "Field {0} does not exist on {1}" -msgstr "" +msgstr "El campo {0} no existe en {1}" #: desk/form/meta.py:203 msgid "Field {0} is referring to non-existing doctype {1}." -msgstr "" +msgstr "El campo {0} se refiere a un doctype inexistente {1}." #: public/js/frappe/form/form.js:1730 msgid "Field {0} not found." @@ -12376,7 +12376,7 @@ msgstr "Nombre del campo" #: core/doctype/doctype/doctype.py:265 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" -msgstr "" +msgstr "Nombre de campo '{0}' en conflicto con un {1} del nombre {2} en {3}" #: core/doctype/doctype/doctype.py:1039 msgid "Fieldname called {0} must exist to enable autonaming" @@ -12396,7 +12396,7 @@ msgstr "Nombre de campo por el cual el 'DocType' enlazará el campo." #: public/js/form_builder/store.js:175 msgid "Fieldname {0} appears multiple times" -msgstr "" +msgstr "El nombre de campo {0} aparece varias veces" #: database/schema.py:346 msgid "Fieldname {0} cannot have special characters like {1}" @@ -12513,7 +12513,7 @@ msgstr "FieldType" #: custom/doctype/custom_field/custom_field.py:191 msgid "Fieldtype cannot be changed from {0} to {1}" -msgstr "" +msgstr "Tipo de campo no se puede cambiar de {0} a {1}" #: custom/doctype/customize_form/customize_form.py:584 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" @@ -12703,7 +12703,7 @@ msgstr "Filtro debe tener 4 valores (doctype, fieldname, operator, value): {0}" #: printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." -msgstr "" +msgstr "Filtrar..." #. Label of a Data field in DocType 'Personal Data Deletion Step' #: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -12843,13 +12843,13 @@ msgstr "Terminado" #: core/doctype/prepared_report/prepared_report.json msgctxt "Prepared Report" msgid "Finished At" -msgstr "" +msgstr "Terminado el" #. Label of a Select field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "First Day of the Week" -msgstr "" +msgstr "Primer día de la semana" #: www/complete_signup.html:15 msgid "First Name" @@ -12981,7 +12981,7 @@ msgstr "Carpeta" #: email/doctype/imap_folder/imap_folder.json msgctxt "IMAP Folder" msgid "Folder Name" -msgstr "" +msgstr "Nombre de la carpeta" #: public/js/frappe/views/file/file_view.js:100 msgid "Folder name should not include '/' (slash)" @@ -12995,7 +12995,7 @@ msgstr "Carpeta {0} no está vacía" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Folio" -msgstr "" +msgstr "Folio" #: public/js/frappe/form/sidebar/form_sidebar.js:232 #: public/js/frappe/form/templates/form_sidebar.html:129 @@ -13004,7 +13004,7 @@ msgstr "Seguir" #: public/js/frappe/form/templates/form_sidebar.html:124 msgid "Followed by" -msgstr "" +msgstr "Seguido por" #: email/doctype/auto_email_report/auto_email_report.py:130 msgid "Following Report Filters have missing values:" @@ -13100,7 +13100,7 @@ msgstr "Pie de página" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Footer \"Powered By\"" -msgstr "" +msgstr "Pie de página \"Desarrollado por\"" #. Label of a Select field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json @@ -13497,7 +13497,7 @@ msgstr "Frappe Framework" #: public/js/frappe/ui/theme_switcher.js:59 msgid "Frappe Light" -msgstr "" +msgstr "Frappe claro" #. Label of a standard help item #. Type: Action @@ -13696,7 +13696,7 @@ msgstr "Función basada en" #: __init__.py:933 msgid "Function {0} is not whitelisted." -msgstr "" +msgstr "La función {0} no está en la lista blanca." #: public/js/frappe/views/treeview.js:402 msgid "Further nodes can be only created under 'Group' type nodes" @@ -13710,7 +13710,7 @@ msgstr "Fw: {0}" #: core/doctype/recorder/recorder.json msgctxt "Recorder" msgid "GET" -msgstr "" +msgstr "GET" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json @@ -13784,7 +13784,7 @@ msgstr "Generar Nuevo Informe" #: public/js/frappe/ui/toolbar/awesome_bar.js:368 msgid "Generate Random Password" -msgstr "" +msgstr "Generar Contraseña Aleatoria" #: public/js/frappe/ui/toolbar/toolbar.js:147 #: public/js/frappe/utils/utils.js:1763 @@ -13815,7 +13815,7 @@ msgstr "Recibe alertas para Hoy" #: desk/page/backups/backups.js:19 msgid "Get Backup Encryption Key" -msgstr "" +msgstr "Obtener Clave de Cifrado de Copia de Seguridad" #. Label of a Button field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json @@ -13837,7 +13837,7 @@ msgstr "Obtener artículos" #: integrations/doctype/connected_app/connected_app.js:6 msgid "Get OpenID Configuration" -msgstr "" +msgstr "Obtener configuración de OpenID" #: www/printview.html:22 msgid "Get PDF" @@ -13878,7 +13878,7 @@ msgstr "GitHub" #: website/doctype/web_page/web_page.js:92 msgid "Github flavoured markdown syntax" -msgstr "" +msgstr "Sintaxis Markdown con sabor a Github" #: social/doctype/energy_point_settings/energy_point_settings.js:7 #: social/doctype/energy_point_settings/energy_point_settings.js:14 @@ -14138,7 +14138,7 @@ msgstr "Google Drive Picker" #: integrations/doctype/google_settings/google_settings.json msgctxt "Google Settings" msgid "Google Drive Picker Enabled" -msgstr "" +msgstr "Selector de Google Drive habilitado" #. Label of a Data field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json @@ -14289,7 +14289,7 @@ msgstr "Agrupados por {0}" #: core/doctype/recorder/recorder.json msgctxt "Recorder" msgid "HEAD" -msgstr "" +msgstr "HEAD" #. Option for the 'Time Format' (Select) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -14306,43 +14306,43 @@ msgstr "HH: mm: ss" #: printing/doctype/print_format/print_format.py:90 #: website/doctype/web_page/web_page.js:92 msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "HTML" -msgstr "" +msgstr "HTML" #. Label of a Section Break field in DocType 'Custom HTML Block' #: desk/doctype/custom_html_block/custom_html_block.json msgctxt "Custom HTML Block" msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -14350,37 +14350,37 @@ msgstr "" #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Message Type' (Select) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "HTML" -msgstr "" +msgstr "HTML" #. Label of a Code field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -14414,7 +14414,7 @@ msgstr "HTML para la sección de encabezado. opcional" #: website/doctype/web_page/web_page.js:92 msgid "HTML with jinja support" -msgstr "" +msgstr "HTML con soporte jinja" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' #: desk/doctype/dashboard_chart_link/dashboard_chart_link.json @@ -14514,7 +14514,7 @@ msgstr "Encabezado HTML establecido desde el archivo adjunto {0}" #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Header Script" -msgstr "" +msgstr "Script de Cabecera" #. Label of a Section Break field in DocType 'Web Page' #: website/doctype/web_page/web_page.json @@ -14664,13 +14664,13 @@ msgstr "" #: website/doctype/help_article/help_article.json msgctxt "Help Article" msgid "Helpful" -msgstr "" +msgstr "Útil" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Helvetica" -msgstr "" +msgstr "Helvética" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -14680,7 +14680,7 @@ msgstr "" #: public/js/frappe/utils/utils.js:1760 msgid "Here's your tracking URL" -msgstr "" +msgstr "Esta es tu URL de seguimiento" #: www/qrcode.html:9 msgid "Hi {0}" @@ -14748,7 +14748,7 @@ msgstr "Oculto" #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Hidden Fields" -msgstr "" +msgstr "Campos ocultos" #: public/js/frappe/views/workspace/workspace.js:825 #: public/js/frappe/widgets/base_widget.js:46 @@ -15086,7 +15086,7 @@ msgstr "" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "IMAP Details" -msgstr "" +msgstr "Detalles IMAP" #. Name of a DocType #: email/doctype/imap_folder/imap_folder.json @@ -15320,7 +15320,7 @@ msgstr "Si está activado, los usuarios serán notificados cada vez que inicien #: core/doctype/user/user.json msgctxt "User" msgid "If left empty, the default workspace will be the last visited workspace" -msgstr "" +msgstr "Si se deja vacío, el Área de Trabajo predeterminado será la última Área de Trabajo visitado" #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json @@ -15380,21 +15380,21 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "If unchecked, the value will always be re-fetched on save." -msgstr "" +msgstr "Si no está marcado, el valor siempre será recuperado al guardar." #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "If unchecked, the value will always be re-fetched on save." -msgstr "" +msgstr "Si no está marcado, el valor siempre será recuperado al guardar." #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "If unchecked, the value will always be re-fetched on save." -msgstr "" +msgstr "Si no está marcado, el valor siempre será recuperado al guardar." #. Label of a Check field in DocType 'Custom DocPerm' #: core/doctype/custom_docperm/custom_docperm.json @@ -15426,7 +15426,7 @@ msgstr "" #: core/doctype/doctype/doctype.js:80 msgid "If you just want to customize for your site, use {0} instead." -msgstr "" +msgstr "Si solo desea personalizar para su sitio, utilice {0} en su lugar." #. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item' #: website/doctype/top_bar_item/top_bar_item.json @@ -15514,7 +15514,7 @@ msgstr "Consulta SQL ilegal" #: utils/jinja.py:95 msgid "Illegal template" -msgstr "" +msgstr "Plantilla ilegal" #. Label of a Attach Image field in DocType 'Contact' #: contacts/doctype/contact/contact.json @@ -15589,7 +15589,7 @@ msgstr "Campo de Imagen" #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Image Height" -msgstr "" +msgstr "Altura de la Imagen" #. Label of a Attach field in DocType 'About Us Team Member' #: website/doctype/about_us_team_member/about_us_team_member.json @@ -15601,7 +15601,7 @@ msgstr "Enlace a la Imagen" #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Image Width" -msgstr "" +msgstr "Ancho de la imagen" #: core/doctype/doctype/doctype.py:1455 msgid "Image field must be a valid fieldname" @@ -15613,11 +15613,11 @@ msgstr "Campo de imagen debe ser de tipo Adjuntar imagen" #: core/doctype/file/utils.py:136 msgid "Image link '{0}' is not valid" -msgstr "" +msgstr "El enlace de la imagen '{0}' no es válido" #: core/doctype/file/file.js:91 msgid "Image optimized" -msgstr "" +msgstr "Imagen optimizada" #: public/js/frappe/views/image/image_view.js:13 msgid "Images" @@ -15763,7 +15763,7 @@ msgstr "" #: core/doctype/data_import/data_import.py:60 msgid "Importing {0} is not allowed." -msgstr "" +msgstr "La importación de {0} no está permitida." #: integrations/doctype/google_contacts/google_contacts.js:19 msgid "Importing {0} of {1}" @@ -15827,7 +15827,7 @@ msgstr "En vista de cuadrícula" #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "In List Filter" -msgstr "" +msgstr "En filtro de Lista" #: core/doctype/doctype/doctype.js:96 msgid "In List View" @@ -15875,7 +15875,7 @@ msgstr "En Progreso" #: database/database.py:240 msgid "In Read Only Mode" -msgstr "" +msgstr "En modo de solo lectura" #. Label of a Link field in DocType 'Communication' #: core/doctype/communication/communication.json @@ -15981,19 +15981,19 @@ msgstr "Configuración entrante (POP/IMAP)" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Incoming Server" -msgstr "" +msgstr "Servidor entrante" #. Label of a Data field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Incoming Server" -msgstr "" +msgstr "Servidor entrante" #. Label of a Section Break field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Incoming Settings" -msgstr "" +msgstr "Configuración entrante" #: email/doctype/email_domain/email_domain.py:32 msgid "Incoming email account not correct" @@ -16001,7 +16001,7 @@ msgstr "Cuenta de Correo Electrónico entrante no es correcta" #: model/virtual_doctype.py:79 model/virtual_doctype.py:92 msgid "Incomplete Virtual Doctype Implementation" -msgstr "" +msgstr "Implementación incompleta del DocType virtual" #: auth.py:232 msgid "Incomplete login details" @@ -16083,13 +16083,13 @@ msgstr "Indicador" #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Indicator Color" -msgstr "" +msgstr "Color del indicador" #: public/js/frappe/views/workspace/workspace.js:650 #: public/js/frappe/views/workspace/workspace.js:978 #: public/js/frappe/views/workspace/workspace.js:1222 msgid "Indicator color" -msgstr "" +msgstr "Color del indicador" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json @@ -16111,7 +16111,7 @@ msgstr "Información" #: core/doctype/data_export/exporter.py:144 msgid "Info:" -msgstr "" +msgstr "Información:" #. Label of a Select field in DocType 'Email Account' #: email/doctype/email_account/email_account.json @@ -16123,7 +16123,7 @@ msgstr "Conde de sincronización inicial" #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "InnoDB" -msgstr "" +msgstr "InnoDB" #: core/doctype/data_import/data_import_list.js:39 msgid "Insert" @@ -16161,7 +16161,7 @@ msgstr "Insertar Columna Antes de {0}" #: public/js/frappe/form/controls/markdown_editor.js:82 msgid "Insert Image in Markdown" -msgstr "" +msgstr "Insertar imagen en Markdown" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: core/doctype/data_import/data_import.json @@ -16178,7 +16178,7 @@ msgstr "Insertar estilo" #: public/js/frappe/ui/toolbar/search_utils.js:662 #: public/js/frappe/ui/toolbar/search_utils.js:663 msgid "Install {0} from Marketplace" -msgstr "" +msgstr "Instale {0} desde Marketplace" #. Name of a DocType #: core/doctype/installed_application/installed_application.json @@ -16199,7 +16199,7 @@ msgstr "Aplicaciones instaladas" #: core/doctype/installed_applications/installed_applications.js:18 #: public/js/frappe/ui/toolbar/about.js:8 msgid "Installed Apps" -msgstr "" +msgstr "Aplicaciones instaladas" #. Label of a HTML field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json @@ -16235,43 +16235,43 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Int" -msgstr "" +msgstr "Int" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Int" -msgstr "" +msgstr "Int" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Int" -msgstr "" +msgstr "Int" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #: core/doctype/report_column/report_column.json msgctxt "Report Column" msgid "Int" -msgstr "" +msgstr "Int" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' #: core/doctype/report_filter/report_filter.json msgctxt "Report Filter" msgid "Int" -msgstr "" +msgstr "Int" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Int" -msgstr "" +msgstr "Int" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Int" -msgstr "" +msgstr "Int" #. Name of a DocType #: integrations/doctype/integration_request/integration_request.json @@ -16403,7 +16403,7 @@ msgstr "" #: utils/nestedset.py:177 msgid "Invalid Action" -msgstr "" +msgstr "Acción inválida" #: utils/csvutils.py:35 msgid "Invalid CSV Format" @@ -16411,7 +16411,7 @@ msgstr "Formato CSV no válido" #: integrations/doctype/webhook/webhook.py:90 msgid "Invalid Condition: {}" -msgstr "" +msgstr "Condición inválida: {}" #: email/smtp.py:134 msgid "Invalid Credentials" @@ -16423,11 +16423,11 @@ msgstr "Fecha invalida" #: www/list.py:85 msgid "Invalid DocType" -msgstr "" +msgstr "DocType inválido" #: database/query.py:97 msgid "Invalid DocType: {0}" -msgstr "" +msgstr "DocType no válido: {0}" #: core/doctype/doctype/doctype.py:1221 msgid "Invalid Fieldname" @@ -16459,7 +16459,7 @@ msgstr "" #: templates/includes/login/login.js:291 msgid "Invalid Login. Try again." -msgstr "" +msgstr "Ingreso inválido. Intentar otra vez." #: email/receive.py:105 email/receive.py:142 msgid "Invalid Mail Server. Please rectify and try again." @@ -16497,7 +16497,7 @@ msgstr "Contraseña invalida" #: utils/__init__.py:109 msgid "Invalid Phone Number" -msgstr "" +msgstr "Numero de telefono invalido" #: auth.py:93 utils/oauth.py:179 utils/oauth.py:186 www/login.py:112 msgid "Invalid Request" @@ -16526,7 +16526,7 @@ msgstr "Nombre de usuario o contraseña de soporte inválido, por favor verifiqu #: integrations/doctype/webhook/webhook.py:119 msgid "Invalid Webhook Secret" -msgstr "" +msgstr "Secreto de Webhook inválido" #: desk/reportview.py:167 msgid "Invalid aggregate function" @@ -16575,7 +16575,7 @@ msgstr "" #: model/naming.py:55 msgid "Invalid naming series {}: dot (.) missing" -msgstr "" +msgstr "Serie de nombres {} no válida: falta el punto (.)" #: core/doctype/data_import/importer.py:434 msgid "Invalid or corrupted content for import" @@ -16591,7 +16591,7 @@ msgstr "" #: integrations/doctype/connected_app/connected_app.py:173 msgid "Invalid state." -msgstr "" +msgstr "Estado inválido." #: core/doctype/data_import/importer.py:411 msgid "Invalid template file for import" @@ -16687,13 +16687,13 @@ msgstr "Está completado" #: core/doctype/role/role.json msgctxt "Role" msgid "Is Custom" -msgstr "" +msgstr "Es personalizado" #. Label of a Check field in DocType 'User Document Type' #: core/doctype/user_document_type/user_document_type.json msgctxt "User Document Type" msgid "Is Custom" -msgstr "" +msgstr "Es personalizado" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json @@ -16727,7 +16727,7 @@ msgstr "Es por defecto" #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Is Dynamic URL?" -msgstr "" +msgstr "¿Es una URL dinámica?" #. Label of a Check field in DocType 'File' #: core/doctype/file/file.json @@ -16743,7 +16743,7 @@ msgstr "Es Global" #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Is Hidden" -msgstr "" +msgstr "Está oculto" #. Label of a Check field in DocType 'File' #: core/doctype/file/file.json @@ -16819,7 +16819,7 @@ msgstr "Es Campo Publicable debe ser un nombre de campo válido" #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Is Query Report" -msgstr "" +msgstr "Es Informe de Consulta" #. Label of a Check field in DocType 'Integration Request' #: integrations/doctype/integration_request/integration_request.json @@ -16923,19 +16923,19 @@ msgstr "Se puede validar" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Is System Generated" -msgstr "" +msgstr "Es generado por el sistema" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Is System Generated" -msgstr "" +msgstr "Es generado por el sistema" #. Label of a Check field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "Is System Generated" -msgstr "" +msgstr "Es generado por el sistema" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -17009,7 +17009,7 @@ msgstr "JS" #: desk/doctype/custom_html_block/custom_html_block.json msgctxt "Custom HTML Block" msgid "JS Message" -msgstr "" +msgstr "Mensaje JS" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -17284,13 +17284,13 @@ msgstr "" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Auth" -msgstr "" +msgstr "Autenticación LDAP" #. Label of a Section Break field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Custom Settings" -msgstr "" +msgstr "Configuración personalizada de LDAP" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -17332,7 +17332,7 @@ msgstr "Asignaciones de grupo LDAP" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Group Member attribute" -msgstr "" +msgstr "Atributo Miembro del grupo LDAP" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -17370,13 +17370,13 @@ msgstr "Cadena de búsqueda LDAP" #: integrations/doctype/ldap_settings/ldap_settings.py:129 msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" -msgstr "" +msgstr "La cadena de búsqueda LDAP debe estar entre '()' y debe contener el marcador de posición del usuario {0}, por ejemplo, sAMAccountName={0}" #. Label of a Section Break field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Search and Paths" -msgstr "" +msgstr "Búsqueda y rutas de LDAP" #. Label of a Section Break field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -17388,7 +17388,7 @@ msgstr "Seguridad LDAP" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Server Settings" -msgstr "" +msgstr "Configuración del servidor LDAP" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -17428,17 +17428,17 @@ msgstr "LDAP no está habilitado." #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP search path for Groups" -msgstr "" +msgstr "Ruta de búsqueda LDAP para Grupos" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP search path for Users" -msgstr "" +msgstr "Ruta de búsqueda LDAP para Usuarios" #: integrations/doctype/ldap_settings/ldap_settings.py:101 msgid "LDAP settings incorrect. validation response was: {0}" -msgstr "" +msgstr "Configuración LDAP incorrecta. La respuesta de la validación fue: {0}" #: printing/page/print_format_builder/print_format_builder.js:474 #: public/js/frappe/widgets/widget_dialog.js:255 @@ -17652,7 +17652,7 @@ msgstr "Última ejecución" #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "Last Heartbeat" -msgstr "" +msgstr "Último latido" #. Label of a Read Only field in DocType 'User' #: core/doctype/user/user.json @@ -17801,7 +17801,7 @@ msgstr "" #: website/web_template/section_with_features/section_with_features.html:26 msgid "Learn more" -msgstr "" +msgstr "Aprender más" #. Label of an action in the Onboarding Step 'Generate Custom Reports' #: custom/onboarding_step/report_builder/report_builder.json @@ -17903,7 +17903,7 @@ msgstr "Longitud de {0} debe estar entre 1 y 1000" #: public/js/frappe/widgets/chart_widget.js:674 msgid "Less" -msgstr "" +msgstr "Menos" #: public/js/frappe/widgets/onboarding_widget.js:439 msgid "Let us continue with the onboarding" @@ -17917,7 +17917,7 @@ msgstr "Empecemos" #. Title of the Module Onboarding 'Website' #: website/module_onboarding/website/website.json msgid "Let's Set Up Your Website." -msgstr "" +msgstr "Vamos a configurar su sitio web." #: utils/password_strength.py:111 msgid "Let's avoid repeated words and characters" @@ -17925,7 +17925,7 @@ msgstr "Evitemos de palabras y caracteres repetidos" #: desk/page/setup_wizard/setup_wizard.js:459 msgid "Let's set up your account" -msgstr "" +msgstr "Vamos a configurar su cuenta" #: public/js/frappe/widgets/onboarding_widget.js:268 #: public/js/frappe/widgets/onboarding_widget.js:309 @@ -18036,7 +18036,7 @@ msgstr "Tipo de Licencia" #: core/doctype/user/user.json msgctxt "User" msgid "Light" -msgstr "" +msgstr "Claro" #. Option for the 'Color' (Select) field in DocType 'DocType State' #: core/doctype/doctype_state/doctype_state.json @@ -18058,7 +18058,7 @@ msgstr "Color claro" #: public/js/frappe/ui/theme_switcher.js:60 msgid "Light Theme" -msgstr "" +msgstr "Tema Claro" #: public/js/frappe/ui/filters/filter.js:18 msgid "Like" @@ -18090,7 +18090,7 @@ msgstr "" #: templates/includes/likes/likes.py:30 msgid "Like on {0}: {1}" -msgstr "" +msgstr "Me gusta en {0}: {1}" #: desk/like.py:91 msgid "Liked" @@ -18195,13 +18195,13 @@ msgstr "Tarjetas de enlace" #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Link Count" -msgstr "" +msgstr "Recuento de enlaces" #. Label of a Section Break field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Link Details" -msgstr "" +msgstr "Detalles del enlace" #. Label of a Link field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json @@ -18318,7 +18318,7 @@ msgstr "" #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Link Type" -msgstr "" +msgstr "Tipo de enlace" #: public/js/frappe/widgets/widget_dialog.js:354 msgid "Link Type in Row" @@ -18326,7 +18326,7 @@ msgstr "" #: website/doctype/about_us_settings/about_us_settings.js:6 msgid "Link for About Us Page is \"/about\"." -msgstr "" +msgstr "Enlace para Página Acerca de Nosotros es \"/about\"." #. Description of the 'Home Page' (Data) field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -18420,7 +18420,7 @@ msgstr "Lista" #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "List / Search Settings" -msgstr "" +msgstr "Configuración de Lista / Búsqueda" #. Label of a Table field in DocType 'Web Form' #: website/doctype/web_form/web_form.json @@ -18554,7 +18554,7 @@ msgstr "Ubicación" #: core/doctype/package_import/package_import.json msgctxt "Package Import" msgid "Log" -msgstr "" +msgstr "Registro" #. Label of a Section Break field in DocType 'Access Log' #: core/doctype/access_log/access_log.json @@ -18596,7 +18596,7 @@ msgstr "Inicia sesión para acceder a esta página." #. Type: Action #: hooks.py website/doctype/website_settings/website_settings.py:182 msgid "Log out" -msgstr "" +msgstr "Cerrar sesión" #: handler.py:123 msgid "Logged Out" @@ -18707,7 +18707,7 @@ msgstr "" #: www/login.html:106 msgid "Login with Email Link" -msgstr "" +msgstr "Iniciar sesión con enlace de correo" #: www/login.html:46 msgid "Login with LDAP" @@ -18717,7 +18717,7 @@ msgstr "Ingresar con LDAP" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Login with email link" -msgstr "" +msgstr "Iniciar sesión con enlace de correo" #. Label of a Int field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -18828,7 +18828,7 @@ msgstr "" #: core/doctype/package/package.json msgctxt "Package" msgid "MIT License" -msgstr "" +msgstr "Licencia MIT" #. Label of a Text Editor field in DocType 'Web Page' #: website/doctype/web_page/web_page.json @@ -18862,7 +18862,7 @@ msgstr "Mantenimiento por usuario" #: core/doctype/package_release/package_release.json msgctxt "Package Release" msgid "Major" -msgstr "" +msgstr "Mayor" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json @@ -18996,7 +18996,7 @@ msgstr "Obligatorio:" #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Map" -msgstr "" +msgstr "Mapa" #: public/js/frappe/data_import/import_preview.js:190 #: public/js/frappe/data_import/import_preview.js:302 @@ -19043,7 +19043,7 @@ msgstr "" #: public/js/frappe/ui/notifications/notifications.js:44 msgid "Mark all as read" -msgstr "" +msgstr "Marcar todo como leídas" #: core/doctype/communication/communication.js:78 #: core/doctype/communication/communication_list.js:19 @@ -19150,13 +19150,13 @@ msgstr "Máximo de adjuntos" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Max File Size (MB)" -msgstr "" +msgstr "Tamaño máximo del archivo (MB)" #. Label of a Data field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Max Height" -msgstr "" +msgstr "Altura Máxima" #. Label of a Int field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json @@ -19260,13 +19260,13 @@ msgstr "Reunión" #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Meets Condition?" -msgstr "" +msgstr "¿Cumple las condiciones?" #. Group in Email Group's connections #: email/doctype/email_group/email_group.json msgctxt "Email Group" msgid "Members" -msgstr "" +msgstr "Miembros" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json @@ -19412,7 +19412,7 @@ msgstr "Parámetro del mensaje" #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Message Type" -msgstr "" +msgstr "Tipo de mensaje" #: public/js/frappe/views/communication.js:933 msgid "Message clipped" @@ -19442,13 +19442,13 @@ msgstr "Mensaje-id" #: core/doctype/data_import_log/data_import_log.json msgctxt "Data Import Log" msgid "Messages" -msgstr "" +msgstr "Mensajes" #. Label of a Section Break field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Meta" -msgstr "" +msgstr "Meta" #: website/doctype/web_page/web_page.js:124 msgid "Meta Description" @@ -19616,7 +19616,7 @@ msgstr "Puntuación mínima de contraseña" #: core/doctype/package_release/package_release.json msgctxt "Package Release" msgid "Minor" -msgstr "" +msgstr "Menor" #: integrations/doctype/ldap_settings/ldap_settings.py:102 #: integrations/doctype/ldap_settings/ldap_settings.py:107 @@ -19624,11 +19624,11 @@ msgstr "" #: integrations/doctype/ldap_settings/ldap_settings.py:124 #: integrations/doctype/ldap_settings/ldap_settings.py:332 msgid "Misconfigured" -msgstr "" +msgstr "Mal configurado" #: desk/form/meta.py:213 msgid "Missing DocType" -msgstr "" +msgstr "Falta DocType" #: core/doctype/doctype/doctype.py:1475 msgid "Missing Field" @@ -19659,7 +19659,7 @@ msgstr "Valores faltantes requeridos" #: www/login.py:96 msgid "Mobile" -msgstr "" +msgstr "Móvil" #: tests/test_translate.py:85 tests/test_translate.py:88 #: tests/test_translate.py:90 tests/test_translate.py:93 @@ -19687,7 +19687,7 @@ msgstr "" #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Models" -msgstr "" +msgstr "Modelos" #: core/report/transaction_log_report/transaction_log_report.py:106 #: social/doctype/energy_point_rule/energy_point_rule.js:43 @@ -20125,19 +20125,19 @@ msgstr "Mover a la papelera" #: public/js/frappe/form/form.js:176 msgid "Move cursor to above row" -msgstr "" +msgstr "Mover el cursor a la fila superior" #: public/js/frappe/form/form.js:180 msgid "Move cursor to below row" -msgstr "" +msgstr "Mover el cursor a la fila inferior" #: public/js/frappe/form/form.js:184 msgid "Move cursor to next column" -msgstr "" +msgstr "Mover el cursor a la siguiente columna" #: public/js/frappe/form/form.js:188 msgid "Move cursor to previous column" -msgstr "" +msgstr "Mover el cursor a la columna anterior" #: public/js/frappe/form/grid_row.js:165 msgid "Move to Row Number" @@ -20280,7 +20280,7 @@ msgstr "" #: desk/utils.py:22 msgid "Name already taken, please set a new name" -msgstr "" +msgstr "Nombre ya usado, por favor establezca un nuevo nombre" #: model/naming.py:480 msgid "Name cannot contain special characters like {0}" @@ -20340,13 +20340,13 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Naming Rule" -msgstr "" +msgstr "Regla de Nomenclatura" #. Label of a Select field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Naming Rule" -msgstr "" +msgstr "Regla de Nomenclatura" #. Label of a Tab Break field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json @@ -20422,7 +20422,7 @@ msgstr "" #: core/doctype/role/role.json msgctxt "Role" msgid "Navigation Settings" -msgstr "" +msgstr "Configuración de Navegación" #: desk/doctype/workspace/workspace.py:297 msgid "Need Workspace Manager role to edit private workspace of other users" @@ -20443,7 +20443,7 @@ msgstr "Error de conjunto anidado. Contacta con el administrador." #. Name of a DocType #: printing/doctype/network_printer_settings/network_printer_settings.json msgid "Network Printer Settings" -msgstr "" +msgstr "Configuración de la Impresora de Red" #: core/doctype/success_action/success_action.js:55 #: core/page/dashboard_view/dashboard_view.js:173 desk/doctype/todo/todo.js:46 @@ -20490,7 +20490,7 @@ msgstr "Nuevo comentario en {0}: {1}" #: public/js/frappe/form/templates/contact_list.html:90 msgid "New Contact" -msgstr "" +msgstr "Nuevo Contacto" #: public/js/frappe/widgets/widget_dialog.js:70 msgid "New Custom Block" @@ -20606,7 +20606,7 @@ msgstr "Nueva Área de Trabajo" #: www/update-password.html:77 msgid "New password cannot be same as old password" -msgstr "" +msgstr "La nueva contraseña no puede ser igual a la contraseña anterior" #: utils/change_log.py:320 msgid "New updates are available" @@ -20662,7 +20662,7 @@ msgstr "Las nuevas {} versiones para las siguientes aplicaciones están disponib #: core/doctype/user/user.py:806 msgid "Newly created user {0} has no roles enabled." -msgstr "" +msgstr "El usuario recién creado {0} no tiene ningún rol habilitado." #. Label of a Card Break in the Tools Workspace #. Name of a DocType @@ -20739,13 +20739,13 @@ msgstr "Acciones Siguientes HTML" #: public/js/frappe/form/toolbar.js:297 msgid "Next Document" -msgstr "" +msgstr "Siguiente Documento" #. Label of a Datetime field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Next Execution" -msgstr "" +msgstr "Próxima ejecución" #. Label of a Link field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -20804,42 +20804,42 @@ msgstr "" #: public/js/frappe/views/reports/query_report.js:1530 #: website/doctype/help_article/templates/help_article.html:26 msgid "No" -msgstr "" +msgstr "No" #: public/js/frappe/ui/filters/filter.js:502 msgctxt "Checkbox is not checked" msgid "No" -msgstr "" +msgstr "No" #: public/js/frappe/ui/messages.js:37 msgctxt "Dismiss confirmation dialog" msgid "No" -msgstr "" +msgstr "No" #. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP #. Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "No" -msgstr "" +msgstr "No" #. Option for the 'Standard' (Select) field in DocType 'Page' #: core/doctype/page/page.json msgctxt "Page" msgid "No" -msgstr "" +msgstr "No" #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "No" -msgstr "" +msgstr "No" #. Option for the 'Is Standard' (Select) field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "No" -msgstr "" +msgstr "No" #: www/third_party_apps.html:54 msgid "No Active Sessions" @@ -20881,7 +20881,7 @@ msgstr "" #: public/js/frappe/widgets/quick_list_widget.js:131 msgid "No Data..." -msgstr "" +msgstr "Sin datos..." #: public/js/frappe/views/inbox/inbox_view.js:176 msgid "No Email Account" @@ -20909,11 +20909,11 @@ msgstr "No hay eventos de Google Calendar para sincronizar." #: public/js/frappe/ui/capture.js:262 msgid "No Images" -msgstr "" +msgstr "No hay imágenes" #: desk/page/leaderboard/leaderboard.js:282 msgid "No Items Found" -msgstr "" +msgstr "No se han encontrado elementos" #: integrations/doctype/ldap_settings/ldap_settings.py:362 msgid "No LDAP User found for email: {0}" @@ -20975,11 +20975,11 @@ msgstr "No hay resultados" #: public/js/frappe/ui/toolbar/search.js:51 msgid "No Results found" -msgstr "" +msgstr "No se encontraron resultados" #: core/doctype/user/user.py:807 msgid "No Roles Specified" -msgstr "" +msgstr "No hay Roles especificados" #: public/js/frappe/views/kanban/kanban_view.js:341 msgid "No Select Field Found" @@ -21039,7 +21039,7 @@ msgstr "" #: public/js/frappe/form/templates/contact_list.html:85 msgid "No contacts added yet." -msgstr "" +msgstr "Ningún contacto agregado todavía." #: automation/doctype/auto_repeat/auto_repeat.py:427 msgid "No contacts linked to document" @@ -21170,15 +21170,15 @@ msgstr "" #: website/web_template/discussions/discussions.html:2 msgid "No {0}" -msgstr "" +msgstr "No {0}" #: public/js/frappe/list/list_view_select.js:157 msgid "No {0} Found" -msgstr "" +msgstr "Ningún {0} encontrado" #: public/js/frappe/web_form/web_form_list.js:233 msgid "No {0} found" -msgstr "" +msgstr "Ningún {0} encontrado" #: public/js/frappe/list/list_view.js:467 msgid "No {0} found with matching filters. Clear filters to see all {0}." @@ -21191,7 +21191,7 @@ msgstr "No {0} electrónico" #: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:252 msgctxt "Title of the 'row number' column" msgid "No." -msgstr "" +msgstr "Nº" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -21232,7 +21232,7 @@ msgstr "" #: core/doctype/recorder_query/recorder_query.json msgctxt "Recorder Query" msgid "Normalized Query" -msgstr "" +msgstr "Consulta normalizada" #: core/doctype/user/user.py:1012 templates/includes/login/login.js:258 #: utils/oauth.py:265 @@ -21263,7 +21263,7 @@ msgstr "No encontrado" #: website/doctype/help_article/help_article.json msgctxt "Help Article" msgid "Not Helpful" -msgstr "" +msgstr "No útil" #: public/js/frappe/ui/filters/filter.js:21 msgid "Not In" @@ -21281,7 +21281,7 @@ msgstr "No está vinculado a ningún registro" #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Not Nullable" -msgstr "" +msgstr "No nulo" #: __init__.py:1017 app.py:353 desk/calendar.py:26 geo/utils.py:97 #: public/js/frappe/web_form/webform_script.js:15 @@ -21353,7 +21353,7 @@ msgstr "No es una acción de flujo de trabajo válida" #: templates/includes/login/login.js:256 msgid "Not a valid user" -msgstr "" +msgstr "Usuario no válido" #: workflow/doctype/workflow/workflow_list.js:7 msgid "Not active" @@ -21483,7 +21483,7 @@ msgstr "No queda nada que rehacer" #: public/js/frappe/form/undo_manager.js:33 msgid "Nothing left to undo" -msgstr "" +msgstr "Nada que deshacer" #: public/js/frappe/list/base_list.js:362 #: public/js/frappe/views/reports/query_report.js:104 @@ -21655,7 +21655,7 @@ msgstr "Enlace de tarjeta numérica" #: desk/doctype/workspace_number_card/workspace_number_card.json msgctxt "Workspace Number Card" msgid "Number Card Name" -msgstr "" +msgstr "Nombre de la Tarjeta" #: public/js/frappe/widgets/widget_dialog.js:660 msgid "Number Cards" @@ -21706,7 +21706,7 @@ msgstr "Numero de grupos" #: core/doctype/recorder/recorder.json msgctxt "Recorder" msgid "Number of Queries" -msgstr "" +msgstr "Número de consultas" #: core/doctype/doctype/doctype.py:441 public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." @@ -21755,7 +21755,7 @@ msgstr "Código de autorización OAuth" #. Name of a DocType #: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "OAuth Bearer Token" -msgstr "" +msgstr "Token de portador OAuth" #. Name of a DocType #: integrations/doctype/oauth_client/oauth_client.json @@ -21776,7 +21776,7 @@ msgstr "ID de cliente de OAuth" #: email/oauth.py:30 msgid "OAuth Error" -msgstr "" +msgstr "Error de OAuth" #. Name of a DocType #: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json @@ -21792,7 +21792,7 @@ msgstr "Configuración del Proveedor OAuth" #. Name of a DocType #: integrations/doctype/oauth_scope/oauth_scope.json msgid "OAuth Scope" -msgstr "" +msgstr "Ámbito OAuth" #: email/doctype/email_account/email_account.js:187 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." @@ -21806,7 +21806,7 @@ msgstr "" #: core/doctype/recorder/recorder.json msgctxt "Recorder" msgid "OPTIONS" -msgstr "" +msgstr "OPTIONS" #. Option for the 'Two Factor Authentication method' (Select) field in DocType #. 'System Settings' @@ -21823,7 +21823,7 @@ msgstr "Nombre del Emisor de OTP" #: twofactor.py:461 msgid "OTP Secret Reset - {0}" -msgstr "" +msgstr "Restablecer secreto OTP - {0}" #: twofactor.py:480 msgid "OTP Secret has been reset. Re-registration will be required on next login." @@ -21860,13 +21860,13 @@ msgstr "" #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Offset X" -msgstr "" +msgstr "Desplazamiento X" #. Label of a Int field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Offset Y" -msgstr "" +msgstr "Desplazamiento Y" #: www/update-password.html:15 msgid "Old Password" @@ -21916,7 +21916,7 @@ msgstr "" #: public/js/frappe/views/communication.js:943 msgid "On {0}, {1} wrote:" -msgstr "" +msgstr "El {0}, {1} escribió:" #. Label of a Check field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json @@ -22044,7 +22044,7 @@ msgstr "" #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Only for" -msgstr "" +msgstr "Solo para" #: core/doctype/data_export/exporter.py:192 msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." @@ -22231,7 +22231,7 @@ msgstr "" #: core/doctype/file/file.js:89 msgid "Optimizing image..." -msgstr "" +msgstr "Optimizando imagen..." #: custom/doctype/custom_field/custom_field.js:100 msgid "Option 1" @@ -22405,25 +22405,25 @@ msgstr "Otro" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Outgoing (SMTP) Settings" -msgstr "" +msgstr "Configuración saliente (SMTP)" #. Label of a Data field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Outgoing Server" -msgstr "" +msgstr "Servidor de salida" #. Label of a Data field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Outgoing Server" -msgstr "" +msgstr "Servidor de salida" #. Label of a Section Break field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Outgoing Settings" -msgstr "" +msgstr "Configuración saliente" #: email/doctype/email_domain/email_domain.py:33 msgid "Outgoing email account not correct" @@ -22433,7 +22433,7 @@ msgstr "Cuenta de Correo Electrónico Saliente no correcta" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Outlook.com" -msgstr "" +msgstr "Outlook.com" #. Label of a Code field in DocType 'Integration Request' #: integrations/doctype/integration_request/integration_request.json @@ -22467,7 +22467,7 @@ msgstr "Propietario" #: core/doctype/recorder/recorder.json msgctxt "Recorder" msgid "PATCH" -msgstr "" +msgstr "PATCH" #: printing/page/print/print.js:71 #: public/js/frappe/form/templates/print_layout.html:44 @@ -22477,7 +22477,7 @@ msgstr "PDF" #: utils/print_format.py:146 utils/print_format.py:190 msgid "PDF Generation in Progress" -msgstr "" +msgstr "Generación de PDF en progreso" #. Label of a Float field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -22513,7 +22513,7 @@ msgstr "Error en la generación del archivo PDF debido a problema con los enlace #: printing/page/print/print.js:531 msgid "PDF printing via \"Raw Print\" is not supported." -msgstr "" +msgstr "La impresión en PDF a través de \"Impresión sin formato\" no está soportada." #. Label of a Data field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json @@ -22548,25 +22548,25 @@ msgstr "PUT" #. Name of a DocType #: core/doctype/package/package.json msgid "Package" -msgstr "" +msgstr "Paquete" #. Label of a Link field in DocType 'Module Def' #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Package" -msgstr "" +msgstr "Paquete" #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Package" msgid "Package" -msgstr "" +msgstr "Paquete" #. Label of a Link field in DocType 'Package Release' #: core/doctype/package_release/package_release.json msgctxt "Package Release" msgid "Package" -msgstr "" +msgstr "Paquete" #. Name of a DocType #: core/doctype/package_import/package_import.json @@ -22583,7 +22583,7 @@ msgstr "" #: core/doctype/package/package.json msgctxt "Package" msgid "Package Name" -msgstr "" +msgstr "Nombre del Paquete" #. Name of a DocType #: core/doctype/package_release/package_release.json @@ -22599,7 +22599,7 @@ msgstr "" #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Packages" -msgstr "" +msgstr "Paquetes" #. Name of a DocType #: core/doctype/page/page.json @@ -22642,7 +22642,7 @@ msgstr "Página" #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Page Break" -msgstr "" +msgstr "Salto de Página" #: website/doctype/web_page/web_page.js:92 msgid "Page Builder" @@ -22668,7 +22668,7 @@ msgstr "Página HTML" #: public/js/frappe/list/bulk_operations.js:72 msgid "Page Height (in mm)" -msgstr "" +msgstr "Altura de página (en mm)" #. Label of a Data field in DocType 'Page' #: core/doctype/page/page.json @@ -22680,17 +22680,17 @@ msgstr "Nombre de la página" #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Page Number" -msgstr "" +msgstr "Número de página" #. Label of a Small Text field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Page Route" -msgstr "" +msgstr "Ruta de la página" #: public/js/frappe/views/workspace/workspace.js:1510 msgid "Page Saved Successfully" -msgstr "" +msgstr "Página guardada exitosamente" #. Label of a Section Break field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -22762,19 +22762,19 @@ msgstr "Principal" #: core/doctype/doctype_link/doctype_link.json msgctxt "DocType Link" msgid "Parent DocType" -msgstr "" +msgstr "DocType padre" #. Label of a Link field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Parent Document Type" -msgstr "" +msgstr "Tipo de documento padre" #. Label of a Link field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Parent Document Type" -msgstr "" +msgstr "Tipo de documento padre" #: desk/doctype/number_card/number_card.py:62 msgid "Parent Document Type is required to create a number card" @@ -22790,7 +22790,7 @@ msgstr "" #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Parent Field" -msgstr "" +msgstr "Campo padre" #: core/doctype/doctype/doctype.py:914 msgid "Parent Field (Tree)" @@ -22814,7 +22814,7 @@ msgstr "Etiqueta Principal" #: core/doctype/doctype/doctype.py:1146 msgid "Parent Missing" -msgstr "" +msgstr "Falta padre" #. Label of a Data field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -22921,7 +22921,7 @@ msgstr "Contraseña" #: core/doctype/user/user.py:1075 msgid "Password Email Sent" -msgstr "" +msgstr "Correo de Contraseña enviado" #: core/doctype/user/user.py:454 msgid "Password Reset" @@ -22957,7 +22957,7 @@ msgstr "" #: utils/password.py:41 msgid "Password not found for {0} {1} {2}" -msgstr "" +msgstr "Contraseña no encontrada para {0} {1} {2}" #: core/doctype/user/user.py:1074 msgid "Password reset instructions have been sent to your email" @@ -22965,19 +22965,19 @@ msgstr "Las instrucciones para el restablecimiento de la contraseña han sido en #: www/update-password.html:164 msgid "Password set" -msgstr "" +msgstr "Contraseña establecida" #: auth.py:235 msgid "Password size exceeded the maximum allowed size" -msgstr "" +msgstr "El tamaño de la contraseña excedió el tamaño máximo permitido" #: core/doctype/user/user.py:870 msgid "Password size exceeded the maximum allowed size." -msgstr "" +msgstr "El tamaño de la contraseña superó el tamaño máximo permitido." #: www/update-password.html:78 msgid "Passwords do not match" -msgstr "" +msgstr "Las contraseñas no coinciden" #: core/doctype/user/user.js:191 msgid "Passwords do not match!" @@ -23060,7 +23060,7 @@ msgstr "Ruta al archivo de clave privada" #: website/path_resolver.py:197 msgid "Path {0} it not a valid path" -msgstr "" +msgstr "Ruta {0} no es una ruta válida" #. Label of a Int field in DocType 'Data Import' #: core/doctype/data_import/data_import.json @@ -23297,7 +23297,7 @@ msgstr "" #: contacts/doctype/address/address.json msgctxt "Address" msgid "Personal" -msgstr "" +msgstr "Personal" #. Name of a DocType #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -23376,7 +23376,7 @@ msgstr "No. de teléfono" #: utils/__init__.py:108 msgid "Phone Number {0} set in field {1} is not valid." -msgstr "" +msgstr "Número de teléfono {0} establecido en el campo {1} no es válido." #: public/js/frappe/form/print_utils.js:38 #: public/js/frappe/views/reports/report_view.js:1501 @@ -23412,7 +23412,7 @@ msgstr "" #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Plain Text" -msgstr "" +msgstr "Texto sin formato" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json @@ -23422,7 +23422,7 @@ msgstr "Planta" #: email/oauth.py:29 msgid "Please Authorize OAuth for Email Account {}" -msgstr "" +msgstr "Por favor, autorice OAuth para la cuenta de correo {}" #: website/doctype/website_theme/website_theme.py:77 msgid "Please Duplicate this Website Theme to customize." @@ -23470,7 +23470,7 @@ msgstr "" #: integrations/doctype/connected_app/connected_app.js:19 msgid "Please check OpenID Configuration URL" -msgstr "" +msgstr "Por favor verifique la URL de configuración de OpenID" #: utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" @@ -23577,7 +23577,7 @@ msgstr "Ingrese Client Secret antes de que el inicio de sesión social esté hab #: integrations/doctype/connected_app/connected_app.js:8 msgid "Please enter OpenID Configuration URL" -msgstr "" +msgstr "Por favor, introduzca la URL de configuración de OpenID" #: integrations/doctype/social_login_key/social_login_key.py:76 msgid "Please enter Redirect URL" @@ -23585,7 +23585,7 @@ msgstr "Por favor ingrese la URL de Redireccion" #: templates/includes/comments/comments.html:163 msgid "Please enter a valid email address." -msgstr "" +msgstr "Por favor, introduzca una dirección de correo válida." #: www/update-password.html:232 msgid "Please enter the password" @@ -23594,7 +23594,7 @@ msgstr "Por favor introduzca la contraseña" #: public/js/frappe/desk.js:196 msgctxt "Email Account" msgid "Please enter the password for: {0}" -msgstr "" +msgstr "Por favor, introduzca la contraseña para: {0}" #: core/doctype/sms_settings/sms_settings.py:43 msgid "Please enter valid mobile nos" @@ -23602,11 +23602,11 @@ msgstr "Por favor, ingrese un numero de móvil válido" #: www/update-password.html:115 msgid "Please enter your new password." -msgstr "" +msgstr "Por favor, ingrese su nueva contraseña." #: www/update-password.html:108 msgid "Please enter your old password." -msgstr "" +msgstr "Por favor, introduzca su antigua contraseña." #: automation/doctype/auto_repeat/auto_repeat.py:402 msgid "Please find attached {0}: {1}" @@ -23618,7 +23618,7 @@ msgstr "Oculte los elementos estándar de la barra de navegación en lugar de el #: templates/includes/comments/comments.py:31 msgid "Please login to post a comment." -msgstr "" +msgstr "Por favor, inicie sesión para enviar un comentario." #: core/doctype/communication/communication.py:210 msgid "Please make sure the Reference Communication Docs are not circularly linked." @@ -23674,11 +23674,11 @@ msgstr "Seleccione el valor mínimo de la contraseña" #: public/js/frappe/views/reports/query_report.js:1106 msgid "Please select X and Y fields" -msgstr "" +msgstr "Por favor, seleccione campos X e Y" #: utils/__init__.py:115 msgid "Please select a country code for field {1}." -msgstr "" +msgstr "Por favor, seleccione un código de país para el campo {1}." #: utils/file_manager.py:50 msgid "Please select a file or url" @@ -23761,11 +23761,11 @@ msgstr "Configura un mensaje primero" #: email/doctype/email_account/email_account.py:407 msgid "Please setup default Email Account from Settings > Email Account" -msgstr "" +msgstr "Por favor, configure la cuenta de correo predeterminada desde Ajustes > Cuenta de Correo" #: core/doctype/user/user.py:405 msgid "Please setup default outgoing Email Account from Settings > Email Account" -msgstr "" +msgstr "Por favor, configure la cuenta de correo saliente por defecto desde Ajustes > Cuenta de Correo" #: public/js/frappe/model/model.js:790 msgid "Please specify" @@ -23790,11 +23790,11 @@ msgstr "Por favor, inténtelo de nuevo" #: integrations/google_oauth.py:56 msgid "Please update {} before continuing." -msgstr "" +msgstr "Por favor, actualice {} antes de continuar." #: integrations/doctype/ldap_settings/ldap_settings.py:332 msgid "Please use a valid LDAP search filter" -msgstr "" +msgstr "Por favor, utilice un filtro de búsqueda LDAP válido" #: email/doctype/newsletter/newsletter.py:333 msgid "Please verify your Email Address" @@ -23802,7 +23802,7 @@ msgstr "Por favor verifica tu dirección de correo" #: utils/password.py:201 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." -msgstr "" +msgstr "Por favor, visite https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key para más información." #. Label of a Select field in DocType 'Energy Point Settings' #: social/doctype/energy_point_settings/energy_point_settings.json @@ -23863,7 +23863,7 @@ msgstr "Puerto" #. Label of a Card Break in the Website Workspace #: website/workspace/website/website.json msgid "Portal" -msgstr "" +msgstr "Portal" #. Label of a Table field in DocType 'Portal Settings' #: website/doctype/portal_settings/portal_settings.json @@ -23913,7 +23913,7 @@ msgstr "" #: contacts/doctype/address/address.json msgctxt "Address" msgid "Postal" -msgstr "" +msgstr "Postal" #. Label of a Data field in DocType 'Address' #: contacts/doctype/address/address.json @@ -24021,7 +24021,7 @@ msgstr "" #: public/js/frappe/ui/keyboard.js:138 msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" -msgstr "" +msgstr "Presione la tecla Alt para activar accesos directos adicionales en Menú y Barra lateral" #: public/js/frappe/list/list_filter.js:134 msgid "Press Enter to save" @@ -24075,13 +24075,13 @@ msgstr "Vista Previa HTML" #: website/doctype/blog_category/blog_category.json msgctxt "Blog Category" msgid "Preview Image" -msgstr "" +msgstr "Previsualizar imagen" #. Label of a Attach Image field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json msgctxt "Blog Settings" msgid "Preview Image" -msgstr "" +msgstr "Previsualizar imagen" #. Label of a Button field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json @@ -24091,7 +24091,7 @@ msgstr "Mensaje de Vista Previa" #: public/js/form_builder/form_builder.bundle.js:83 msgid "Preview Mode" -msgstr "" +msgstr "Modo de previsualización" #. Label of a Text field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json @@ -24151,7 +24151,7 @@ msgstr "" #: public/js/frappe/form/templates/contact_list.html:63 msgid "Primary Email" -msgstr "" +msgstr "Correo principal" #: public/js/frappe/form/templates/contact_list.html:43 msgid "Primary Mobile" @@ -24264,7 +24264,7 @@ msgstr "Diseñador de formatos de impresión Beta" #: utils/pdf.py:56 msgid "Print Format Error" -msgstr "" +msgstr "Error de formato de impresión" #. Name of a DocType #: printing/doctype/print_format_field_template/print_format_field_template.json @@ -24426,7 +24426,7 @@ msgstr "Imprimir el ancho del campo, si el campo es una columna en una tabla" #: public/js/frappe/form/form.js:170 msgid "Print document" -msgstr "" +msgstr "Imprimir Documento" #. Label of a Check field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -24454,7 +24454,7 @@ msgstr "Configuración de la impresora" #: printing/page/print/print.js:545 msgid "Printer mapping not set." -msgstr "" +msgstr "El mapeo de impresora no está establecido." #. Label of a Card Break in the Tools Workspace #: automation/workspace/tools/tools.json @@ -24530,7 +24530,7 @@ msgstr "Protip: Agregar Reference: {{ reference_doctype }} {{ reference_na #: core/doctype/document_naming_rule/document_naming_rule.js:22 msgid "Proceed" -msgstr "" +msgstr "Proceder" #: public/js/frappe/views/reports/query_report.js:858 msgid "Proceed Anyway" @@ -24548,7 +24548,7 @@ msgstr "Procesando..." #: core/doctype/user/user.json msgctxt "User" msgid "Profile" -msgstr "" +msgstr "Perfil" #: public/js/frappe/socketio_client.js:78 msgid "Progress" @@ -24585,13 +24585,13 @@ msgstr "La propiedad depende de" #. Name of a DocType #: custom/doctype/property_setter/property_setter.json msgid "Property Setter" -msgstr "" +msgstr "Fijador de Propiedades" #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Property Setter" -msgstr "" +msgstr "Fijador de Propiedades" #. Description of a DocType #: custom/doctype/property_setter/property_setter.json @@ -24928,7 +24928,7 @@ msgstr "Informe de Consultas" #: utils/safe_exec.py:434 msgid "Query must be of SELECT or read-only WITH type." -msgstr "" +msgstr "La consulta debe ser de tipo SELECT o WITH de sólo lectura." #. Label of a Select field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -24962,7 +24962,7 @@ msgstr "Cola debe ser una de {0}" #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "Queue(s)" -msgstr "" +msgstr "Cola(s)" #: email/doctype/newsletter/newsletter.js:208 msgid "Queued" @@ -24990,13 +24990,13 @@ msgstr "En cola" #: core/doctype/prepared_report/prepared_report.json msgctxt "Prepared Report" msgid "Queued At" -msgstr "" +msgstr "En cola el" #. Label of a Data field in DocType 'Prepared Report' #: core/doctype/prepared_report/prepared_report.json msgctxt "Prepared Report" msgid "Queued By" -msgstr "" +msgstr "En cola por" #: core/doctype/submission_queue/submission_queue.py:174 msgid "Queued for Submission. You can track the progress over {0}." @@ -25071,19 +25071,19 @@ msgstr "Trabajo RQ" #. Name of a DocType #: core/doctype/rq_worker/rq_worker.json msgid "RQ Worker" -msgstr "" +msgstr "Trabajador RQ" #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Random" -msgstr "" +msgstr "Aleatorio" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Random" -msgstr "" +msgstr "Aleatorio" #: website/report/website_analytics/website_analytics.js:20 msgid "Range" @@ -25175,7 +25175,7 @@ msgstr "" #: public/js/frappe/form/templates/print_layout.html:37 msgid "Raw Printing Settings" -msgstr "" +msgstr "Configuración de Impresión sin formato" #: desk/doctype/console_log/console_log.js:6 msgid "Re-Run in Console" @@ -25317,17 +25317,17 @@ msgstr "Leído por el Destinatario en" #: desk/doctype/note/note.js:10 msgid "Read mode" -msgstr "" +msgstr "Modo de lectura" #: utils/safe_exec.py:90 msgid "Read the documentation to know more" -msgstr "" +msgstr "Lea la documentación para saber más" #. Label of a Markdown Editor field in DocType 'Package' #: core/doctype/package/package.json msgctxt "Package" msgid "Readme" -msgstr "" +msgstr "Léeme" #: public/js/frappe/form/sidebar/review.js:85 #: social/doctype/energy_point_log/energy_point_log.js:20 @@ -25394,7 +25394,7 @@ msgstr "Parámetro del receptor" #: desk/page/user_profile/user_profile.html:39 msgid "Recent Activity" -msgstr "" +msgstr "Actividad Reciente" #: utils/password_strength.py:123 msgid "Recent years are easy to guess." @@ -25986,7 +25986,7 @@ msgstr "Actualizar Token" #: public/js/frappe/list/list_view.js:505 msgctxt "Document count in list view" msgid "Refreshing" -msgstr "" +msgstr "Refrescando" #: core/doctype/system_settings/system_settings.js:52 #: core/doctype/user/user.js:350 desk/page/setup_wizard/setup_wizard.js:204 @@ -26017,7 +26017,7 @@ msgstr "" #: integrations/doctype/push_notification_settings/push_notification_settings.json msgctxt "Push Notification Settings" msgid "Relay Settings" -msgstr "" +msgstr "Configuración del Relé" #. Group in Package's connections #: core/doctype/package/package.json @@ -26065,11 +26065,11 @@ msgstr "" #: public/js/frappe/list/base_list.js:242 msgid "Reload List" -msgstr "" +msgstr "Recargar lista" #: public/js/frappe/views/reports/query_report.js:99 msgid "Reload Report" -msgstr "" +msgstr "Recargar Informe" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json @@ -26676,7 +26676,7 @@ msgstr "" #: public/js/print_format_builder/print_format_builder.bundle.js:21 #: public/js/workflow_builder/workflow_builder.bundle.js:37 msgid "Reset Changes" -msgstr "" +msgstr "Restablecer Cambios" #: public/js/frappe/widgets/chart_widget.js:305 msgid "Reset Chart" @@ -26862,7 +26862,7 @@ msgstr "Restricciones" #: public/js/frappe/ui/toolbar/awesome_bar.js:356 #: public/js/frappe/ui/toolbar/awesome_bar.js:371 msgid "Result" -msgstr "" +msgstr "Resultado" #: email/doctype/email_queue/email_queue_list.js:27 msgid "Resume Sending" @@ -27016,13 +27016,13 @@ msgstr "derecho" #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Right Bottom" -msgstr "" +msgstr "Abajo derecha" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Right Center" -msgstr "" +msgstr "Centro-derecha" #. Label of a Code field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -27183,7 +27183,7 @@ msgstr "Perfil de Rol" #: core/doctype/user/user.json msgctxt "User" msgid "Role Profiles" -msgstr "" +msgstr "Perfiles de Rol" #. Label of a Section Break field in DocType 'Custom DocPerm' #: core/doctype/custom_docperm/custom_docperm.json @@ -27253,7 +27253,7 @@ msgstr "Roles" #: core/doctype/user/user.json msgctxt "User" msgid "Roles & Permissions" -msgstr "" +msgstr "Roles y Permisos" #. Label of a Table field in DocType 'Role Profile' #: core/doctype/role_profile/role_profile.json @@ -27271,13 +27271,13 @@ msgstr "Roles Asignados" #: core/doctype/role_profile/role_profile.json msgctxt "Role Profile" msgid "Roles HTML" -msgstr "" +msgstr "HTML Rol" #. Label of a HTML field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Roles HTML" -msgstr "" +msgstr "HTML Rol" #. Label of a HTML field in DocType 'Role Permission for Page and Report' #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json @@ -27297,7 +27297,7 @@ msgstr "Root {0} no se puede eliminar" #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Round Robin" -msgstr "" +msgstr "Round Robin" #. Label of a Select field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -27423,7 +27423,7 @@ msgstr "" #: core/doctype/doctype/doctype.py:1770 core/doctype/doctype/doctype.py:1780 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" -msgstr "" +msgstr "Fila # {0}: El usuario no administrador no puede establecer el rol {1} al doctype personalizado" #: model/base_document.py:893 msgid "Row #{0}:" @@ -27431,7 +27431,7 @@ msgstr "Fila #{0}:" #: core/doctype/doctype/doctype.py:490 msgid "Row #{}: Fieldname is required" -msgstr "" +msgstr "Fila #{}: Nombre del campo es obligatorio" #. Label of a Data field in DocType 'Transaction Log' #: core/doctype/transaction_log/transaction_log.json @@ -27453,7 +27453,7 @@ msgstr "Nombre de fila" #: core/doctype/data_import/data_import.js:489 msgid "Row Number" -msgstr "" +msgstr "Número de fila" #: core/doctype/version/version_view.html:68 msgid "Row Values Changed" @@ -27634,7 +27634,7 @@ msgstr "" #: email/doctype/email_account/email_account.py:189 msgid "SMTP Server is required" -msgstr "" +msgstr "Se necesita un servidor SMTP" #. Description of the 'Enable Outgoing' (Check) field in DocType 'Email #. Account' @@ -27657,25 +27657,25 @@ msgstr "Condiciones SQL. Ejemplo: estado=\"Abierto\"" #: core/doctype/recorder/recorder.js:36 msgid "SQL Explain" -msgstr "" +msgstr "Explicación SQL" #. Label of a HTML field in DocType 'Recorder Query' #: core/doctype/recorder_query/recorder_query.json msgctxt "Recorder Query" msgid "SQL Explain" -msgstr "" +msgstr "Explicación SQL" #. Label of a HTML field in DocType 'System Console' #: desk/doctype/system_console/system_console.json msgctxt "System Console" msgid "SQL Output" -msgstr "" +msgstr "Salida SQL" #. Label of a Table field in DocType 'Recorder' #: core/doctype/recorder/recorder.json msgctxt "Recorder" msgid "SQL Queries" -msgstr "" +msgstr "Consultas SQL" #. Label of a Select field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -27857,7 +27857,7 @@ msgstr "Guardando" #: custom/doctype/customize_form/customize_form.js:343 msgid "Saving Customization..." -msgstr "" +msgstr "Guardando personalización..." #: desk/doctype/module_onboarding/module_onboarding.js:8 msgid "Saving this will export this document as well as the steps linked here as json." @@ -27953,7 +27953,7 @@ msgstr "Tipo de trabajo programado" #: core/workspace/build/build.json msgctxt "Scheduled Job Log" msgid "Scheduled Jobs Logs" -msgstr "" +msgstr "Registro de Trabajos Programados" #. Label of a Section Break field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json @@ -28042,37 +28042,37 @@ msgstr "Alcances" #: custom/doctype/client_script/client_script.json msgctxt "Client Script" msgid "Script" -msgstr "" +msgstr "Script" #. Label of a Code field in DocType 'Console Log' #: desk/doctype/console_log/console_log.json msgctxt "Console Log" msgid "Script" -msgstr "" +msgstr "Script" #. Label of a Code field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Script" -msgstr "" +msgstr "Script" #. Label of a Code field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Script" -msgstr "" +msgstr "Script" #. Label of a Section Break field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Script" -msgstr "" +msgstr "Script" #. Label of a Tab Break field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Script" -msgstr "" +msgstr "Script" #. Name of a role #: core/doctype/server_script/server_script.json @@ -28099,19 +28099,19 @@ msgstr "" #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Scripting" -msgstr "" +msgstr "Scripting" #. Label of a Tab Break field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Scripting" -msgstr "" +msgstr "Scripting" #. Label of a Section Break field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Scripting / Style" -msgstr "" +msgstr "Scripting / Estilo" #. Label of a Section Break field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json @@ -28164,7 +28164,7 @@ msgstr "Prioridades de búsqueda" #: www/search.py:14 msgid "Search Results for" -msgstr "" +msgstr "Resultados para" #: core/doctype/doctype/doctype.py:1416 msgid "Search field {0} is not valid" @@ -28450,7 +28450,7 @@ msgstr "Seleccione Doctype" #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Select Document" -msgstr "" +msgstr "Seleccionar Documento" #: printing/page/print_format_builder_beta/print_format_builder_beta.js:50 #: workflow/page/workflow_builder/workflow_builder.js:50 @@ -28472,7 +28472,7 @@ msgstr "Seleccionar campo" #: public/js/frappe/ui/group_by/group_by.html:32 #: public/js/frappe/ui/group_by/group_by.js:141 msgid "Select Field..." -msgstr "" +msgstr "Seleccionar campo..." #: public/js/frappe/form/grid_row.js:460 #: public/js/frappe/list/list_settings.js:233 @@ -28502,7 +28502,7 @@ msgstr "Seleccione Contactos de Google con los que se debe sincronizar el contac #: public/js/frappe/ui/group_by/group_by.html:10 msgid "Select Group By..." -msgstr "" +msgstr "Seleccione Agrupar por..." #: public/js/frappe/list/list_view_select.js:185 msgid "Select Kanban" @@ -28528,7 +28528,7 @@ msgstr "Seleccione Módulo" #: printing/page/print/print.js:175 printing/page/print/print.js:582 msgid "Select Network Printer" -msgstr "" +msgstr "Seleccione Impresora de red" #. Label of a Link field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -28549,7 +28549,7 @@ msgstr "Seleccionar formato de impresión a editar" #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Select Report" -msgstr "" +msgstr "Seleccionar Reporte" #: printing/page/print_format_builder/print_format_builder.js:623 msgid "Select Table Columns for {0}" @@ -28557,7 +28557,7 @@ msgstr "Seleccione columnas de la tabla para {0}" #: desk/page/setup_wizard/setup_wizard.js:396 msgid "Select Time Zone" -msgstr "" +msgstr "Selecciona la Zona Horaria" #. Label of a Autocomplete field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json @@ -28567,7 +28567,7 @@ msgstr "Seleccione el tipo de transacción" #: workflow/page/workflow_builder/workflow_builder.js:68 msgid "Select Workflow" -msgstr "" +msgstr "Seleccionar Flujo de Trabajo" #. Label of a Link field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -28605,7 +28605,7 @@ msgstr "Seleccione un campo de asunto válido para crear documentos desde el cor #: public/js/frappe/form/form_tour.js:315 msgid "Select an Image" -msgstr "" +msgstr "Seleccionar una Imagen" #: printing/page/print_format_builder/print_format_builder_start.html:2 msgid "Select an existing format to edit or start a new format." @@ -28876,7 +28876,7 @@ msgstr "Enviarme una copia" #: email/doctype/newsletter/newsletter.js:46 msgid "Send now" -msgstr "" +msgstr "Enviar ahora" #. Label of a Check field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json @@ -28958,25 +28958,25 @@ msgstr "El campo del remitente debe tener opciones de correo electrónico" #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Sender Name" -msgstr "" +msgstr "Nombre del Remitente" #. Label of a Data field in DocType 'SMS Log' #: core/doctype/sms_log/sms_log.json msgctxt "SMS Log" msgid "Sender Name" -msgstr "" +msgstr "Nombre del Remitente" #. Label of a Data field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Sender Name Field" -msgstr "" +msgstr "Campo Nombre del remitente" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Sender Name Field" -msgstr "" +msgstr "Campo Nombre del remitente" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json @@ -29006,7 +29006,7 @@ msgstr "" #: email/doctype/newsletter/newsletter.js:164 msgid "Sending..." -msgstr "" +msgstr "Enviando..." #: email/doctype/newsletter/newsletter.js:196 #: email/doctype/newsletter/newsletter_list.js:5 @@ -29082,11 +29082,11 @@ msgstr "Lista de secuencias para esta transacción" #: core/doctype/document_naming_settings/document_naming_settings.py:115 msgid "Series Updated for {}" -msgstr "" +msgstr "Serie actualizada para {}" #: core/doctype/document_naming_settings/document_naming_settings.py:223 msgid "Series counter for {} updated to {} successfully" -msgstr "" +msgstr "Contador de Series para {} actualizado a {} exitosamente" #: core/doctype/doctype/doctype.py:1072 #: core/doctype/document_naming_settings/document_naming_settings.py:170 @@ -29141,15 +29141,15 @@ msgstr "Script del servidor" #: utils/safe_exec.py:89 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." -msgstr "" +msgstr "Los scripts de servidor están desactivados. Por favor, habilite los scripts de servidor desde la configuración de bench." #: core/doctype/server_script/server_script.js:36 msgid "Server Scripts feature is not available on this site." -msgstr "" +msgstr "La función Scripts de Servidor no está disponible en este sitio." #: public/js/frappe/request.js:243 public/js/frappe/request.js:251 msgid "Server was too busy to process this request. Please try again." -msgstr "" +msgstr "El servidor estaba demasiado ocupado para procesar esta solicitud. Por favor, inténtelo de nuevo." #. Label of a Select field in DocType 'Email Account' #: email/doctype/email_account/email_account.json @@ -29242,7 +29242,7 @@ msgstr "Establecer filtros para {0}" #: core/doctype/user_type/user_type.py:91 msgid "Set Limit" -msgstr "" +msgstr "Establecer límite" #. Description of the 'Setup Series for transactions' (Section Break) field in #. DocType 'Document Naming Settings' @@ -29305,11 +29305,11 @@ msgstr "Valor seleccionado." #: public/js/frappe/file_uploader/file_uploader.bundle.js:72 #: public/js/frappe/file_uploader/file_uploader.bundle.js:124 msgid "Set all private" -msgstr "" +msgstr "Establecer todo privado" #: public/js/frappe/file_uploader/file_uploader.bundle.js:72 msgid "Set all public" -msgstr "" +msgstr "Establecer todo público" #: printing/doctype/print_format/print_format.js:49 msgid "Set as Default" @@ -29323,13 +29323,13 @@ msgstr "Establecer como tema predeterminado" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Set by user" -msgstr "" +msgstr "Establecido por el usuario" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Set by user" -msgstr "" +msgstr "Establecido por el usuario" #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -29360,7 +29360,7 @@ msgstr "Ajuste de precisión no-estándar para los decimales o las monedas" #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Set only once" -msgstr "" +msgstr "Establecer solo una vez" #. Description of the 'Filters Configuration' (Code) field in DocType 'Number #. Card' @@ -29384,7 +29384,24 @@ msgid "Set the filters here. For example:\n" "\treqd: 1\n" "}]\n" "" -msgstr "" +msgstr "Establezca aquí los filtros. Por ejemplo:\n" +"
\n"
+"[{\n"
+"\tfieldname: \"company\",\n"
+"\tlabel: __(\"Company\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Company\",\n"
+"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
+"\treqd: 1\n"
+"},\n"
+"{\n"
+"\tfieldname: \"account\",\n"
+"\tlabel: __(\"Account\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Account\",\n"
+"\treqd: 1\n"
+"}]\n"
+"
" #. Description of the 'Method' (Data) field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json @@ -29453,12 +29470,12 @@ msgstr "Menú desplegable de configuración" #. Description of a DocType #: website/doctype/contact_us_settings/contact_us_settings.json msgid "Settings for Contact Us Page" -msgstr "" +msgstr "Configuración de la Página Contáctenos" #. Description of a DocType #: website/doctype/about_us_settings/about_us_settings.json msgid "Settings for the About Us Page" -msgstr "" +msgstr "Configuración para la Página Acerca de Nosotros" #. Description of a DocType #: website/doctype/blog_settings/blog_settings.json @@ -29517,13 +29534,13 @@ msgstr "" #. Title of an Onboarding Step #: custom/onboarding_step/naming_series/naming_series.json msgid "Setup Naming Series" -msgstr "" +msgstr "Configurar Serie de Nombres" #. Label of a Section Break field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Setup Series for transactions" -msgstr "" +msgstr "Configurar Series para Transacciones" #: public/js/frappe/form/templates/form_sidebar.html:110 msgid "Share" @@ -29589,7 +29606,7 @@ msgstr "Envío." #: public/js/frappe/form/templates/address_list.html:25 msgid "Shipping Address" -msgstr "Dirección de Envío." +msgstr "Dirección de Envío" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json @@ -29690,7 +29707,7 @@ msgstr "Mostrar error" #: public/js/frappe/form/layout.js:545 msgid "Show Fieldname (click to copy on clipboard)" -msgstr "" +msgstr "Mostrar nombre de campo (clic para copiar en el portapapeles)" #. Label of a Check field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -29735,7 +29752,7 @@ msgstr "Mostrar Etiquetas" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Show Language Picker" -msgstr "" +msgstr "Mostrar selector de idioma" #. Label of a Check field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json @@ -29792,7 +29809,7 @@ msgstr "Mostrar ventana emergente de vista previa" #: desk/doctype/system_console/system_console.json msgctxt "System Console" msgid "Show Processlist" -msgstr "" +msgstr "Mostrar lista de procesos" #: core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" @@ -29887,7 +29904,7 @@ msgstr "Mostrar todas las versiones" #: public/js/frappe/form/footer/form_timeline.js:67 msgid "Show all activity" -msgstr "" +msgstr "Mostrar toda la actividad" #: website/doctype/blog_post/templates/blog_post_list.html:24 msgid "Show all blogs" @@ -29949,7 +29966,7 @@ msgstr "Mostrar título en la ventana del navegador como \"Prefijo - título\"" #: public/js/frappe/widgets/onboarding_widget.js:148 msgid "Show {0} List" -msgstr "" +msgstr "Mostrar Lista {0}" #: public/js/frappe/views/reports/report_view.js:470 msgid "Showing only Numeric fields from Report" @@ -29957,13 +29974,13 @@ msgstr "Mostrando solo Campos Numéricos del Informe" #: public/js/frappe/data_import/import_preview.js:149 msgid "Showing only first {0} rows out of {1}" -msgstr "" +msgstr "Mostrando solo las primeras {0} filas de {1}" #. Label of a Check field in DocType 'Role' #: core/doctype/role/role.json msgctxt "Role" msgid "Sidebar" -msgstr "" +msgstr "Barra Lateral" #. Label of a Table field in DocType 'Website Sidebar' #: website/doctype/website_sidebar/website_sidebar.json @@ -30137,7 +30154,7 @@ msgstr "" #: core/doctype/data_import/data_import.js:39 msgid "Skipping {0} of {1}, {2}" -msgstr "" +msgstr "Saltando {0} de {1}, {2}" #. Label of a Data field in DocType 'Contact Us Settings' #: website/doctype/contact_us_settings/contact_us_settings.json @@ -30164,13 +30181,13 @@ msgstr "Error de Slack Webhook" #. Name of a DocType #: integrations/doctype/slack_webhook_url/slack_webhook_url.json msgid "Slack Webhook URL" -msgstr "" +msgstr "URL del Webhook de Slack" #. Label of a Link in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgctxt "Slack Webhook URL" msgid "Slack Webhook URL" -msgstr "" +msgstr "URL del Webhook de Slack" #. Label of a Link field in DocType 'Web Page' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' @@ -30414,7 +30431,7 @@ msgstr "Caracteres especiales excepto '-', '#', '.', '/', '{{' and '}}' no permi #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Splash Image" -msgstr "" +msgstr "Imagen de bienvenida" #: desk/reportview.py:382 public/js/frappe/web_form/web_form_list.js:175 #: templates/print_formats/standard_macros.html:44 @@ -30592,7 +30609,7 @@ msgstr "Crear un nuevo formato" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "StartTLS" -msgstr "" +msgstr "StartTLS" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' #: core/doctype/prepared_report/prepared_report.json @@ -30684,7 +30701,7 @@ msgstr "Parámetros estáticos" #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "Statistics" -msgstr "" +msgstr "Estadísticas" #: public/js/frappe/form/dashboard.js:43 #: public/js/frappe/form/templates/form_dashboard.html:13 @@ -30881,7 +30898,7 @@ msgstr "Pasos para verificar su inicio de sesión" #: core/doctype/recorder/recorder_list.js:87 msgid "Stop" -msgstr "" +msgstr "Detener" #. Label of a Check field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json @@ -30920,7 +30937,7 @@ msgstr "" #: public/js/frappe/form/controls/password.js:90 msgid "Strong" -msgstr "" +msgstr "Fuerte" #. Label of a Tab Break field in DocType 'Web Page' #: website/doctype/web_page/web_page.json @@ -31326,7 +31343,7 @@ msgstr "" #: core/doctype/data_import/data_import.js:144 msgid "Successfully imported {0} out of {1} records." -msgstr "" +msgstr "Importado con éxito {0} de {1} registros." #: desk/doctype/form_tour/form_tour.py:87 msgid "Successfully reset onboarding status for all users." @@ -31342,7 +31359,7 @@ msgstr "Actualizado exitosamente {0}" #: core/doctype/data_import/data_import.js:149 msgid "Successfully updated {0} out of {1} records." -msgstr "" +msgstr "Actualizado con éxito {0} de {1} registros." #: core/doctype/user/user.py:727 msgid "Suggested Username: {0}" @@ -31410,7 +31427,7 @@ msgstr "Suspender Envío" #: public/js/frappe/ui/capture.js:276 msgid "Switch Camera" -msgstr "" +msgstr "Cambiar Cámara" #: public/js/frappe/desk.js:50 public/js/frappe/ui/theme_switcher.js:11 msgid "Switch Theme" @@ -31422,7 +31439,7 @@ msgstr "Pasar a Escritorio" #: public/js/frappe/ui/capture.js:281 msgid "Switching Camera" -msgstr "" +msgstr "Cambiando cámara" #. Label of a Data field in DocType 'Currency' #: geo/doctype/currency/currency.json @@ -31509,7 +31526,7 @@ msgstr "" #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "System Logs" -msgstr "" +msgstr "Registros del sistema" #. Name of a role #: automation/doctype/assignment_rule/assignment_rule.json @@ -31692,19 +31709,19 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Tab Break" -msgstr "" +msgstr "Salto de Pestaña" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Tab Break" -msgstr "" +msgstr "Salto de Pestaña" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Tab Break" -msgstr "" +msgstr "Salto de Pestaña" #: core/doctype/data_export/exporter.py:23 #: printing/page/print_format_builder/print_format_builder_field.html:38 @@ -31791,7 +31808,7 @@ msgstr "La tabla {0} no puede estar vacía" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Tabloid" -msgstr "" +msgstr "Tabloide" #. Name of a DocType #: desk/doctype/tag/tag.json @@ -31919,7 +31936,7 @@ msgstr "Advertencias de plantilla" #: public/js/frappe/views/workspace/blocks/paragraph.js:78 msgid "Templates" -msgstr "" +msgstr "Plantillas" #: core/doctype/user/user.py:1023 msgid "Temporarily Disabled" @@ -32092,7 +32109,7 @@ msgstr "" #: database/database.py:425 msgid "The changes have been reverted." -msgstr "" +msgstr "Los cambios han sido revertidos." #: core/doctype/data_import/importer.py:959 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." @@ -32130,7 +32147,7 @@ msgstr "" #: core/doctype/user_type/user_type.py:109 msgid "The field {0} is mandatory" -msgstr "" +msgstr "El campo {0} es obligatorio" #: core/doctype/file/file.py:143 msgid "The fieldname you've specified in Attached To Field is invalid" @@ -32146,11 +32163,11 @@ msgstr "" #: core/doctype/data_import/importer.py:1030 msgid "The following values are invalid: {0}. Values must be one of {1}" -msgstr "" +msgstr "Los siguientes valores no son válidos: {0}. Los valores deben ser uno de {1}" #: core/doctype/data_import/importer.py:993 msgid "The following values do not exist for {0}: {1}" -msgstr "" +msgstr "Los siguientes valores no existen para {0}: {1}" #: core/doctype/user_type/user_type.py:88 msgid "The limit has not set for the user type {0} in the site config file." @@ -32224,15 +32241,15 @@ msgstr "El recurso que está buscando no está disponible" #: core/doctype/user_type/user_type.py:113 msgid "The role {0} should be a custom role." -msgstr "" +msgstr "El Rol {0} debe ser un Rol personalizado." #: core/doctype/audit_trail/audit_trail.py:46 msgid "The selected document {0} is not a {1}." -msgstr "" +msgstr "El documento seleccionado {0} no es un {1}." #: utils/response.py:317 msgid "The system is being updated. Please refresh again after a few moments." -msgstr "" +msgstr "El sistema se está actualizando. Por favor, actualice de nuevo después de unos momentos." #: 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." @@ -32240,7 +32257,7 @@ msgstr "" #: public/js/frappe/form/grid_row.js:636 msgid "The total column width cannot be more than 10." -msgstr "" +msgstr "El ancho total de la columna no puede ser mayor a 10." #: core/doctype/user_type/user_type.py:96 msgid "The total number of user document types limit has been crossed." @@ -32282,7 +32299,7 @@ msgstr "Tema" #: public/js/frappe/ui/theme_switcher.js:130 msgid "Theme Changed" -msgstr "" +msgstr "Tema cambiado" #. Label of a Tab Break field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json @@ -32371,7 +32388,7 @@ msgstr "Existen algunos errores al configurar el nombre, por favor póngase en c #: www/404.html:15 msgid "There's nothing here" -msgstr "" +msgstr "No hay nada aquí" #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' @@ -32402,11 +32419,11 @@ msgstr "Esta divisa está deshabilitada. Debe habilitarla para utilizarla en las #: geo/utils.py:84 msgid "This Doctype does not contain latitude and longitude fields" -msgstr "" +msgstr "Este DocType no contiene campos de latitud y longitud" #: geo/utils.py:67 msgid "This Doctype does not contain location fields" -msgstr "" +msgstr "Este DocType no contiene campos de ubicación" #: public/js/frappe/views/kanban/kanban_view.js:388 msgid "This Kanban Board will be private" @@ -32604,7 +32621,7 @@ msgstr "Este título se utilizará como título de la página web, así como en #: public/js/frappe/form/controls/base_input.js:120 msgid "This value is fetched from {0}'s {1} field" -msgstr "" +msgstr "Este valor se obtiene del campo {1} de {0}" #: 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" @@ -32801,7 +32818,7 @@ msgstr "Formato de tiempo" #: core/doctype/recorder/recorder.json msgctxt "Recorder" msgid "Time in Queries" -msgstr "" +msgstr "Tiempo en consultas" #. Description of the 'Expiry time of QR Code Image Page' (Int) field in #. DocType 'System Settings' @@ -32826,13 +32843,13 @@ msgstr "" #: public/js/frappe/ui/theme_switcher.js:64 msgid "Timeless Night" -msgstr "" +msgstr "Noche Eterna" #. Label of a Check field in DocType 'Role' #: core/doctype/role/role.json msgctxt "Role" msgid "Timeline" -msgstr "" +msgstr "Línea de tiempo" #. Label of a Link field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json @@ -33112,7 +33129,8 @@ msgstr "Al usuario" msgctxt "Auto Repeat" msgid "To add dynamic subject, use jinja tags like\n\n" "
New {{ doc.doctype }} #{{ doc.name }}
" -msgstr "" +msgstr "Para agregar tema dinámico, utiliza etiquetas jinja como\n\n" +"
Nuevo {{ doc.doctype }} #{{ doc.name }}
" #. Description of the 'Subject' (Data) field in DocType 'Notification' #: email/doctype/notification/notification.json @@ -33272,36 +33290,36 @@ msgstr "Cambiar tema" #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "Token" -msgstr "" +msgstr "Token" #. Name of a DocType #: integrations/doctype/token_cache/token_cache.json msgid "Token Cache" -msgstr "" +msgstr "Caché de tokens" #. Linked DocType in Connected App's connections #: integrations/doctype/connected_app/connected_app.json msgctxt "Connected App" msgid "Token Cache" -msgstr "" +msgstr "Caché de tokens" #. Linked DocType in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "Token Cache" -msgstr "" +msgstr "Caché de tokens" #. Label of a Data field in DocType 'Token Cache' #: integrations/doctype/token_cache/token_cache.json msgctxt "Token Cache" msgid "Token Type" -msgstr "" +msgstr "Tipo de token" #. Label of a Data field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json msgctxt "Connected App" msgid "Token URI" -msgstr "" +msgstr "URI del token" #: utils/oauth.py:179 msgid "Token is missing" @@ -33309,7 +33327,7 @@ msgstr "Falta el Token" #: desk/doctype/bulk_update/bulk_update.py:69 model/workflow.py:246 msgid "Too Many Documents" -msgstr "" +msgstr "Demasiados Documentos" #: rate_limiter.py:88 msgid "Too Many Requests" @@ -33327,7 +33345,7 @@ msgstr "Hay demasiados usuarios se inscribieron recientemente, por lo que el reg #. Label of a Card Break in the Tools Workspace #: automation/workspace/tools/tools.json msgid "Tools" -msgstr "" +msgstr "Herramientas" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -33350,19 +33368,19 @@ msgstr "Elementos de la Barra Superior" #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Top Center" -msgstr "" +msgstr "Parte superior izquierda" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Top Center" -msgstr "" +msgstr "Parte superior izquierda" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Top Left" -msgstr "" +msgstr "Parte superior izquierda" #: templates/emails/energy_points_summary.html:3 msgid "Top Performer" @@ -33376,13 +33394,13 @@ msgstr "Revisor superior" #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Top Right" -msgstr "" +msgstr "Parte superior derecha" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Top Right" -msgstr "" +msgstr "Parte superior derecha" #: templates/emails/energy_points_summary.html:33 msgid "Top {0}" @@ -33430,7 +33448,7 @@ msgstr "Total de visualizaciones" #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "Total Working Time" -msgstr "" +msgstr "Tiempo Total de Trabajo" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' @@ -33653,7 +33671,7 @@ msgstr "Activador en métodos válidos como \"before_insert\", \"after_update\", #: public/js/frappe/widgets/onboarding_widget.js:323 msgid "Try Again" -msgstr "" +msgstr "Inténtelo de nuevo" #. Label of a Data field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json @@ -33901,32 +33919,32 @@ msgstr "" #: integrations/doctype/integration_request/integration_request.json msgctxt "Integration Request" msgid "URL" -msgstr "" +msgstr "URL" #. Label of a Data field in DocType 'Top Bar Item' #: website/doctype/top_bar_item/top_bar_item.json msgctxt "Top Bar Item" msgid "URL" -msgstr "" +msgstr "URL" #. Label of a Data field in DocType 'Webhook Request Log' #: integrations/doctype/webhook_request_log/webhook_request_log.json msgctxt "Webhook Request Log" msgid "URL" -msgstr "" +msgstr "URL" #. Label of a Data field in DocType 'Website Slideshow Item' #: website/doctype/website_slideshow_item/website_slideshow_item.json msgctxt "Website Slideshow Item" msgid "URL" -msgstr "" +msgstr "URL" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of a Data field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "URL" -msgstr "" +msgstr "URL" #. Description of the 'Documentation Link' (Data) field in DocType 'DocType' #: core/doctype/doctype/doctype.json @@ -33936,7 +33954,7 @@ msgstr "URL para documentación o ayuda" #: core/doctype/file/file.py:216 msgid "URL must start with http:// or https://" -msgstr "" +msgstr "La URL debe comenzar con http:// o https://" #: website/doctype/web_page/web_page.js:84 msgid "URL of the page" @@ -33996,11 +34014,11 @@ msgstr "Sin alterar" #: public/js/frappe/form/toolbar.js:450 msgid "Undo" -msgstr "" +msgstr "Deshacer" #: public/js/frappe/form/toolbar.js:458 msgid "Undo last action" -msgstr "" +msgstr "Deshacer última acción" #: public/js/frappe/form/sidebar/form_sidebar.js:232 #: public/js/frappe/form/templates/form_sidebar.html:132 @@ -34061,7 +34079,7 @@ msgstr "" #: website/doctype/blog_post/blog_post.js:36 #: website/doctype/web_form/web_form.js:86 msgid "Unpublish" -msgstr "" +msgstr "Despublicar" #. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' #: email/doctype/email_flag_queue/email_flag_queue.json @@ -34077,7 +34095,7 @@ msgstr "Envíar una notificación al no ser leído" #: utils/safe_exec.py:435 msgid "Unsafe SQL query" -msgstr "" +msgstr "Consulta SQL insegura" #: public/js/frappe/data_import/data_exporter.js:158 #: public/js/frappe/form/controls/multicheck.js:166 @@ -34202,13 +34220,13 @@ msgstr "" #: core/doctype/installed_applications/installed_applications.js:45 msgid "Update Order" -msgstr "" +msgstr "Actualizar orden" #. Label of a Section Break field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Update Series Counter" -msgstr "" +msgstr "Actualizar Contador de Series" #. Label of a Button field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json @@ -34240,7 +34258,7 @@ msgstr "Actualizar Valor" #: public/js/frappe/list/bulk_operations.js:345 msgid "Update {0} records" -msgstr "" +msgstr "Actualizar {0} registros" #: desk/doctype/desktop_icon/desktop_icon.py:446 #: public/js/frappe/web_form/web_form.js:423 @@ -34685,7 +34703,7 @@ msgstr "Parámetros de Usuario" #: core/doctype/user/user.json msgctxt "User" msgid "User Details" -msgstr "" +msgstr "Detalles de Usuario" #. Name of a DocType #: core/doctype/user_document_type/user_document_type.json @@ -34716,18 +34734,18 @@ msgstr "Campo de usuario" #. Name of a DocType #: core/doctype/user_group/user_group.json msgid "User Group" -msgstr "" +msgstr "Grupo de Usuario" #. Name of a DocType #: core/doctype/user_group_member/user_group_member.json msgid "User Group Member" -msgstr "" +msgstr "Miembro del Grupo de Usuario" #. Label of a Table MultiSelect field in DocType 'User Group' #: core/doctype/user_group/user_group.json msgctxt "User Group" msgid "User Group Members" -msgstr "" +msgstr "Miembros del Grupo de Usuario" #. Label of a Data field in DocType 'User Social Login' #: core/doctype/user_social_login/user_social_login.json @@ -34823,7 +34841,7 @@ msgstr "Perfil del usuario" #: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgctxt "LDAP Group Mapping" msgid "User Role" -msgstr "" +msgstr "Rol del Usuario" #. Name of a DocType #: core/doctype/user_role_profile/user_role_profile.json @@ -34837,7 +34855,7 @@ msgstr "" #: desk/page/user_profile/user_profile_sidebar.html:52 msgid "User Settings" -msgstr "" +msgstr "Configuración del Usuario" #. Name of a DocType #: core/doctype/user_social_login/user_social_login.json @@ -34898,7 +34916,7 @@ msgstr "El usuario no existe" #: templates/includes/login/login.js:293 msgid "User does not exist." -msgstr "" +msgstr "El usuario no existe." #: core/doctype/user_type/user_type.py:82 msgid "User does not have permission to create the new {0}" @@ -34957,7 +34975,7 @@ msgstr "El usuario {0} ha solicitado la eliminación de datos" #: core/doctype/user/user.py:1372 msgid "User {0} impersonated as {1}" -msgstr "" +msgstr "Usuario {0} suplantado como {1}" #: utils/oauth.py:265 msgid "User {0} is disabled" @@ -35028,7 +35046,7 @@ msgstr "El uso de esta consola puede permitir a los atacantes hacerse pasar por #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "Utilization %" -msgstr "" +msgstr "Utilización %" #. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization #. Code' @@ -35216,7 +35234,7 @@ msgstr "Valores Cambiados" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Verdana" -msgstr "" +msgstr "Verdana" #: twofactor.py:357 msgid "Verfication Code" @@ -35250,7 +35268,7 @@ msgstr "Verificar Contraseña" #: templates/includes/login/login.js:172 msgid "Verifying..." -msgstr "" +msgstr "Verificando..." #. Name of a DocType #: core/doctype/version/version.json @@ -35271,7 +35289,7 @@ msgstr "URL del vídeo" #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "View" -msgstr "" +msgstr "Ver" #: core/doctype/success_action/success_action.js:58 #: public/js/frappe/form/success_action.js:89 @@ -35355,7 +35373,7 @@ msgstr "Ver Documento" #: core/doctype/file/file.js:31 msgid "View file" -msgstr "" +msgstr "Ver archivo" #: templates/emails/auto_email_report.html:60 msgid "View report in your browser" @@ -35385,33 +35403,33 @@ msgstr "Visto Por" #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Views" -msgstr "" +msgstr "Vistas" #. Group in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Views" -msgstr "" +msgstr "Vistas" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Virtual" -msgstr "" +msgstr "Virtual" #: model/virtual_doctype.py:76 msgid "Virtual DocType {} requires a static method called {} found {}" -msgstr "" +msgstr "DocType virtual {} requiere un método estático llamado {} encontrado {}" #: model/virtual_doctype.py:89 msgid "Virtual DocType {} requires overriding an instance method called {} found {}" -msgstr "" +msgstr "DocType virtual {} requiere sobrescribir un método de instancia llamado {} encontrado {}" #. Label of a Section Break field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Visibility" -msgstr "" +msgstr "Visibilidad" #. Option for the 'Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json @@ -35431,7 +35449,7 @@ msgstr "" #: templates/discussions/reply_section.html:39 msgid "Want to discuss?" -msgstr "" +msgstr "¿Desea debatir?" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json @@ -35487,7 +35505,7 @@ msgstr "" #: public/js/frappe/form/controls/password.js:88 msgid "Weak" -msgstr "" +msgstr "Débil" #. Name of a DocType #: website/doctype/web_form/web_form.json @@ -35554,7 +35572,7 @@ msgstr "Bloque de página web" #: public/js/frappe/utils/utils.js:1698 msgid "Web Page URL" -msgstr "" +msgstr "URL de Página Web" #. Name of a DocType #: website/doctype/web_page_view/web_page_view.json @@ -35607,25 +35625,25 @@ msgstr "Vista Web" #. Name of a DocType #: integrations/doctype/webhook/webhook.json msgid "Webhook" -msgstr "" +msgstr "Webhook" #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Webhook" -msgstr "" +msgstr "Webhook" #. Label of a Link in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgctxt "Webhook" msgid "Webhook" -msgstr "" +msgstr "Webhook" #. Label of a Link field in DocType 'Webhook Request Log' #: integrations/doctype/webhook_request_log/webhook_request_log.json msgctxt "Webhook Request Log" msgid "Webhook" -msgstr "" +msgstr "Webhook" #. Name of a DocType #: integrations/doctype/webhook_data/webhook_data.json @@ -35658,25 +35676,25 @@ msgstr "Solicitud de Webhook" #. Name of a DocType #: integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Webhook Request Log" -msgstr "" +msgstr "Registro de solicitudes Webhook" #. Linked DocType in Webhook's connections #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Webhook Request Log" -msgstr "" +msgstr "Registro de solicitudes Webhook" #. Label of a Password field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Webhook Secret" -msgstr "" +msgstr "Secreto del webhook" #. Label of a Section Break field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Webhook Security" -msgstr "" +msgstr "Seguridad del webhook" #. Label of a Section Break field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json @@ -35688,7 +35706,7 @@ msgstr "Disparador Webhook" #: integrations/doctype/slack_webhook_url/slack_webhook_url.json msgctxt "Slack Webhook URL" msgid "Webhook URL" -msgstr "" +msgstr "URL de Webhook" #. Name of a Workspace #: email/doctype/newsletter/newsletter.py:449 @@ -36161,7 +36179,7 @@ msgstr "" #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "Worker Name" -msgstr "" +msgstr "Nombre del Trabajador" #. Name of a DocType #: public/js/workflow_builder/store.js:129 @@ -36760,7 +36778,7 @@ msgstr "" #: public/js/frappe/form/link_selector.js:30 msgid "You can use wildcard %" -msgstr "" +msgstr "Puede usar % como comodín" #: custom/doctype/customize_form/customize_form.py:385 msgid "You can't set 'Options' for field {0}" @@ -36773,12 +36791,12 @@ msgstr "No puedes establecer 'Traducible' para el campo {0}" #: public/js/frappe/form/footer/version_timeline_content_builder.js:74 msgctxt "Form timeline" msgid "You cancelled this document" -msgstr "" +msgstr "Cancelaste este documento" #: public/js/frappe/form/footer/version_timeline_content_builder.js:61 msgctxt "Form timeline" msgid "You cancelled this document {1}" -msgstr "" +msgstr "Cancelaste este documento {1}" #: desk/doctype/dashboard_chart/dashboard_chart.py:407 msgid "You cannot create a dashboard chart from single DocTypes" @@ -36897,7 +36915,7 @@ msgstr "" #: twofactor.py:448 msgid "You have to enable Two Factor Auth from System Settings." -msgstr "" +msgstr "Tienes que habilitar Auth de Dos Factores en Configuración del Sistema." #: public/js/frappe/model/create_new.js:332 msgid "You have unsaved changes in this form. Please save before you continue." @@ -36905,7 +36923,7 @@ msgstr "Usted tiene cambios sin guardar en este formulario. Por favor guardar an #: public/js/frappe/ui/toolbar/navbar.html:50 msgid "You have unseen notifications" -msgstr "" +msgstr "Tienes notificaciones no vistas" #: core/doctype/log_settings/log_settings.py:126 msgid "You have unseen {0}" @@ -37082,7 +37100,7 @@ msgstr "" #: www/update-password.html:145 msgid "Your old password is incorrect." -msgstr "" +msgstr "Su antigua contraseña es incorrecta." #. Description of the 'Email Footer Address' (Small Text) field in DocType #. 'System Settings' @@ -37105,7 +37123,7 @@ msgstr "" #: templates/emails/verification_code.html:1 msgid "Your verification code is {0}" -msgstr "" +msgstr "Su código de verificación es {0}" #. Success message of the Module Onboarding 'Website' #: website/module_onboarding/website/website.json @@ -37127,7 +37145,7 @@ msgstr "Cero significa enviar registros actualizados en cualquier momento" #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "_doctype" -msgstr "" +msgstr "_doctype" #. Label of a Link field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json @@ -37141,11 +37159,11 @@ msgstr "" #: utils/background_jobs.py:105 msgid "`job_id` paramater is required for deduplication." -msgstr "" +msgstr "El parámetro `job_id` es necesario para la deduplicación." #: public/js/frappe/form/footer/version_timeline_content_builder.js:219 msgid "added rows for {0}" -msgstr "" +msgstr "filas agregadas para {0}" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -37157,7 +37175,7 @@ msgstr "Ajustar" #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "after_insert" -msgstr "" +msgstr "after_insert" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -37221,7 +37239,7 @@ msgstr "flecha hacia arriba" #: public/js/frappe/ui/sort_selector.html:5 #: public/js/frappe/ui/sort_selector.js:48 msgid "ascending" -msgstr "" +msgstr "ascendente" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -37295,7 +37313,7 @@ msgstr "megáfono" #: public/js/frappe/form/workflow.js:35 msgid "by Role" -msgstr "" +msgstr "por Rol" #. Label of a Code field in DocType 'Recorder' #: core/doctype/recorder/recorder.json @@ -37324,7 +37342,7 @@ msgstr "cámara" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "cancel" -msgstr "" +msgstr "cancelar" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -37417,7 +37435,7 @@ msgstr "" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "create" -msgstr "" +msgstr "crear" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -37462,13 +37480,13 @@ msgstr "dd/mm/aaaa" #: core/doctype/rq_job/rq_job.json msgctxt "RQ Job" msgid "default" -msgstr "" +msgstr "predeterminado" #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "default" -msgstr "" +msgstr "predeterminado" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -37481,12 +37499,12 @@ msgstr "diferido" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "delete" -msgstr "" +msgstr "eliminar" #: public/js/frappe/ui/sort_selector.html:5 #: public/js/frappe/ui/sort_selector.js:48 msgid "descending" -msgstr "" +msgstr "descendente" #: public/js/frappe/ui/toolbar/awesome_bar.js:163 msgid "document type..., e.g. customer" @@ -37832,7 +37850,7 @@ msgstr "icono" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "import" -msgstr "" +msgstr "importar" #. Description of the 'Read Time' (Int) field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json @@ -37880,7 +37898,7 @@ msgstr "justo ahora" #: desk/desktop.py:255 desk/query_report.py:277 msgid "label" -msgstr "" +msgstr "etiqueta" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -37943,13 +37961,13 @@ msgstr "" #: core/doctype/rq_job/rq_job.json msgctxt "RQ Job" msgid "long" -msgstr "" +msgstr "larga" #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "long" -msgstr "" +msgstr "larga" #: public/js/frappe/utils/utils.js:1122 msgctxt "Minutes (Field: Duration)" @@ -38089,43 +38107,43 @@ msgstr "ok- signo" #: core/doctype/file/file.json msgctxt "File" msgid "old_parent" -msgstr "" +msgstr "old_parent" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_cancel" -msgstr "" +msgstr "on_cancel" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_change" -msgstr "" +msgstr "on_change" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_submit" -msgstr "" +msgstr "on_submit" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_trash" -msgstr "" +msgstr "on_trash" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_update" -msgstr "" +msgstr "on_update" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_update_after_submit" -msgstr "" +msgstr "on_update_after_submit" #: model/document.py:1339 msgid "one of" @@ -38225,7 +38243,7 @@ msgstr "Imprimir" #: desk/doctype/system_console/system_console.json msgctxt "System Console" msgid "processlist" -msgstr "" +msgstr "lista de procesos" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -38268,7 +38286,7 @@ msgstr "aleatorio" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "read" -msgstr "" +msgstr "leer" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -38302,7 +38320,7 @@ msgstr "" #: public/js/frappe/form/footer/version_timeline_content_builder.js:221 msgid "removed rows for {0}" -msgstr "" +msgstr "filas eliminadas para {0}" #: model/rename_doc.py:214 msgid "renamed from {0} to {1}" @@ -38319,7 +38337,7 @@ msgstr "repetir" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "report" -msgstr "" +msgstr "reporte" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -38402,7 +38420,7 @@ msgstr "buscar" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "select" -msgstr "" +msgstr "seleccionar" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -38433,13 +38451,13 @@ msgstr "carrito de compras" #: core/doctype/rq_job/rq_job.json msgctxt "RQ Job" msgid "short" -msgstr "" +msgstr "corta" #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "short" -msgstr "" +msgstr "corta" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -38483,7 +38501,7 @@ msgstr "iniciado" #: desk/page/setup_wizard/setup_wizard.js:194 msgid "starting the setup..." -msgstr "" +msgstr "iniciando la instalación..." #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -38508,28 +38526,28 @@ msgstr "detener" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "string value, i.e. group" -msgstr "" +msgstr "valor de cadena, por ej., grupo" #. Description of the 'LDAP Group Member attribute' (Data) field in DocType #. 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "string value, i.e. member" -msgstr "" +msgstr "valor de cadena, por ej., miembro" #. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP #. Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" -msgstr "" +msgstr "valor de cadena, por ej., {0} o uid={0}, ou=usuarios,dc=ejemplo,dc=com" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "submit" -msgstr "" +msgstr "validar" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -38634,7 +38652,7 @@ msgstr "twitter" #: public/js/frappe/change_log.html:7 msgid "updated to {0}" -msgstr "" +msgstr "actualizado a {0}" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -38644,7 +38662,7 @@ msgstr "subir" #: public/js/frappe/ui/filters/filter.js:340 msgid "use % as wildcard" -msgstr "" +msgstr "utilizar % como comodín" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json @@ -38735,7 +38753,7 @@ msgstr "llave inglesa" #: core/doctype/permission_inspector/permission_inspector.json msgctxt "Permission Inspector" msgid "write" -msgstr "" +msgstr "escribir" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -38995,7 +39013,7 @@ msgstr "" #: public/js/frappe/form/footer/form_timeline.js:443 msgctxt "Form timeline" msgid "{0} changed {1} to {2}" -msgstr "" +msgstr "{0} cambió {1} a {2}" #: website/doctype/blog_post/blog_post.py:376 msgid "{0} comments" @@ -39008,7 +39026,7 @@ msgstr "{0} creado con éxito" #: public/js/frappe/form/footer/form_timeline.js:139 #: public/js/frappe/form/sidebar/form_sidebar.js:107 msgid "{0} created this" -msgstr "" +msgstr "{0} creó esto" #: public/js/frappe/form/sidebar/review.js:154 msgid "{0} criticism point for {1}" @@ -39059,11 +39077,11 @@ msgstr "" #: public/js/frappe/form/footer/version_timeline_content_builder.js:97 msgid "{0} from {1} to {2}" -msgstr "" +msgstr "{0} de {1} a {2}" #: public/js/frappe/form/footer/version_timeline_content_builder.js:157 msgid "{0} from {1} to {2} in row #{3}" -msgstr "" +msgstr "{0} de {1} a {2} en la fila #{3}" #: social/doctype/energy_point_log/energy_point_log.py:120 msgid "{0} gained {1} point for {2} {3}" @@ -39120,7 +39138,7 @@ msgstr "{0} es un campo obligatorio" #: core/doctype/file/file.py:503 msgid "{0} is a not a valid zip file" -msgstr "" +msgstr "{0} no es un archivo zip válido" #: core/doctype/doctype/doctype.py:1555 msgid "{0} is an invalid Data field." @@ -39205,11 +39223,11 @@ msgstr "{0} no es un estado de flujo de trabajo válido. Actualice su flujo de t #: permissions.py:791 msgid "{0} is not a valid parent DocType for {1}" -msgstr "" +msgstr "{0} no es un DocType padre válido para {1}" #: permissions.py:811 msgid "{0} is not a valid parentfield for {1}" -msgstr "" +msgstr "{0} no es un campo padre válido para {1}" #: email/doctype/auto_email_report/auto_email_report.py:115 msgid "{0} is not a valid report format. Report format should one of the following {1}" @@ -39217,7 +39235,7 @@ msgstr "{0} no es un formato de informe válido. El formato del informe debe ser #: core/doctype/file/file.py:483 msgid "{0} is not a zip file" -msgstr "" +msgstr "{0} no es un archivo zip" #: public/js/frappe/views/reports/report_view.js:1365 msgid "{0} is not equal to {1}" @@ -39233,7 +39251,7 @@ msgstr "{0} no es uno de {1}" #: public/js/frappe/views/reports/report_view.js:1416 msgid "{0} is not set" -msgstr "" +msgstr "{0} no está establecido" #: printing/doctype/print_format/print_format.py:163 msgid "{0} is now default print format for {1} doctype" @@ -39250,7 +39268,7 @@ msgstr "{0} es requerido" #: public/js/frappe/views/reports/report_view.js:1415 msgid "{0} is set" -msgstr "" +msgstr "{0} está establecido" #: public/js/frappe/views/reports/report_view.js:1394 msgid "{0} is within {1}" @@ -39267,7 +39285,7 @@ msgstr "{0} se hizo pasar por usted. Dieron esta razón: {1}" #: public/js/frappe/form/footer/form_timeline.js:150 #: public/js/frappe/form/sidebar/form_sidebar.js:96 msgid "{0} last edited this" -msgstr "" +msgstr "{0} editó esto por última vez" #: core/doctype/activity_log/feed.py:13 msgid "{0} logged in" @@ -39279,7 +39297,7 @@ msgstr "{0} desconectado: {1}" #: public/js/frappe/utils/pretty_date.js:27 msgid "{0} m" -msgstr "" +msgstr "{0} m" #: desk/notifications.py:374 msgid "{0} mentioned you in a comment in {1} {2}" @@ -39425,12 +39443,12 @@ msgstr "{0} no debe ser igual que {1}" #: public/js/frappe/form/footer/version_timeline_content_builder.js:51 msgid "{0} submitted this document" -msgstr "" +msgstr "{0} envió este documento" #: public/js/frappe/form/footer/version_timeline_content_builder.js:42 msgctxt "Form timeline" msgid "{0} submitted this document {1}" -msgstr "" +msgstr "{0} envió este documento {1}" #: email/doctype/email_group/email_group.py:62 #: email/doctype/email_group/email_group.py:133 @@ -39461,11 +39479,11 @@ msgstr "{0} valores seleccionados" #: public/js/frappe/form/footer/form_timeline.js:183 msgid "{0} viewed this" -msgstr "" +msgstr "{0} vio esto" #: public/js/frappe/utils/pretty_date.js:35 msgid "{0} w" -msgstr "" +msgstr "{0} w" #: public/js/frappe/utils/pretty_date.js:64 msgid "{0} weeks ago" @@ -39615,7 +39633,7 @@ msgstr "" #: contacts/doctype/contact/contact.js:83 #: public/js/frappe/views/workspace/workspace.js:169 msgid "{0}: {1}" -msgstr "" +msgstr "{0}: {1}" #: workflow/doctype/workflow_action/workflow_action.py:167 msgid "{0}: {1} is set to state {2}" @@ -39635,7 +39653,7 @@ msgstr "{count} celda copiada" #: public/js/frappe/utils/datatable.js:13 msgid "{count} cells copied" -msgstr "" +msgstr "{count} celdas copiadas" #: public/js/frappe/utils/datatable.js:16 msgid "{count} row selected" diff --git a/frappe/locale/tr.po b/frappe/locale/tr.po index c4404d7628..d28034ad24 100644 --- a/frappe/locale/tr.po +++ b/frappe/locale/tr.po @@ -1,58 +1,59 @@ -# Translations template for Frappe Framework. -# Copyright (C) 2024 Frappe Technologies -# This file is distributed under the same license as the Frappe Framework -# project. -# FIRST AUTHOR , 2024. -# msgid "" msgstr "" -"Project-Id-Version: Frappe Framework VERSION\n" +"Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2024-01-12 01:53+0053\n" -"PO-Revision-Date: 2024-01-10 16:34+0553\n" +"POT-Creation-Date: 2024-03-24 09:33+0000\n" +"PO-Revision-Date: 2024-04-05 14:57\n" "Last-Translator: developers@frappe.io\n" -"Language-Team: developers@frappe.io\n" +"Language-Team: Turkish\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.13.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: tr\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: tr_TR\n" #: templates/emails/download_data.html:9 msgid " to your browser" -msgstr "" +msgstr " tarayıcınıza" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgctxt "Document Naming Rule Condition" msgid "!=" -msgstr "" +msgstr "!=" #. Description of the 'Org History Heading' (Data) field in DocType 'About Us #. Settings' #: website/doctype/about_us_settings/about_us_settings.json msgctxt "About Us Settings" msgid "\"Company History\"" -msgstr "\"Şirket Tarihçesi\"" +msgstr "\"Şirket Geçmişi\"" -#: core/doctype/data_export/exporter.py:204 +#: core/doctype/data_export/exporter.py:202 msgid "\"Parent\" signifies the parent table in which this row must be added" -msgstr "\"Ana\" bu satırın ekleneceği ana tabloyu belirtir" +msgstr "" #. Description of the 'Team Members Heading' (Data) field in DocType 'About Us #. Settings' #: website/doctype/about_us_settings/about_us_settings.json msgctxt "About Us Settings" msgid "\"Team Members\" or \"Management\"" -msgstr "\"Takım Üyeleri\" veya \"Yönetim\"" +msgstr "\"Ekip Üyeleri\" veya \"Yönetim\"" #: public/js/frappe/form/form.js:1063 msgid "\"amended_from\" field must be present to do an amendment." -msgstr "Bir değişiklik yapmak için 'değiştirilen_' den 'alan' olmalı." +msgstr "Değişiklik yapmak için \"amended_from\" alanı mevcut olmalıdır." -#: utils/csvutils.py:219 +#: utils/csvutils.py:221 msgid "\"{0}\" is not a valid Google Sheets URL" -msgstr "'{0}', geçerli bir Google E-Tablolar URL'si değil" +msgstr "\"{0}\" geçerli bir Google Sheets adresi değildir" #. Option for the 'Number Format' (Select) field in DocType 'Currency' #: geo/doctype/currency/currency.json @@ -179,156 +180,171 @@ msgstr "" msgid "#{0}" msgstr "" +#: public/js/frappe/ui/toolbar/about.js:8 +msgid "© Frappe Technologies Pvt. Ltd. and contributors" +msgstr "" + #. Label of a Code field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "<head> HTML" msgstr "" -#: public/js/form_builder/store.js:201 +#: public/js/form_builder/store.js:206 msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: core/doctype/doctype/doctype.py:1305 +#: core/doctype/doctype/doctype.py:1303 msgid "'In Global Search' not allowed for type {0} in row {1}" -msgstr "{1} satırında {0} türü için 'Genel Arama'ya izin verilmiyor" +msgstr "" -#: public/js/form_builder/store.js:193 +#: public/js/form_builder/store.js:198 msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: custom/doctype/customize_form/customize_form.py:360 +#: custom/doctype/customize_form/customize_form.py:358 msgid "'In List View' not allowed for type {0} in row {1}" -msgstr "'Liste görüntüle' izin türü için {0} üst üste {1}" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:149 +#: automation/doctype/auto_repeat/auto_repeat.py:150 msgid "'Recipients' not specified" -msgstr "'Alıcılar' belirtilmemiş" +msgstr "" -#: utils/__init__.py:240 +#: utils/__init__.py:242 msgid "'{0}' is not a valid URL" msgstr "" -#: core/doctype/doctype/doctype.py:1299 +#: core/doctype/doctype/doctype.py:1297 msgid "'{0}' not allowed for type {1} in row {2}" -msgstr "{2} satırındaki {1} türü için '{0}' öğesine izin verilmiyor" +msgstr "" -#: model/rename_doc.py:689 +#: public/js/frappe/data_import/data_exporter.js:301 +msgid "(Mandatory)" +msgstr "" + +#: model/rename_doc.py:681 msgid "** Failed: {0} to {1}: {2}" -msgstr "** Başarısız: {0} için {1}: {2}" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_settings.js:111 +msgid "+ Add / Remove Fields" +msgstr "" #. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document #. State' #: workflow/doctype/workflow_document_state/workflow_document_state.json msgctxt "Workflow Document State" msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" -msgstr "0 - Taslak; 1 - Gönderildi; 2 - İptal Edildi" +msgstr "" #. Description of the 'Priority' (Int) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "0 is highest" -msgstr "0 en üsttedir" +msgstr "" -#: public/js/frappe/form/grid_row.js:786 +#: public/js/frappe/form/grid_row.js:807 msgid "1 = True & 0 = False" msgstr "" #. Description of the 'Fraction Units' (Int) field in DocType 'Currency' #: geo/doctype/currency/currency.json msgctxt "Currency" -msgid "" -"1 Currency = [?] Fraction\n" +msgid "1 Currency = [?] Fraction\n" "For e.g. 1 USD = 100 Cent" msgstr "" #: public/js/frappe/form/reminders.js:19 msgid "1 Day" -msgstr "" +msgstr "1 Gün" -#: integrations/doctype/google_calendar/google_calendar.py:358 +#: integrations/doctype/google_calendar/google_calendar.py:359 msgid "1 Google Calendar Event synced." msgstr "1 Google Takvim Etkinliği senkronize edildi." -#: website/doctype/blog_post/blog_post.py:378 +#: public/js/frappe/views/reports/query_report.js:881 +msgid "1 Report" +msgstr "" + +#: website/doctype/blog_post/blog_post.py:374 msgid "1 comment" msgstr "1 yorum" -#: tests/test_utils.py:647 +#: tests/test_utils.py:676 msgid "1 day ago" -msgstr "" +msgstr "1 gün önce" #: public/js/frappe/form/reminders.js:17 msgid "1 hour" -msgstr "" +msgstr "1 saat" -#: public/js/frappe/utils/pretty_date.js:52 tests/test_utils.py:645 +#: public/js/frappe/utils/pretty_date.js:52 tests/test_utils.py:674 msgid "1 hour ago" -msgstr "1 saat önce" +msgstr "1 Saat Önce" -#: public/js/frappe/utils/pretty_date.js:48 tests/test_utils.py:643 +#: public/js/frappe/utils/pretty_date.js:48 tests/test_utils.py:672 msgid "1 minute ago" -msgstr "1 dakika önce" +msgstr "1 Dakika Önce" -#: public/js/frappe/utils/pretty_date.js:66 tests/test_utils.py:651 +#: public/js/frappe/utils/pretty_date.js:66 tests/test_utils.py:680 msgid "1 month ago" -msgstr "1 ay önce" +msgstr "1 Ay Önce" -#: public/js/frappe/data_import/data_exporter.js:223 +#: public/js/frappe/data_import/data_exporter.js:226 msgid "1 record will be exported" -msgstr "1 kayıt dışa aktarılacak" +msgstr "1 Kayıt Dışa Aktarılacak" -#: tests/test_utils.py:642 +#: tests/test_utils.py:671 msgid "1 second ago" -msgstr "" +msgstr "1 saniye önce" -#: public/js/frappe/utils/pretty_date.js:62 tests/test_utils.py:649 +#: public/js/frappe/utils/pretty_date.js:62 tests/test_utils.py:678 msgid "1 week ago" -msgstr "1 hafta önce" +msgstr "1 Hafta Önce" -#: public/js/frappe/utils/pretty_date.js:70 tests/test_utils.py:653 +#: public/js/frappe/utils/pretty_date.js:70 tests/test_utils.py:682 msgid "1 year ago" -msgstr "1 yıl önce" +msgstr "1 Yıl Önce" -#: tests/test_utils.py:646 +#: tests/test_utils.py:675 msgid "2 hours ago" -msgstr "" +msgstr "2 saat önce" -#: tests/test_utils.py:652 +#: tests/test_utils.py:681 msgid "2 months ago" -msgstr "" +msgstr "2 ay önce" -#: tests/test_utils.py:650 +#: tests/test_utils.py:679 msgid "2 weeks ago" -msgstr "" +msgstr "2 hafta önce" -#: tests/test_utils.py:654 +#: tests/test_utils.py:683 msgid "2 years ago" -msgstr "" +msgstr "2 yıl önce" -#: tests/test_utils.py:644 +#: tests/test_utils.py:673 msgid "3 minutes ago" -msgstr "" +msgstr "3 dakika önce" #: public/js/frappe/form/reminders.js:16 msgid "30 minutes" -msgstr "" +msgstr "30 Dakika" #: public/js/frappe/form/reminders.js:18 msgid "4 hours" -msgstr "" +msgstr "4 Saat" #: public/js/frappe/data_import/data_exporter.js:37 msgid "5 Records" msgstr "5 Kayıt" -#: tests/test_utils.py:648 +#: tests/test_utils.py:677 msgid "5 days ago" -msgstr "" +msgstr "5 Gün Önce" #: desk/doctype/bulk_update/bulk_update.py:37 msgid "; not allowed in condition" -msgstr "; Durumda izin verilmiyor" +msgstr "" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' @@ -344,9 +360,9 @@ msgctxt "Document Naming Rule Condition" msgid "<=" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:564 +#: public/js/frappe/widgets/widget_dialog.js:603 msgid "{0} is not a valid URL" -msgstr "" +msgstr "{0} geçerli bir URL değil" #. Content of the 'Help' (HTML) field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json @@ -358,8 +374,7 @@ msgstr "" #. Settings' #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" -msgid "" -"
\n" +msgid "
\n" " Edit list of Series in the box. Rules:\n" "
    \n" "
  • Each Series Prefix on a new line.
  • \n" @@ -402,26 +417,18 @@ msgstr "" #. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" -msgid "" -"

    Custom CSS Help

    \n" -"\n" -"

    Notes:

    \n" -"\n" +msgid "

    Custom CSS Help

    \n\n" +"

    Notes:

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

    Examples

    \n" -"\n" -"

    1. Left align integers

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

    1. Add border to sections except the last section

    \n" -"\n" +"\n\n" +"

    Examples

    \n\n" +"

    1. Left align integers

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

    1. Add border to sections except the last section

    \n\n" "
    .section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
     ".section-break:last-child { padding-bottom: 0px; border-bottom: 0px;  }
    \n" msgstr "" @@ -430,8 +437,7 @@ msgstr "" #: printing/doctype/print_format/print_format.json #, python-format msgctxt "Print Format" -msgid "" -"

    Print Format Help

    \n" +msgid "

    Print Format Help

    \n" "
    \n" "

    Introduction

    \n" "

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

    \n" @@ -503,8 +509,7 @@ msgstr "" #: contacts/doctype/address_template/address_template.json #, python-format msgctxt "Address Template" -msgid "" -"

    Default Template

    \n" +msgid "

    Default Template

    \n" "

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

    \n" "
    {{ address_line1 }}<br>\n"
     "{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
    @@ -521,25 +526,16 @@ msgstr ""
     #. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template'
     #: email/doctype/email_template/email_template.json
     msgctxt "Email Template"
    -msgid ""
    -"

    Email Reply Example

    \n" -"\n" -"
    Order Overdue\n"
    -"\n"
    -"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n"
    -"\n"
    -"Details\n"
    -"\n"
    +msgid "

    Email Reply Example

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

    How to get fieldnames

    \n" -"\n" -"

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

    \n" -"\n" -"

    Templating

    \n" -"\n" +"
    \n\n" +"

    How to get fieldnames

    \n\n" +"

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

    \n\n" +"

    Templating

    \n\n" "

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

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

    Condition Examples:

    \n" +msgid "

    Condition Examples:

    \n" "
    doc.status==\"Open\"
    doc.due_date==nowdate()
    doc.total > 40000\n" "
    " msgstr "" @@ -586,8 +575,7 @@ msgstr "" #. Content of the 'html_7' (HTML) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" -msgid "" -"

    Condition Examples:

    \n" +msgid "

    Condition Examples:

    \n" "
    doc.status==\"Open\"
    doc.due_date==nowdate()
    doc.total > 40000\n" "
    \n" msgstr "" @@ -595,8 +583,7 @@ msgstr "" #. Content of the 'Condition Description' (HTML) field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" -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" +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 "" @@ -604,8 +591,7 @@ msgstr "" #. Description of the 'Context Script' (Code) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" -msgid "" -"

    Set context before rendering a template. Example:

    \n" +msgid "

    Set context before rendering a template. Example:

    \n" "

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

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

    For example:

    // here root_element is provided by default\n"
    +msgid "

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

    For example:

    // here root_element is provided by default\n"
     "let some_class_element = root_element.querySelector('.some-class');\n"
     "some_class_element.textContent = \"New content\";\n"
     "
    " msgstr "" -#: twofactor.py:469 +#: twofactor.py:462 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 "" @@ -629,18 +614,15 @@ msgstr "" #. Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" -msgid "" -"
    *  *  *  *  *\n"
    +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"
    +"└──────────────────── minute (0 - 59)\n\n"
    +"---\n\n"
     "* - Any value\n"
     "/ - Step values\n"
     "
    \n" @@ -649,18 +631,15 @@ msgstr "" #. Description of the 'Cron Format' (Data) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" -msgid "" -"
    *  *  *  *  *\n"
    +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"
    +"└──────────────────── minute (0 - 59)\n\n"
    +"---\n\n"
     "* - Any value\n"
     "/ - Step values\n"
     "
    \n" @@ -669,9 +648,7 @@ msgstr "" #. Content of the 'Example' (HTML) field in DocType 'Workflow Transition' #: workflow/doctype/workflow_transition/workflow_transition.json msgctxt "Workflow Transition" -msgid "" -"
    doc.grand_total > 0
    \n" -"\n" +msgid "
    doc.grand_total > 0
    \n\n" "

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

    \n" "

    Allowed functions:\n" "

      \n" @@ -722,9 +699,9 @@ msgstr "" #: website/doctype/blog_post/blog_post.py:93 msgid "A featured post must have a cover image" -msgstr "Öne çıkan bir gönderinin kapak resmi olması gerekir" +msgstr "" -#: custom/doctype/custom_field/custom_field.py:171 +#: custom/doctype/custom_field/custom_field.py:173 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -736,29 +713,29 @@ msgstr "" #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "A list of resources which the Client App will have access to after the user allows it.
      e.g. project" -msgstr "Müşteri App kullanıcı izin verdiği sonra erişimi olacak kaynakların listesi.
      örneğin, proje" +msgstr "" #: templates/emails/new_user.html:5 msgid "A new account has been created for you at {0}" -msgstr "Yeni bir hesap sizin için yaratıldı {0}" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:388 +#: automation/doctype/auto_repeat/auto_repeat.py:389 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." -msgstr "Otomatik Tekrar {2} ile sizin için tekrarlayan bir {0} {1} oluşturuldu." +msgstr "" #. Description of the 'Symbol' (Data) field in DocType 'Currency' #: geo/doctype/currency/currency.json msgctxt "Currency" msgid "A symbol for this currency. For e.g. $" -msgstr "Bu para için bir sembol mesela $ için" +msgstr "" -#: printing/doctype/print_format_field_template/print_format_field_template.py:48 +#: printing/doctype/print_format_field_template/print_format_field_template.py:49 msgid "A template already exists for field {0} of {1}" msgstr "" -#: utils/password_strength.py:173 +#: utils/password_strength.py:169 msgid "A word by itself is easy to guess." -msgstr "Yalnızca bir kelimeyi tahmin etmek kolaydır." +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -848,56 +825,75 @@ msgstr "API Erişimi" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "API Endpoint" -msgstr "API Bitiş Noktası" +msgstr "API Endpoint" #. Label of a Code field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "API Endpoint Args" -msgstr "API Bitiş Noktası Args" +msgstr "" #. Label of a Data field in DocType 'Google Settings' #. Label of a Section Break field in DocType 'Google Settings' #: integrations/doctype/google_settings/google_settings.json msgctxt "Google Settings" msgid "API Key" -msgstr "API Anahtarı" +msgstr "API Key" + +#. Label of a Data field in DocType 'Push Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "API Key" +msgstr "API Key" #. Label of a Data field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "API Key" -msgstr "API Anahtarı" +msgstr "API Key" + +#. Description of the 'Authentication' (Section Break) field in DocType 'Push +#. Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site." +msgstr "" #. Description of the 'API Key' (Data) field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "API Key cannot be regenerated" -msgstr "" +msgstr "API Anahtarı yeniden oluşturulamaz." #. Label of a Data field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "API Method" -msgstr "API Yöntemi" +msgstr "" + +#. Label of a Password field in DocType 'Push Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "API Secret" +msgstr "API Gizli Anahtarı" #. Label of a Password field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "API Secret" -msgstr "API Gizli" +msgstr "API Gizli Anahtarı" #. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "ASC" -msgstr "Azalan" +msgstr "Artan" #. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "ASC" -msgstr "Azalan" +msgstr "Artan" #. Label of a standard help item #. Type: Action @@ -923,31 +919,31 @@ msgstr "Hakkımızda Ayarları" #. Name of a DocType #: website/doctype/about_us_team_member/about_us_team_member.json msgid "About Us Team Member" -msgstr "Ekip üyeleri hakkında" +msgstr "" #: core/doctype/data_import/data_import.js:27 msgid "About {0} minute remaining" -msgstr "Yaklaşık {0} dakika kaldı" +msgstr "" #: core/doctype/data_import/data_import.js:28 msgid "About {0} minutes remaining" -msgstr "Yaklaşık {0} dakika kaldı" +msgstr "" #: core/doctype/data_import/data_import.js:25 msgid "About {0} seconds remaining" -msgstr "Yaklaşık {0} saniye kaldı" +msgstr "" #. Label of a Data field in DocType 'S3 Backup Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgctxt "S3 Backup Settings" msgid "Access Key ID" -msgstr "Erişim Tuşu Kimliği" +msgstr "" #. Label of a Password field in DocType 'S3 Backup Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgctxt "S3 Backup Settings" msgid "Access Key Secret" -msgstr "Access Key Secret" +msgstr "" #. Name of a DocType #: core/doctype/access_log/access_log.json @@ -982,17 +978,17 @@ msgstr "Erişim Anahtarı" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Access Token URL" -msgstr "Erişim anahtarı URL'si" +msgstr "" -#: auth.py:444 +#: auth.py:451 msgid "Access not allowed from this IP Address" -msgstr "Bu IP Adresinden erişime izin verilmiyor" +msgstr "" #. Label of a Section Break field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Account" -msgstr "Muhasebe" +msgstr "Hesap" #. Label of a Section Break field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -1002,16 +998,16 @@ msgstr "Hesap Silme Ayarları" #. Name of a role #: automation/doctype/auto_repeat/auto_repeat.json -#: contacts/doctype/contact/contact.json +#: contacts/doctype/contact/contact.json geo/doctype/currency/currency.json msgid "Accounts Manager" -msgstr "Muhasebe Yöneticisi" +msgstr "Hesap Yöneticisi" #. Name of a role #: automation/doctype/auto_repeat/auto_repeat.json #: contacts/doctype/address/address.json contacts/doctype/contact/contact.json #: geo/doctype/currency/currency.json msgid "Accounts User" -msgstr "Muhasebe Kullanıcıları" +msgstr "Muhasebe Kullanıcısı" #: email/doctype/email_group/email_group.js:34 #: email/doctype/email_group/email_group.js:63 @@ -1057,16 +1053,16 @@ msgstr "İşlem" #: core/doctype/doctype_action/doctype_action.json msgctxt "DocType Action" msgid "Action / Route" -msgstr "Eylem / Rota" +msgstr "Aksiyon / Rota" #: public/js/frappe/widgets/onboarding_widget.js:310 #: public/js/frappe/widgets/onboarding_widget.js:381 msgid "Action Complete" msgstr "" -#: model/document.py:1648 +#: model/document.py:1678 msgid "Action Failed" -msgstr "İşlem başarılamadı" +msgstr "" #. Label of a Data field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json @@ -1078,19 +1074,19 @@ msgstr "" #: core/doctype/success_action/success_action.json msgctxt "Success Action" msgid "Action Timeout (Seconds)" -msgstr "Eylem Zaman Aşımı (Saniye)" +msgstr "" #. Label of a Select field in DocType 'DocType Action' #: core/doctype/doctype_action/doctype_action.json msgctxt "DocType Action" msgid "Action Type" -msgstr "Eylem Türü" +msgstr "Aksiyon Türü" -#: core/doctype/submission_queue/submission_queue.py:119 +#: core/doctype/submission_queue/submission_queue.py:120 msgid "Action {0} completed successfully on {1} {2}. View it {3}" msgstr "" -#: core/doctype/submission_queue/submission_queue.py:115 +#: core/doctype/submission_queue/submission_queue.py:116 msgid "Action {0} failed on {1} {2}. View it {3}" msgstr "" @@ -1108,9 +1104,11 @@ msgstr "" #: custom/doctype/customize_form/customize_form.js:132 #: custom/doctype/customize_form/customize_form.js:140 #: custom/doctype/customize_form/customize_form.js:238 +#: public/js/frappe/ui/page.html:56 #: public/js/frappe/views/reports/query_report.js:190 #: public/js/frappe/views/reports/query_report.js:203 #: public/js/frappe/views/reports/query_report.js:213 +#: public/js/frappe/views/reports/query_report.js:775 msgid "Actions" msgstr "İşlemler" @@ -1133,28 +1131,28 @@ msgctxt "Package Import" msgid "Activate" msgstr "" -#: core/doctype/recorder/recorder_list.js:105 core/doctype/user/user_list.js:12 +#: core/doctype/recorder/recorder_list.js:207 core/doctype/user/user_list.js:12 #: workflow/doctype/workflow/workflow_list.js:5 msgid "Active" -msgstr "Etkin" +msgstr "Aktif" #. Option for the 'Status' (Select) field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Active" -msgstr "Etkin" +msgstr "Aktif" #. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Active" -msgstr "Etkin" +msgstr "Aktif" #. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' #: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgctxt "OAuth Bearer Token" msgid "Active" -msgstr "Etkin" +msgstr "Aktif" #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -1171,9 +1169,10 @@ msgstr "Aktif Etki Alanları" #: www/third_party_apps.html:32 msgid "Active Sessions" -msgstr "Etkin Oturumlar" +msgstr "" #: public/js/frappe/form/dashboard.js:22 +#: public/js/frappe/form/footer/form_timeline.js:58 msgid "Activity" msgstr "Aktivite" @@ -1186,26 +1185,27 @@ msgstr "Aktivite" #. Name of a DocType #: core/doctype/activity_log/activity_log.json msgid "Activity Log" -msgstr "Etkinlik Günlüğü" +msgstr "Aktivite Günlüğü" #. Label of a Link in the Build Workspace #. Label of a Link in the Users Workspace #: core/workspace/build/build.json core/workspace/users/users.json msgctxt "Activity Log" msgid "Activity Log" -msgstr "Etkinlik Günlüğü" +msgstr "Aktivite Günlüğü" #. Linked DocType in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "Activity Log" -msgstr "Etkinlik Günlüğü" +msgstr "Aktivite Günlüğü" -#: core/page/permission_manager/permission_manager.js:465 +#: core/page/permission_manager/permission_manager.js:476 #: email/doctype/email_group/email_group.js:60 -#: public/js/frappe/form/grid_row.js:468 +#: public/js/frappe/form/grid_row.js:470 #: public/js/frappe/form/sidebar/assign_to.js:100 -#: public/js/frappe/list/bulk_operations.js:372 +#: public/js/frappe/form/templates/set_sharing.html:68 +#: public/js/frappe/list/bulk_operations.js:407 #: public/js/frappe/views/dashboard/dashboard_view.js:440 #: public/js/frappe/views/reports/query_report.js:265 #: public/js/frappe/views/reports/query_report.js:293 @@ -1213,17 +1213,27 @@ msgstr "Etkinlik Günlüğü" msgid "Add" msgstr "Ekle" +#: public/js/frappe/list/list_view.js:265 +msgctxt "Primary action in list view" +msgid "Add" +msgstr "Ekle" + +#: public/js/frappe/form/grid_row.js:430 +msgid "Add / Remove Columns" +msgstr "" + #: core/doctype/user_permission/user_permission_list.js:4 msgid "Add / Update" msgstr "Ekle / Güncelle" -#: core/page/permission_manager/permission_manager.js:425 +#: core/page/permission_manager/permission_manager.js:436 msgid "Add A New Rule" msgstr "Yeni Kural Ekle" +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:159 msgid "Add Attachment" -msgstr "Ek dosya Ekle" +msgstr "Dosya Ekle" #. Label of a Check field in DocType 'Web Page Block' #: website/doctype/web_page_block/web_page_block.json @@ -1250,61 +1260,67 @@ msgstr "" #: public/js/frappe/views/reports/query_report.js:209 msgid "Add Chart to Dashboard" -msgstr "Gösterge Tablosuna Grafik Ekle" +msgstr "Gösterge Paneline Grafik Ekle" #: public/js/frappe/views/treeview.js:285 msgid "Add Child" msgstr "Alt öğe ekle" -#: public/js/frappe/views/reports/query_report.js:1664 -#: public/js/frappe/views/reports/query_report.js:1667 -#: public/js/frappe/views/reports/report_view.js:329 -#: public/js/frappe/views/reports/report_view.js:354 +#: public/js/frappe/views/kanban/kanban_board.html:4 +#: public/js/frappe/views/reports/query_report.js:1681 +#: public/js/frappe/views/reports/query_report.js:1684 +#: public/js/frappe/views/reports/report_view.js:324 +#: public/js/frappe/views/reports/report_view.js:349 msgid "Add Column" msgstr "Sütun Ekle" #: core/doctype/communication/communication.js:127 msgid "Add Contact" -msgstr "Kişi Ekle" +msgstr "" #: desk/doctype/event/event.js:38 msgid "Add Contacts" -msgstr "Kişileri ekleyin" +msgstr "Kişileri Ekle" #. Label of a Check field in DocType 'Web Page Block' #: website/doctype/web_page_block/web_page_block.json msgctxt "Web Page Block" msgid "Add Container" -msgstr "Kapsayıcı Ekle" +msgstr "" #. Label of a Button field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Add Custom Tags" -msgstr "Özel Etiket Ekle" +msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:159 -#: public/js/frappe/widgets/widget_dialog.js:683 +#: public/js/frappe/widgets/widget_dialog.js:192 +#: public/js/frappe/widgets/widget_dialog.js:722 msgid "Add Filters" -msgstr "Filtreler Ekleyin" +msgstr "Filtreleri Ekle" #. Label of a Check field in DocType 'Web Page Block' #: website/doctype/web_page_block/web_page_block.json msgctxt "Web Page Block" msgid "Add Gray Background" -msgstr "Gri Arkaplan Ekle" +msgstr "" -#: public/js/frappe/ui/group_by/group_by.js:417 +#: public/js/frappe/ui/group_by/group_by.js:230 +#: public/js/frappe/ui/group_by/group_by.js:415 msgid "Add Group" -msgstr "Grup ekle" +msgstr "Grup Ekle" -#: core/page/permission_manager/permission_manager.js:428 +#: public/js/frappe/form/grid.js:63 +msgid "Add Multiple" +msgstr "Çoklu Ekle" + +#: core/page/permission_manager/permission_manager.js:439 msgid "Add New Permission Rule" msgstr "Yeni İzin Kuralı Ekle" #: desk/doctype/event/event.js:35 desk/doctype/event/event.js:42 msgid "Add Participants" -msgstr "Katılımcı ekle" +msgstr "Katılımcı Ekle" #. Label of a Check field in DocType 'Email Group' #: email/doctype/email_group/email_group.json @@ -1314,13 +1330,17 @@ msgstr "" #: public/js/frappe/form/sidebar/review.js:45 msgid "Add Review" -msgstr "Yorum ekle" - -#: core/doctype/user/user.py:768 -msgid "Add Roles" msgstr "" -#: public/js/frappe/views/communication.js:117 +#: core/doctype/user/user.py:810 +msgid "Add Roles" +msgstr "Rol Ekle" + +#: public/js/frappe/form/grid.js:63 +msgid "Add Row" +msgstr "" + +#: public/js/frappe/views/communication.js:121 msgid "Add Signature" msgstr "İmza Ekle" @@ -1345,18 +1365,18 @@ msgstr "" #: email/doctype/email_group/email_group.js:38 #: email/doctype/email_group/email_group.js:59 msgid "Add Subscribers" -msgstr "Abone Ekle" - -#: public/js/frappe/list/bulk_operations.js:360 -msgid "Add Tags" msgstr "" -#: public/js/frappe/list/list_view.js:1834 +#: public/js/frappe/list/bulk_operations.js:395 +msgid "Add Tags" +msgstr "Etiket Ekle" + +#: public/js/frappe/list/list_view.js:1904 msgctxt "Button in list view actions menu" msgid "Add Tags" -msgstr "" +msgstr "Etiket Ekle" -#: public/js/frappe/views/communication.js:320 +#: public/js/frappe/views/communication.js:410 msgid "Add Template" msgstr "" @@ -1364,17 +1384,17 @@ msgstr "" #: core/doctype/report/report.json msgctxt "Report" msgid "Add Total Row" -msgstr "Toplam satır ekle" +msgstr "Tüm Satırları Ekle" #. Label of a Check field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Add Unsubscribe Link" -msgstr "Aboneliğini Bağlantısı Ekle" +msgstr "" #: core/doctype/user_permission/user_permission_list.js:6 msgid "Add User Permissions" -msgstr "Kullanıcı İzinleri Ekleyin" +msgstr "Kullanıcı İzinleri Ekle" #. Label of a Check field in DocType 'Event' #: desk/doctype/event/event.json @@ -1382,14 +1402,26 @@ msgctxt "Event" msgid "Add Video Conferencing" msgstr "" -#: public/js/frappe/form/form_tour.js:203 -msgid "Add a Row" +#: public/js/frappe/ui/filters/filter_list.js:298 +msgid "Add a Filter" msgstr "" +#: core/page/permission_manager/permission_manager_help.html:9 +msgid "Add a New Role" +msgstr "" + +#: public/js/frappe/form/form_tour.js:205 +msgid "Add a Row" +msgstr "Satır Ekle" + #: templates/includes/comments/comments.html:30 #: templates/includes/comments/comments.html:47 msgid "Add a comment" -msgstr "Yorum Ekle" +msgstr "Yorum" + +#: printing/page/print_format_builder/print_format_builder_layout.html:28 +msgid "Add a new section" +msgstr "" #: public/js/frappe/form/form.js:192 msgid "Add a row above the current row" @@ -1409,64 +1441,68 @@ msgstr "" #: public/js/frappe/views/dashboard/dashboard_view.js:285 msgid "Add a {0} Chart" -msgstr "Bir {0} Grafiği ekleyin" +msgstr "" #: custom/doctype/client_script/client_script.js:16 msgid "Add script for Child Table" -msgstr "Alt Tablo için komut dosyası ekleyin" +msgstr "" #: public/js/frappe/utils/dashboard_utils.js:263 #: public/js/frappe/views/reports/query_report.js:251 msgid "Add to Dashboard" -msgstr "Gösterge Tablosuna Ekle" +msgstr "Gösterge Paneline Ekle" #: public/js/frappe/form/sidebar/assign_to.js:98 msgid "Add to ToDo" -msgstr "Yapılacaklar'a Ekle" +msgstr "" #: website/doctype/website_slideshow/website_slideshow.js:32 msgid "Add to table" -msgstr "Tabloya ekle" +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:97 msgid "Add to this activity by mailing to {0}" msgstr "" +#: public/js/frappe/views/kanban/kanban_column.html:20 +msgid "Add {0}" +msgstr "" + #. Description of the '<head> HTML' (Code) field in DocType 'Website #. Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" -msgstr "Web sayfasının bölümüne, öncelikle web sitesi doğrulaması ve SEO için kullanılan HTML kodları eklendi" +msgstr "" #: core/doctype/log_settings/log_settings.py:82 msgid "Added default log doctypes: {}" -msgstr "" +msgstr "Varsayılan günlük kaydı DocType'ları eklendi: {}" -#: core/doctype/file/file.py:720 +#: core/doctype/file/file.py:718 msgid "Added {0}" -msgstr "{0} eklendi" +msgstr "{0} Eklendi" #: public/js/frappe/form/link_selector.js:180 #: public/js/frappe/form/link_selector.js:202 msgid "Added {0} ({1})" msgstr "Eklenen {0} ({1})" -#: core/doctype/user/user.py:271 +#: core/doctype/user/user.py:307 msgid "Adding System Manager to this User as there must be atleast one System Manager" -msgstr "En az bir Sistem Yöneticisi olması gerektiği gibi, bu üyeler için Sistem Yöneticisi ekleme" +msgstr "" #. Label of a Section Break field in DocType 'Custom DocPerm' #: core/doctype/custom_docperm/custom_docperm.json msgctxt "Custom DocPerm" msgid "Additional Permissions" -msgstr "Ek İzinler" +msgstr "" #. Label of a Section Break field in DocType 'DocPerm' #: core/doctype/docperm/docperm.json msgctxt "DocPerm" msgid "Additional Permissions" -msgstr "Ek İzinler" +msgstr "" #. Name of a DocType #: contacts/doctype/address/address.json @@ -1532,9 +1568,9 @@ msgctxt "Contact Us Settings" msgid "Address Title" msgstr "Adres Başlığı" -#: contacts/doctype/address/address.py:71 +#: contacts/doctype/address/address.py:72 msgid "Address Title is mandatory." -msgstr "Adres Başlığı zorunludur." +msgstr "" #. Label of a Select field in DocType 'Address' #: contacts/doctype/address/address.json @@ -1547,20 +1583,30 @@ msgstr "Adres Tipi" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Address and other legal information you may want to put in the footer." -msgstr "Adres ve diğer yasal bilgileri altbilgi kısmına koyabilirsiniz" +msgstr "" -#: contacts/doctype/address/address.py:208 +#: contacts/doctype/address/address.py:206 msgid "Addresses" -msgstr "Adresleri" +msgstr "Adresler" #. Name of a report #: contacts/report/addresses_and_contacts/addresses_and_contacts.json msgid "Addresses And Contacts" -msgstr "İrtibatlar ve Adresler" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:536 +#. Description of a DocType +#: custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:552 msgid "Administration" -msgstr "yönetim" +msgstr "Yönetim" #. Name of a role #: contacts/doctype/salutation/salutation.json @@ -1579,13 +1625,13 @@ msgstr "yönetim" msgid "Administrator" msgstr "Yönetici" -#: core/doctype/user/user.py:1180 +#: core/doctype/user/user.py:1214 msgid "Administrator Logged In" -msgstr "Yönetici Giriş Yaptı" +msgstr "" -#: core/doctype/user/user.py:1174 +#: core/doctype/user/user.py:1208 msgid "Administrator accessed {0} on {1} via IP Address {2}." -msgstr "Yönetici {1} üzerindeki {0}'a {2} IP Adresinden erişti." +msgstr "" #. Label of a Section Break field in DocType 'DocType' #: core/doctype/doctype/doctype.json @@ -1605,8 +1651,8 @@ msgctxt "User Permission" msgid "Advanced Control" msgstr "Gelişmiş Kontrol" -#: public/js/frappe/form/controls/link.js:315 -#: public/js/frappe/form/controls/link.js:317 +#: public/js/frappe/form/controls/link.js:316 +#: public/js/frappe/form/controls/link.js:318 msgid "Advanced Search" msgstr "Gelişmiş Arama" @@ -1620,18 +1666,24 @@ msgstr "Gelişmiş Ayarlar" #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "After Cancel" -msgstr "İptal Sonrası" +msgstr "İptal Edildikten Sonra" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "After Delete" -msgstr "Sildikten Sonra" +msgstr "Silme İşleminden Sonra" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "After Insert" +msgstr "Ekledikten Sonra" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "After Rename" msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' @@ -1644,7 +1696,7 @@ msgstr "Kaydettikten Sonra" #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "After Save (Submitted Document)" -msgstr "Kaydettikten Sonra (Gönderilen Belge)" +msgstr "" #. Label of a Section Break field in DocType 'Web Form' #: website/doctype/web_form/web_form.json @@ -1658,7 +1710,7 @@ msgctxt "Server Script" msgid "After Submit" msgstr "Gönderdikten Sonra" -#: desk/doctype/number_card/number_card.py:58 +#: desk/doctype/number_card/number_card.py:59 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1666,28 +1718,28 @@ msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Aggregate Function Based On" -msgstr "Toplama İşlevi" +msgstr "" #. Label of a Select field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Aggregate Function Based On" -msgstr "Toplama İşlevi" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:410 +#: desk/doctype/dashboard_chart/dashboard_chart.py:400 msgid "Aggregate Function field is required to create a dashboard chart" -msgstr "Gösterge tablosu grafiği oluşturmak için Toplama İşlevi alanı gerekir" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Alert" -msgstr "Uyar" +msgstr "Uyarı" #. Label of a Card Break in the Tools Workspace #: automation/workspace/tools/tools.json msgid "Alerts and Notifications" -msgstr "" +msgstr "Uyarılar ve Bildirimler" #. Label of a Select field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json @@ -1699,17 +1751,17 @@ msgstr "" #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Align Labels to the Right" -msgstr "Etiketleri Sağa hizalayın" +msgstr "" #. Label of a Check field in DocType 'Top Bar Item' #: website/doctype/top_bar_item/top_bar_item.json msgctxt "Top Bar Item" msgid "Align Right" -msgstr "Sağa Hizala" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:479 msgid "Align Value" -msgstr "Değeri Hizala" +msgstr "" #. Name of a role #: contacts/doctype/address/address.json contacts/doctype/contact/contact.json @@ -1728,47 +1780,51 @@ msgstr "Değeri Hizala" #: website/doctype/personal_data_download_request/personal_data_download_request.json #: website/doctype/website_settings/website_settings.json msgid "All" -msgstr "Herşey" +msgstr "Tümü" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "All" -msgstr "Herşey" +msgstr "Tümü" #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "All" -msgstr "Herşey" +msgstr "Tümü" #: public/js/frappe/ui/notifications/notifications.js:394 msgid "All Day" -msgstr "Bütün Gün" +msgstr "Tüm Gün" #. Label of a Check field in DocType 'Calendar View' #: desk/doctype/calendar_view/calendar_view.json msgctxt "Calendar View" msgid "All Day" -msgstr "Bütün Gün" +msgstr "Tüm Gün" #. Label of a Check field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "All Day" -msgstr "Bütün Gün" +msgstr "Tüm Gün" -#: website/doctype/website_slideshow/website_slideshow.py:42 +#: website/doctype/website_slideshow/website_slideshow.py:43 msgid "All Images attached to Website Slideshow should be public" -msgstr "Web Sitesi Slayt gösterisine eklenen tüm resimler herkese açık olmalıdır" +msgstr "" #: public/js/frappe/data_import/data_exporter.js:29 msgid "All Records" msgstr "Tüm Kayıtlar" +#: public/js/frappe/form/form.js:2173 +msgid "All Submissions" +msgstr "" + #: custom/doctype/customize_form/customize_form.js:384 msgid "All customizations will be removed. Please confirm." -msgstr "Tüm özelleştirmeler silinecektir. Onaylayın." +msgstr "Tüm özelleştirmeler kaldırılacak. Lütfen onaylayın." #: templates/includes/comments/comments.html:158 msgid "All fields are necessary to submit the comment." @@ -1780,120 +1836,120 @@ msgctxt "Workflow" msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\"" msgstr "" -#: utils/password_strength.py:187 +#: utils/password_strength.py:183 msgid "All-uppercase is almost as easy to guess as all-lowercase." -msgstr "Hepsi büyük harf, hepsi küçük harf kadar kolay tahmin edilebilir." +msgstr "Harflerin tamamını büyük veya küçük yapmaktan kaçının." #. Label of a Link field in DocType 'ToDo' #: desk/doctype/todo/todo.json msgctxt "ToDo" msgid "Allocated To" -msgstr "Atanan" +msgstr "Sorumlu" #. Label of a Check field in DocType 'Energy Point Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "Allot Points To Assigned Users" -msgstr "Atanan Kullanıcılara Tahsis Noktaları" +msgstr "Puanları Atanan Kullanıcılara Paylaştır" #: templates/includes/oauth_confirmation.html:15 msgid "Allow" -msgstr "İzin ver" +msgstr "İzin Ver" #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Allow" -msgstr "İzin ver" +msgstr "İzin Ver" #. Label of a Link field in DocType 'User Permission' #: core/doctype/user_permission/user_permission.json msgctxt "User Permission" msgid "Allow" -msgstr "İzin ver" +msgstr "İzin Ver" #: website/doctype/website_settings/website_settings.py:160 msgid "Allow API Indexing Access" -msgstr "API Dizine Ekleme Erişimine İzin Ver" +msgstr "" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Allow Auto Repeat" -msgstr "Otomatik Tekrarlamaya İzin Ver" +msgstr "Otomatik Tekrara İzin Ver" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Allow Auto Repeat" -msgstr "Otomatik Tekrarlamaya İzin Ver" +msgstr "Otomatik Tekrara İzin Ver" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Allow Bulk Edit" -msgstr "Toplu düzenlemeye izin ver" +msgstr "Toplu Düzenlemeye İzin Ver" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Allow Bulk Edit" -msgstr "Toplu düzenlemeye izin ver" +msgstr "Toplu Düzenlemeye İzin Ver" #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Allow Comments" -msgstr "Yorumlara izin ver" +msgstr "Yorumlara İzin Ver" #. Label of a Int field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Allow Consecutive Login Attempts " -msgstr "Ardışık Giriş Denemelerine İzin Ver" +msgstr "Arka Arkaya Oturum Açma Denemelerine İzin Ver" #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Allow Delete" -msgstr "Silmeye izin ver" +msgstr "Silmeye İzin Ver" #. Label of a Button field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json msgctxt "Dropbox Settings" msgid "Allow Dropbox Access" -msgstr "Dropbox erişimine izin ver" +msgstr "Dropbox Erişimine İzin Ver" #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Allow Editing After Submit" -msgstr "" +msgstr "Gönderdikten Sonra Düzenlemeye İzin Ver" -#: integrations/doctype/google_calendar/google_calendar.py:100 -#: integrations/doctype/google_calendar/google_calendar.py:114 +#: integrations/doctype/google_calendar/google_calendar.py:101 +#: integrations/doctype/google_calendar/google_calendar.py:115 msgid "Allow Google Calendar Access" msgstr "Google Takvim Erişimine İzin Ver" -#: integrations/doctype/google_contacts/google_contacts.py:39 +#: integrations/doctype/google_contacts/google_contacts.py:40 msgid "Allow Google Contacts Access" msgstr "Google Kişiler Erişimine İzin Ver" -#: integrations/doctype/google_drive/google_drive.py:51 +#: integrations/doctype/google_drive/google_drive.py:52 msgid "Allow Google Drive Access" -msgstr "Google Drive erişim izni" +msgstr "Google Drive Erişimine İzin Ver" #. Label of a Check field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Allow Guest" -msgstr "Konuklara İzin Ver" +msgstr "Misafire İzin Ver" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Allow Guest to View" -msgstr "Misafirin görüntülemesine izin ver" +msgstr "Misafirin Görüntülemesine İzin Ver" #. Label of a Check field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json @@ -1905,43 +1961,43 @@ msgstr "" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Allow Guests to Upload Files" -msgstr "Konukların Dosya Yüklemesine İzin Ver" +msgstr "Misafir Kullanıcılarının Dosya Yüklemesine İzin Ver" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Allow Import (via Data Import Tool)" -msgstr "İçe aktarıma izin ver (Veri Alma Aracı ile)" +msgstr "İçeri Aktarmaya İzin Ver" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Allow Import (via Data Import Tool)" -msgstr "İçe aktarıma izin ver (Veri Alma Aracı ile)" +msgstr "İçeri Aktarmaya İzin Ver" #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Allow Incomplete Forms" -msgstr "Eksik Formlara izin ver" +msgstr "Eksik Formlara İzin Ver" #. Label of a Int field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Allow Login After Fail" -msgstr "Başarısız Olduğunda Oturum Açmaya İzin Ver" +msgstr "Başarısız Denemeden Sonra Giriş Yapmaya İzin Ver" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Allow Login using Mobile Number" -msgstr "Mobil Numarayı Kullanarak Girişe İzin Ver" +msgstr "Mobil Numara ile Girişe İzin Ver" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Allow Login using User Name" -msgstr "Kullanıcı Adını Kullanarak Girişe İzin Ver" +msgstr "Kullanıcı Adı ile Oturum Açmaya İzin Ver" #. Label of a Section Break field in DocType 'User' #: core/doctype/user/user.json @@ -1953,66 +2009,66 @@ msgstr "Modüllere İzin Ver" #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Allow Multiple Responses" -msgstr "" +msgstr "Birden Çok Yanıta İzin Ver" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Allow Older Web View Links (Insecure)" -msgstr "" +msgstr "Eski Web Görünümü Bağlantılarına İzin Ver (Güvensiz)" #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Allow Print" -msgstr "Yazdırmaya izin ver" +msgstr "Yazdırmaya İzin Ver" #. Label of a Check field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Allow Print for Cancelled" -msgstr "İptal edilenlerin yazdırılmasına izin ver" +msgstr "İptal Edilenler İçin Yazdırmaya İzin Ver" -#: automation/doctype/auto_repeat/auto_repeat.py:395 +#: automation/doctype/auto_repeat/auto_repeat.py:396 msgid "Allow Print for Draft" -msgstr "Taslakların yazdırılmasına izin ver" +msgstr "Taslak Yazdırmaya İzin Ver" #. Label of a Check field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Allow Print for Draft" -msgstr "Taslakların yazdırılmasına izin ver" +msgstr "Taslak Yazdırmaya İzin Ver" #. Label of a Check field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Allow Read On All Link Options" -msgstr "Tüm Bağlantı Seçeneklerinde Okumaya İzin Ver" +msgstr "" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Allow Rename" -msgstr "Yeniden adlandırmaya izin ver" +msgstr "Yeniden Adlandırmaya İzin Ver" #. Label of a Table MultiSelect field in DocType 'Module Onboarding' #: desk/doctype/module_onboarding/module_onboarding.json msgctxt "Module Onboarding" msgid "Allow Roles" -msgstr "Rollere izin ver" +msgstr "Rollere İzin Ver" #. Label of a Section Break field in DocType 'Role Permission for Page and #. Report' #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgctxt "Role Permission for Page and Report" msgid "Allow Roles" -msgstr "Rollere izin ver" +msgstr "Rollere İzin Ver" #. Label of a Check field in DocType 'Workflow Transition' #: workflow/doctype/workflow_transition/workflow_transition.json msgctxt "Workflow Transition" msgid "Allow Self Approval" -msgstr "Kendi Onayına İzin Ver" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -2025,7 +2081,7 @@ msgstr "" #: workflow/doctype/workflow_transition/workflow_transition.json msgctxt "Workflow Transition" msgid "Allow approval for creator of the document" -msgstr "Belgenin yaratıcısı için onay ver" +msgstr "" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -2043,55 +2099,55 @@ msgstr "E-posta yoluyla belge oluşturmaya izin ver" #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Allow events in timeline" -msgstr "Zaman çizelgesindeki etkinliklere izin ver" +msgstr "Zaman Akışında Olaylara İzin Ver" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Allow in Quick Entry" -msgstr "Hızlı Giriş'e İzin Ver" +msgstr "Hızlı Girişe İzin Ver" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Allow in Quick Entry" -msgstr "Hızlı Giriş'e İzin Ver" +msgstr "Hızlı Girişe İzin Ver" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Allow in Quick Entry" -msgstr "Hızlı Giriş'e İzin Ver" +msgstr "Hızlı Girişe İzin Ver" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Allow on Submit" -msgstr "Gönderme Onayı İzni" +msgstr "Gönderimde İzin Ver" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Allow on Submit" -msgstr "Gönderme Onayı İzni" +msgstr "Gönderimde İzin Ver" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Allow on Submit" -msgstr "Gönderme Onayı İzni" +msgstr "Gönderimde İzin Ver" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Allow only one session per user" -msgstr "Kullanıcı başına yalnızca bir oturuma izin ver" +msgstr "Her Bir Kullanıcıya Aynı Anda Tek Oturum Açma İzni Ver" #. Label of a Check field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Allow page break inside tables" -msgstr "Tablo içerisinde sayfa sonlarına izin ver" +msgstr "Tabloların içinde sayfa sonuna izin ver" #: desk/page/setup_wizard/setup_wizard.js:420 msgid "Allow recording my first session to improve user experience" @@ -2102,7 +2158,7 @@ msgstr "" #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Allow saving if mandatory fields are not filled" -msgstr "Zorunlu alanlar doldurulmamışsa da kaydetmeye izin ver" +msgstr "Zorunlu alanlar doldurulmazsa kaydetmeye izin ver" #: desk/page/setup_wizard/setup_wizard.js:413 msgid "Allow sending usage data for improving applications" @@ -2112,13 +2168,13 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "Allow user to login only after this hour (0-24)" -msgstr "Kullanıcının sadece bu saatten sonra giriş yapmasına izin ver (0-24)" +msgstr "Kullanıcının sadece bu saatten sonra giriş yapmasına izin ver. (0-24)" #. Description of the 'Login Before' (Int) field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Allow user to login only before this hour (0-24)" -msgstr "Kullanıcı sadece bu saatten önce giriş yapmasına izin ver (0-24)" +msgstr "Kullanıcının yalnızca bu saatten önce giriş yapmasına izin ver. (0-24)" #. Description of the 'Login with email link' (Check) field in DocType 'System #. Settings' @@ -2131,7 +2187,7 @@ msgstr "" #: workflow/doctype/workflow_transition/workflow_transition.json msgctxt "Workflow Transition" msgid "Allowed" -msgstr "İzin verildi" +msgstr "" #. Label of a Small Text field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -2143,7 +2199,7 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "Allowed In Mentions" -msgstr "Yorumlarda İzin Verildi" +msgstr "Alıntılara İzin Ver" #. Label of a Section Break field in DocType 'User Type' #: core/doctype/user_type/user_type.json @@ -2153,47 +2209,47 @@ msgstr "" #: public/js/frappe/form/form.js:1229 msgid "Allowing DocType, DocType. Be careful!" -msgstr "Izin DocType, DocType. Dikkat et!" +msgstr "" -#: core/doctype/user/user.py:977 +#: core/doctype/user/user.py:1017 msgid "Already Registered" -msgstr "Zaten Kayıtlı" +msgstr "" -#: desk/form/assign_to.py:132 +#: desk/form/assign_to.py:134 msgid "Already in the following Users ToDo list:{0}" -msgstr "Zaten şu Yapılacaklar listesinde: {0}" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:840 +#: public/js/frappe/views/reports/report_view.js:835 msgid "Also adding the dependent currency field {0}" -msgstr "Ayrıca bağımlı para birimi alanını {0} ekleyerek" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:853 +#: public/js/frappe/views/reports/report_view.js:848 msgid "Also adding the status dependency field {0}" -msgstr "Ayrıca {0} durum bağımlılığı alanı ekleniyor" +msgstr "" #. Label of a Data field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Alternative Email ID" -msgstr "" +msgstr "Alternatif E-posta Kimliği" #. Label of a Check field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Always add \"Draft\" Heading for printing draft documents" -msgstr "Taslak belgeleri yazdırırken her zaman \"Taslak\" başlığını ekle" +msgstr "Taslak belgelerini yazdırmak için her zaman \"Taslak\" Başlığı ekleyin" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Always use this email address as sender address" -msgstr "" +msgstr "Gönderen adresi olarak her zaman bu e-posta adresini kullan" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Always use this name as sender name" -msgstr "" +msgstr "Gönderen adı olarak her zaman bu adı kullan" #. Label of a Check field in DocType 'Custom DocPerm' #: core/doctype/custom_docperm/custom_docperm.json @@ -2236,7 +2292,7 @@ msgstr "" #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Amended Documents" -msgstr "" +msgstr "Değiştirilen Belgeler" #. Label of a Link field in DocType 'Personal Data Download Request' #: website/doctype/personal_data_download_request/personal_data_download_request.json @@ -2253,7 +2309,7 @@ msgstr "İtibaren değiştirilmiş" #: public/js/frappe/form/save.js:12 msgctxt "Freeze message while amending a document" msgid "Amending" -msgstr "Değiştirilen" +msgstr "" #. Label of a Table field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json @@ -2261,19 +2317,19 @@ msgctxt "Document Naming Settings" msgid "Amendment Naming Override" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:208 +#: core/doctype/document_naming_settings/document_naming_settings.py:207 msgid "Amendment naming rules updated." msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:287 +#: public/js/frappe/ui/toolbar/toolbar.js:297 msgid "An error occurred while setting Session Defaults" -msgstr "Oturum Varsayılanları ayarlanırken bir hata oluştu" +msgstr "" #. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" -msgstr ".ico Uzantılı bir simge dosyası. 16 x 16 px olmalıdır. Bir favicon jeneratörü kullanılarak oluşturulan. [favicon-generator.org]" +msgstr ".ico uzantılı bir simge dosyası. 16 x 16 piksel olmalıdır. Bir favicon oluşturucu kullanılarak oluşturulmuştur. [favicon-generator.org]" #: templates/includes/oauth_confirmation.html:35 msgid "An unexpected error occurred while authorizing {}." @@ -2283,11 +2339,11 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Analytics" -msgstr "Analitikler" +msgstr "Analitik" #: public/js/frappe/ui/filters/filter.js:35 msgid "Ancestors Of" -msgstr "Ataları" +msgstr "Aynı Kaynaktan" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json @@ -2305,33 +2361,37 @@ msgstr "" #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Anonymous" -msgstr "Anonim" +msgstr "" #: public/js/frappe/request.js:186 msgid "Another transaction is blocking this one. Please try again in a few seconds." -msgstr "Başka bir işlem bu bir engelliyor. Birkaç saniye içinde tekrar deneyin." +msgstr "" -#: model/rename_doc.py:380 +#: model/rename_doc.py:374 msgid "Another {0} with name {1} exists, select another name" -msgstr "Başka {0} adı ile {1} Varlığından, başka bir isim seçin" +msgstr "Başka bir {0} {1} isimde zaten var, başka bir isim kullanın." #. Description of the 'Raw Commands' (Code) field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language." -msgstr "Herhangi bir dize tabanlı yazıcı dilleri kullanılabilir. Ham komutlar yazmak, yazıcının üretici tarafından sağlanan ana dili hakkında bilgi gerektirir. Lütfen kendi ana komutlarını nasıl yazacağınız konusunda yazıcı üreticisi tarafından sağlanan geliştirici kılavuzuna bakın. Bu komutlar, sunucu tarafında Jinja Templating Language kullanılarak yapılır." +msgstr "" + +#: 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 a Data field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "App" -msgstr "Uygulama" +msgstr "" #. Label of a Data field in DocType 'Website Theme Ignore App' #: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json msgctxt "Website Theme Ignore App" msgid "App" -msgstr "Uygulama" +msgstr "" #. Label of a Data field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json @@ -2347,13 +2407,13 @@ msgstr "" #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "App Client ID" -msgstr "Uygulama İstemci Kimliği" +msgstr "" #. Label of a Data field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "App Client Secret" -msgstr "Uygulama Müşteri Sırrı" +msgstr "" #. Label of a Data field in DocType 'Google Settings' #: integrations/doctype/google_settings/google_settings.json @@ -2361,6 +2421,10 @@ msgctxt "Google Settings" msgid "App ID" msgstr "" +#: public/js/frappe/ui/toolbar/navbar.html:8 +msgid "App Logo" +msgstr "Uygulama Logosu" + #. Label of a Attach Image field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" @@ -2369,25 +2433,25 @@ msgstr "Uygulama Logosu" #: core/doctype/installed_applications/installed_applications.js:27 msgid "App Name" -msgstr "Uygulama Adı" +msgstr "Uygulama İsmi" #. Label of a Select field in DocType 'Module Def' #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "App Name" -msgstr "Uygulama Adı" +msgstr "Uygulama İsmi" #. Label of a Data field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "App Name" -msgstr "Uygulama Adı" +msgstr "Uygulama İsmi" #. Label of a Data field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "App Name" -msgstr "Uygulama Adı" +msgstr "Uygulama İsmi" #. Label of a Password field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json @@ -2395,41 +2459,41 @@ msgctxt "Dropbox Settings" msgid "App Secret Key" msgstr "Uygulama Gizli Anahtarı" -#: modules/utils.py:268 +#: modules/utils.py:262 msgid "App not found for module: {0}" msgstr "" -#: __init__.py:1677 +#: __init__.py:1784 msgid "App {0} is not installed" -msgstr "App {0} yüklü değil" +msgstr "" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Append Emails to Sent Folder" -msgstr "Gönderilmiş Klasöre E-posta Ekleme" +msgstr "E-postaları Gönderilenler Klasörüne Ekle" #. Label of a Check field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Append Emails to Sent Folder" -msgstr "Gönderilmiş Klasöre E-posta Ekleme" +msgstr "E-postaları Gönderilenler Klasörüne Ekle" #. Label of a Link field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Append To" -msgstr "İle ilişkilendir" +msgstr "" #. Label of a Link field in DocType 'IMAP Folder' #: email/doctype/imap_folder/imap_folder.json msgctxt "IMAP Folder" msgid "Append To" -msgstr "İle ilişkilendir" +msgstr "" -#: email/doctype/email_account/email_account.py:178 +#: email/doctype/email_account/email_account.py:185 msgid "Append To can be one of {0}" -msgstr "{0} biri ile ilişkilendirilebilir" +msgstr "" #. Description of the 'Append To' (Link) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json @@ -2439,13 +2503,13 @@ msgstr "" #: core/doctype/user_permission/user_permission_list.js:105 msgid "Applicable Document Types" -msgstr "Uygulanabilir Belge Türleri" +msgstr "" #. Label of a Link field in DocType 'User Permission' #: core/doctype/user_permission/user_permission.json msgctxt "User Permission" msgid "Applicable For" -msgstr "İçin uygulanabilir" +msgstr "Uygulanabilir:" #. Label of a Attach Image field in DocType 'Navbar Settings' #. Label of a Section Break field in DocType 'Navbar Settings' @@ -2458,30 +2522,30 @@ msgstr "Uygulama Logosu" #: core/doctype/installed_application/installed_application.json msgctxt "Installed Application" msgid "Application Name" -msgstr "Uygulama Adı" +msgstr "" #. Label of a Data field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Application Name" -msgstr "Uygulama Adı" +msgstr "" #. Label of a Data field in DocType 'Installed Application' #: core/doctype/installed_application/installed_application.json msgctxt "Installed Application" msgid "Application Version" -msgstr "Uygulama sürümü" +msgstr "" #. Label of a Select field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "Applied On" -msgstr "Üzerine uygulanmış" +msgstr "" -#: public/js/frappe/list/list_view.js:1819 +#: public/js/frappe/list/list_view.js:1889 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" -msgstr "Atama Kuralını Uygula" +msgstr "Arama Kuralı Uygula" #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json @@ -2489,21 +2553,21 @@ msgctxt "Web Form" msgid "Apply Document Permissions" msgstr "Belge İzinlerini Uygula" -#: public/js/frappe/ui/filters/filter_list.js:315 +#: public/js/frappe/ui/filters/filter_list.js:317 msgid "Apply Filters" -msgstr "Filtreyi Uygula" +msgstr "Filtreleri Uygula" #. Label of a Check field in DocType 'Energy Point Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "Apply Only Once" -msgstr "Sadece Bir Kez Başvur" +msgstr "Sadece Bir Kez Uygula" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Apply Strict User Permissions" -msgstr "Katı Kullanıcı Yetkilerini Uygula" +msgstr "Kısıtlı Kullanıcı İzinlerini Uygula" #. Label of a Select field in DocType 'Client Script' #: custom/doctype/client_script/client_script.json @@ -2515,7 +2579,7 @@ msgstr "" #: core/doctype/user_permission/user_permission.json msgctxt "User Permission" msgid "Apply To All Document Types" -msgstr "Tüm Belge Türlerine Uygula" +msgstr "Tüm Döküman Türlerine Uygula" #. Label of a Link field in DocType 'User Type' #: core/doctype/user_type/user_type.json @@ -2528,38 +2592,38 @@ msgstr "" #: core/doctype/custom_docperm/custom_docperm.json msgctxt "Custom DocPerm" msgid "Apply this rule if the User is the Owner" -msgstr "Kullanıcı Sahibi ise bu kuralı uygula" +msgstr "" #. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm' #: core/doctype/docperm/docperm.json msgctxt "DocPerm" msgid "Apply this rule if the User is the Owner" -msgstr "Kullanıcı Sahibi ise bu kuralı uygula" +msgstr "" #. Description of the 'Apply Only Once' (Check) field in DocType 'Energy Point #. Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "Apply this rule only once per document" -msgstr "Bu kuralı her belge için yalnızca bir kez uygulayın" +msgstr "Bu kuralı belge başına yalnızca bir kez uygulayın." #: core/doctype/user_permission/user_permission_list.js:75 msgid "Apply to all Documents Types" -msgstr "Tüm Belge Türlerine Uygula" +msgstr "" -#: model/workflow.py:265 +#: model/workflow.py:258 msgid "Applying: {0}" -msgstr "Uygulanıyor: {0}" +msgstr "" #: public/js/frappe/form/sidebar/review.js:62 msgid "Appreciate" -msgstr "Takdir et" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json msgctxt "Energy Point Log" msgid "Appreciation" -msgstr "Takdir" +msgstr "" #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:111 msgid "Approval Required" @@ -2570,35 +2634,47 @@ msgctxt "Number system" msgid "Ar" msgstr "" +#: public/js/frappe/views/kanban/kanban_column.html:14 +msgid "Archive" +msgstr "" + #. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Archived" -msgstr "Arşivlendi" +msgstr "" -#: public/js/frappe/views/kanban/kanban_board.bundle.js:490 +#: public/js/frappe/views/kanban/kanban_board.bundle.js:495 msgid "Archived Columns" -msgstr "Arşivlenen Sütunlar" +msgstr "" + +#: public/js/frappe/list/list_view.js:1868 +msgid "Are you sure you want to clear the assignments?" +msgstr "" #: public/js/frappe/form/grid.js:269 msgid "Are you sure you want to delete all rows?" -msgstr "Tüm satırları silmek istediğinizden emin misiniz?" - -#: public/js/frappe/views/workspace/workspace.js:885 -msgid "Are you sure you want to delete page {0}?" msgstr "" +#: public/js/frappe/views/workspace/workspace.js:896 +msgid "Are you sure you want to delete page {0}?" +msgstr "{0} sayfasını silmek istediğinizden emin misiniz?" + #: public/js/frappe/form/sidebar/attachments.js:135 msgid "Are you sure you want to delete the attachment?" -msgstr "Eki silmek istediğinizden emin misiniz?" +msgstr "Bu dosyayı silmek istediğinizden emin misiniz?" #: public/js/frappe/web_form/web_form.js:185 msgid "Are you sure you want to discard the changes?" msgstr "" +#: public/js/frappe/views/reports/query_report.js:895 +msgid "Are you sure you want to generate a new report?" +msgstr "" + #: public/js/frappe/form/toolbar.js:110 msgid "Are you sure you want to merge {0} with {1}?" -msgstr "{0} ile {1} birleştirmek istediğinizden emin misiniz?" +msgstr "" #: public/js/frappe/views/kanban/kanban_view.js:105 msgid "Are you sure you want to proceed?" @@ -2610,7 +2686,7 @@ msgstr "" #: core/doctype/communication/communication.js:163 msgid "Are you sure you want to relink this communication to {0}?" -msgstr "Eğer {0} bu iletişimi yeniden bağlamak istediğinden emin misin?" +msgstr "" #: core/doctype/rq_job/rq_job_list.js:10 msgid "Are you sure you want to remove all failed jobs?" @@ -2622,7 +2698,11 @@ msgstr "" #: public/js/frappe/views/dashboard/dashboard_view.js:267 msgid "Are you sure you want to reset all customizations?" -msgstr "Tüm özelleştirmeleri sıfırlamak istediğinizden emin misiniz?" +msgstr "" + +#: workflow/doctype/workflow/workflow.js:125 +msgid "Are you sure you want to save this document?" +msgstr "" #: email/doctype/newsletter/newsletter.js:60 msgid "Are you sure you want to send this newsletter now?" @@ -2631,7 +2711,7 @@ msgstr "" #: core/doctype/document_naming_rule/document_naming_rule.js:16 #: core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" -msgstr "Emin misiniz?" +msgstr "" #. Label of a Code field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -2643,9 +2723,13 @@ msgstr "" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Arial" -msgstr "Arial" +msgstr "" -#: desk/form/assign_to.py:102 +#: 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 "" + +#: desk/form/assign_to.py:104 msgid "As document sharing is disabled, please give them the required permissions before assigning." msgstr "" @@ -2657,13 +2741,13 @@ msgstr "" #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Assign Condition" -msgstr "Koşul Atama" +msgstr "" #: public/js/frappe/form/sidebar/assign_to.js:163 msgid "Assign To" msgstr "Ata" -#: public/js/frappe/list/list_view.js:1804 +#: public/js/frappe/list/list_view.js:1850 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Ata" @@ -2672,61 +2756,57 @@ msgstr "Ata" #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Assign To Users" -msgstr "Kullanıcılara Atama" +msgstr "" #: public/js/frappe/form/sidebar/assign_to.js:232 msgid "Assign a user" -msgstr "" +msgstr "Kullanıcı Ata" #: automation/doctype/assignment_rule/assignment_rule.js:52 msgid "Assign one by one, in sequence" -msgstr "Sırayla birer birer atayın" +msgstr "" #: public/js/frappe/form/sidebar/assign_to.js:154 msgid "Assign to me" -msgstr "Bana Ata" +msgstr "" #: automation/doctype/assignment_rule/assignment_rule.js:53 msgid "Assign to the one who has the least assignments" -msgstr "En az ödeve sahip olana tayin edin" +msgstr "" #: automation/doctype/assignment_rule/assignment_rule.js:54 msgid "Assign to the user set in this field" -msgstr "Bu alandaki kullanıcı setine atayın" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Assigned" -msgstr "Atanan" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Assigned" -msgstr "Atanan" +msgstr "" #: desk/report/todo/todo.py:41 msgid "Assigned By" -msgstr "Atayan" +msgstr "Atamayı Yapan" #. Label of a Link field in DocType 'ToDo' #: desk/doctype/todo/todo.json msgctxt "ToDo" msgid "Assigned By" -msgstr "Atayan" +msgstr "Atamayı Yapan" #. Label of a Read Only field in DocType 'ToDo' #: desk/doctype/todo/todo.json msgctxt "ToDo" msgid "Assigned By Full Name" -msgstr "Bilinen Tam Adı" +msgstr "" -#: desk/doctype/todo/todo_list.js:35 -msgid "Assigned By Me" -msgstr "Bana Atanan" - -#: model/__init__.py:151 model/meta.py:55 +#: model/meta.py:55 public/js/frappe/form/templates/form_sidebar.html:48 #: public/js/frappe/list/list_sidebar_group_by.js:71 #: public/js/frappe/model/meta.js:207 public/js/frappe/model/model.js:126 #: public/js/frappe/views/interaction.js:82 @@ -2735,7 +2815,7 @@ msgstr "Atanan" #: desk/report/todo/todo.py:40 msgid "Assigned To/Owner" -msgstr "/ Kişiye Atanan" +msgstr "" #: public/js/frappe/form/sidebar/assign_to.js:241 msgid "Assigning..." @@ -2745,29 +2825,25 @@ msgstr "" #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Assignment" -msgstr "atama" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Assignment Completed" -msgstr "Atama Tamamlandı" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Assignment Completed" -msgstr "Atama Tamamlandı" +msgstr "" #. Label of a Section Break field in DocType 'Assignment Rule' #. Label of a Table field in DocType 'Assignment Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Assignment Days" -msgstr "Atama Günleri" - -#: automation/doctype/assignment_rule/assignment_rule.py:64 -msgid "Assignment Day{0} {1} has been repeated." msgstr "" #. Name of a DocType @@ -2797,14 +2873,14 @@ msgstr "Atama Kuralı" #. Name of a DocType #: automation/doctype/assignment_rule_day/assignment_rule_day.json msgid "Assignment Rule Day" -msgstr "Atama Kuralı Günü" +msgstr "" #. Name of a DocType #: automation/doctype/assignment_rule_user/assignment_rule_user.json msgid "Assignment Rule User" -msgstr "Atama Kuralı Kullanıcısı" +msgstr "" -#: automation/doctype/assignment_rule/assignment_rule.py:53 +#: automation/doctype/assignment_rule/assignment_rule.py:54 msgid "Assignment Rule is not allowed on {0} document type" msgstr "" @@ -2812,15 +2888,15 @@ msgstr "" #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Assignment Rules" -msgstr "Atama Kuralları" +msgstr "" #: desk/doctype/notification_log/notification_log.py:157 msgid "Assignment Update on {0}" -msgstr "{0} için Atama Güncellemesi" +msgstr "" #: desk/form/assign_to.py:75 msgid "Assignment for {0} {1}" -msgstr "{0} {1} için ödev" +msgstr "" #: desk/doctype/todo/todo.py:62 msgid "Assignment of {0} removed by {1}" @@ -2828,25 +2904,25 @@ msgstr "" #: public/js/frappe/form/sidebar/assign_to.js:227 msgid "Assignments" -msgstr "Ödevler" +msgstr "Atamalar" #. Label of a Check field in DocType 'Notification Settings' #: desk/doctype/notification_settings/notification_settings.json msgctxt "Notification Settings" msgid "Assignments" -msgstr "Ödevler" +msgstr "Atamalar" -#: public/js/frappe/form/grid_row.js:629 +#: public/js/frappe/form/grid_row.js:650 msgid "At least one column is required to show in the grid." msgstr "" -#: website/doctype/web_form/web_form.js:64 -msgid "Atleast one field is required in Web Form Fields Table" +#: website/doctype/web_form/web_form.js:73 +msgid "At least one field is required in Web Form Fields Table" msgstr "" #: core/doctype/data_export/data_export.js:44 -msgid "Atleast one field of Parent Document Type is mandatory" -msgstr "Ana belge tipinin en az bir alanı zorunludur" +msgid "At least one field of Parent Document Type is mandatory" +msgstr "" #: public/js/frappe/form/controls/attach.js:5 msgid "Attach" @@ -2876,39 +2952,39 @@ msgctxt "Web Form Field" msgid "Attach" msgstr "Ekle" -#: public/js/frappe/views/communication.js:139 +#: public/js/frappe/views/communication.js:143 msgid "Attach Document Print" -msgstr "Ek Belgeyi Yazdır" +msgstr "Yazdırma Dosyasını Ekle" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Attach Image" -msgstr "Görüntü Ekle" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Attach Image" -msgstr "Görüntü Ekle" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Attach Image" -msgstr "Görüntü Ekle" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Attach Image" -msgstr "Görüntü Ekle" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Attach Image" -msgstr "Görüntü Ekle" +msgstr "" #. Label of a Attach field in DocType 'Package Import' #: core/doctype/package_import/package_import.json @@ -2920,35 +2996,35 @@ msgstr "" #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Attach Print" -msgstr "Eki Yazdır" +msgstr "" #: website/doctype/website_slideshow/website_slideshow.js:8 msgid "Attach files / urls and add in table." -msgstr "Dosyaları / URL'leri ekleyin ve tabloya ekleyin." +msgstr "" #. Label of a Code field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Attached File" -msgstr "Ekli dosya" +msgstr "" #. Label of a Link field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "Attached To DocType" -msgstr "Belge Türüne Ekle" +msgstr "DocType'a Eklendi" #. Label of a Data field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "Attached To Field" -msgstr "Alana Bağlı" +msgstr "" #. Label of a Data field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "Attached To Name" -msgstr "Adı için Eklenmiş" +msgstr "" #: core/doctype/file/file.py:140 msgid "Attached To Name must be a string or an integer" @@ -2958,31 +3034,31 @@ msgstr "" #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Attachment" -msgstr "Haciz" +msgstr "Belge Eki" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Attachment" -msgstr "Haciz" +msgstr "Belge Eki" #. Label of a Attach field in DocType 'Newsletter Attachment' #: email/doctype/newsletter_attachment/newsletter_attachment.json msgctxt "Newsletter Attachment" msgid "Attachment" -msgstr "Haciz" +msgstr "Belge Eki" #. Label of a Int field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Attachment Limit (MB)" -msgstr "Eklenti Limiti (MB)" +msgstr "Dosya Sınırı (MB)" #. Label of a Int field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Attachment Limit (MB)" -msgstr "Eklenti Limiti (MB)" +msgstr "Dosya Sınırı (MB)" #: core/doctype/file/file.py:321 #: public/js/frappe/form/sidebar/attachments.js:36 @@ -2993,45 +3069,46 @@ msgstr "" #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Attachment Link" -msgstr "Ek Bağlantısı" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Attachment Removed" -msgstr "Eklenti kaldırıldı" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Attachment Removed" -msgstr "Eklenti kaldırıldı" +msgstr "" -#: core/doctype/file/utils.py:40 +#: core/doctype/file/utils.py:37 #: email/doctype/newsletter/templates/newsletter.html:47 +#: public/js/frappe/form/templates/form_sidebar.html:65 #: website/doctype/web_form/templates/web_form.html:103 msgid "Attachments" -msgstr "Eklentiler" +msgstr "Belge Ekleri" #. Label of a Code field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Attachments" -msgstr "Eklentiler" +msgstr "Belge Ekleri" #. Label of a Table field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Attachments" -msgstr "Eklentiler" +msgstr "Belge Ekleri" #: public/js/frappe/form/print_utils.js:89 msgid "Attempting Connection to QZ Tray..." -msgstr "QZ Tepsisine Bağlantı Deneniyor ..." +msgstr "" #: public/js/frappe/form/print_utils.js:105 msgid "Attempting to launch QZ Tray..." -msgstr "QZ Tray'i başlatmaya çalışıyor ..." +msgstr "" #. Label of a Table field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json @@ -3053,26 +3130,32 @@ msgstr "" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Auth URL Data" -msgstr "Kimlik Doğrulama URL Veri" +msgstr "" #. Label of a Card Break in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgid "Authentication" -msgstr "Doğrulama" +msgstr "Kimlik Doğrulama" #. Label of a Section Break field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Authentication" -msgstr "Doğrulama" +msgstr "Kimlik Doğrulama" + +#. Label of a Section Break field in DocType 'Push Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "Authentication" +msgstr "Kimlik Doğrulama" #: www/qrcode.html:19 msgid "Authentication Apps you can use are: " -msgstr "Kullanabileceğiniz kimlik doğrulama uygulamaları şunlardır:" +msgstr "" -#: email/doctype/email_account/email_account.py:294 +#: email/doctype/email_account/email_account.py:312 msgid "Authentication failed while receiving emails from Email Account: {0}." -msgstr "E-posta Hesabından e-posta alınırken kimlik doğrulama başarısız oldu: {0}." +msgstr "" #. Label of a Data field in DocType 'Help Article' #: website/doctype/help_article/help_article.json @@ -3084,31 +3167,31 @@ msgstr "Yazar" #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" msgid "Authorization Code" -msgstr "Yetki Kodu" +msgstr "" #. Label of a Password field in DocType 'Google Contacts' #: integrations/doctype/google_contacts/google_contacts.json msgctxt "Google Contacts" msgid "Authorization Code" -msgstr "Yetki Kodu" +msgstr "" #. Label of a Data field in DocType 'Google Drive' #: integrations/doctype/google_drive/google_drive.json msgctxt "Google Drive" msgid "Authorization Code" -msgstr "Yetki Kodu" +msgstr "" #. Label of a Data field in DocType 'OAuth Authorization Code' #: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgctxt "OAuth Authorization Code" msgid "Authorization Code" -msgstr "Yetki Kodu" +msgstr "" #. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "Authorization Code" -msgstr "Yetki Kodu" +msgstr "" #. Label of a Small Text field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json @@ -3130,37 +3213,37 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Authorize API Indexing Access" -msgstr "API Dizine Ekleme Erişimini Yetkilendirin" +msgstr "" #. Label of a Button field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" msgid "Authorize Google Calendar Access" -msgstr "Google Takvim Erişimi Yetkilendir" +msgstr "" #. Label of a Button field in DocType 'Google Contacts' #: integrations/doctype/google_contacts/google_contacts.json msgctxt "Google Contacts" msgid "Authorize Google Contacts Access" -msgstr "Google Kişiler Erişimine Yetki Ver" +msgstr "" #. Label of a Button field in DocType 'Google Drive' #: integrations/doctype/google_drive/google_drive.json msgctxt "Google Drive" msgid "Authorize Google Drive Access" -msgstr "Google Drive Erişimine Yetki Ver" +msgstr "" #. Label of a Data field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Authorize URL" -msgstr "URL'yi yetkilendir" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: integrations/doctype/integration_request/integration_request.json msgctxt "Integration Request" msgid "Authorized" -msgstr "Yetkili" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json @@ -3178,25 +3261,25 @@ msgstr "Otomatik" #. Name of a DocType #: email/doctype/auto_email_report/auto_email_report.json msgid "Auto Email Report" -msgstr "Otomatik E-posta Raporu" +msgstr "Otomatik E-Posta Raporu" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "Auto Email Report" msgid "Auto Email Report" -msgstr "Otomatik E-posta Raporu" +msgstr "Otomatik E-Posta Raporu" #. Label of a Data field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Auto Name" -msgstr "Otomatik Ad" +msgstr "Otomatik İsim" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Auto Name" -msgstr "Otomatik Ad" +msgstr "Otomatik İsim" #. Name of a DocType #: automation/doctype/auto_repeat/auto_repeat.json @@ -3221,13 +3304,13 @@ msgstr "Otomatik Tekrarla" msgid "Auto Repeat Day" msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:158 +#: automation/doctype/auto_repeat/auto_repeat.py:159 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:436 +#: automation/doctype/auto_repeat/auto_repeat.py:437 msgid "Auto Repeat Document Creation Failed" -msgstr "Otomatik Doküman Oluşturma Başarısız Oldu" +msgstr "" #: automation/doctype/auto_repeat/auto_repeat.js:115 msgid "Auto Repeat Schedule" @@ -3235,57 +3318,57 @@ msgstr "" #: public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" -msgstr "Bu belge için oluşturulan Otomatik Tekrar" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:439 +#: automation/doctype/auto_repeat/auto_repeat.py:440 msgid "Auto Repeat failed for {0}" -msgstr "{0} için Otomatik Tekrarlama başarısız oldu" +msgstr "" #. Label of a Section Break field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Auto Reply" -msgstr "" +msgstr "Otomatik Cevap" #. Label of a Text Editor field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Auto Reply Message" -msgstr "Otomatik Cevap Mesajı" +msgstr "" -#: automation/doctype/assignment_rule/assignment_rule.py:179 +#: automation/doctype/assignment_rule/assignment_rule.py:175 msgid "Auto assignment failed: {0}" -msgstr "Otomatik atama başarısız oldu: {0}" +msgstr "" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Auto follow documents that are assigned to you" -msgstr "" +msgstr "Size atanan dokümanları otomatik takip edin" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Auto follow documents that are shared with you" -msgstr "" +msgstr "Sizinle paylaşılan belgeleri otomatik takip edin" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Auto follow documents that you Like" -msgstr "" +msgstr "Beğendiğiniz belgeleri otomatik takip edin" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Auto follow documents that you comment on" -msgstr "" +msgstr "Yorum yaptığınız belgeleri otomatik takip edin" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Auto follow documents that you create" -msgstr "" +msgstr "Oluşturduğunuz belgeleri otomatik takip edin" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -3320,21 +3403,26 @@ msgstr "" #: public/js/frappe/ui/theme_switcher.js:69 msgid "Automatic" -msgstr "" +msgstr "Otomatik" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Automatic" +msgstr "Otomatik" + +#: email/doctype/email_account/email_account.py:706 +msgid "Automatic Linking can be activated only for one Email Account." msgstr "" -#: email/doctype/email_account/email_account.py:675 -msgid "Automatic Linking can be activated only for one Email Account." -msgstr "Otomatik Bağlama yalnızca bir E-posta Hesabı için etkinleştirilebilir." - -#: email/doctype/email_account/email_account.py:670 +#: email/doctype/email_account/email_account.py:700 msgid "Automatic Linking can be activated only if Incoming is enabled." -msgstr "Otomatik Bağlama yalnızca Gelen seçeneği etkinse etkinleştirilebilir." +msgstr "" + +#. Description of a DocType +#: automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" #. Label of a Int field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -3351,7 +3439,7 @@ msgstr "Otomasyon" #: website/doctype/blogger/blogger.json msgctxt "Blogger" msgid "Avatar" -msgstr "Resim" +msgstr "" #: public/js/frappe/form/controls/password.js:89 #: public/js/frappe/ui/group_by/group_by.js:21 @@ -3371,37 +3459,37 @@ msgctxt "Number Card" msgid "Average" msgstr "Ortalama" -#: public/js/frappe/ui/group_by/group_by.js:332 +#: public/js/frappe/ui/group_by/group_by.js:330 msgid "Average of {0}" -msgstr "{0} ortalaması" +msgstr "" -#: utils/password_strength.py:132 +#: utils/password_strength.py:130 msgid "Avoid dates and years that are associated with you." -msgstr "Sizinle ilişkili tarih ve yılları kullanmayın." +msgstr "" -#: utils/password_strength.py:126 +#: utils/password_strength.py:124 msgid "Avoid recent years." -msgstr "Yakın yılları kullanmaktan kaçının." +msgstr "" -#: utils/password_strength.py:119 +#: utils/password_strength.py:117 msgid "Avoid sequences like abc or 6543 as they are easy to guess" -msgstr "abc veya 6543 gibi dizileri kullanmayın, tahmin etmesi kolaydır." +msgstr "" -#: utils/password_strength.py:126 +#: utils/password_strength.py:124 msgid "Avoid years that are associated with you." -msgstr "Sizinle ilişikli yılları kullanmayın." +msgstr "" #. Label of a Check field in DocType 'User Email' #: core/doctype/user_email/user_email.json msgctxt "User Email" msgid "Awaiting Password" -msgstr "Şifre bekleniyor" +msgstr "" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Awaiting password" -msgstr "Şifre bekleniyor" +msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:200 msgid "Awesome Work" @@ -3482,45 +3570,49 @@ msgctxt "Print Settings" msgid "B9" msgstr "" -#: public/js/frappe/views/communication.js:76 +#: public/js/frappe/views/communication.js:79 msgid "BCC" -msgstr "BCC" +msgstr "" #. Label of a Code field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "BCC" -msgstr "BCC" +msgstr "" #. Label of a Code field in DocType 'Notification Recipient' #: email/doctype/notification_recipient/notification_recipient.json msgctxt "Notification Recipient" msgid "BCC" -msgstr "BCC" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:186 +msgid "Back" +msgstr "" #: templates/pages/integrations/gcalendar-success.html:13 msgid "Back to Desk" -msgstr "Masaüstüne Geri Dön" +msgstr "" #: www/404.html:20 msgid "Back to Home" -msgstr "Eve Geri dön" +msgstr "Ana Sayfaya Git" #: www/login.html:181 www/login.html:212 msgid "Back to Login" -msgstr "Giriş Ekranına geri dön" +msgstr "" #. Label of a Color field in DocType 'Social Link Settings' #: website/doctype/social_link_settings/social_link_settings.json msgctxt "Social Link Settings" msgid "Background Color" -msgstr "Arkaplan Rengi" +msgstr "" #. Label of a Link field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Background Color" -msgstr "Arkaplan Rengi" +msgstr "" #. Label of a Attach Image field in DocType 'Web Page Block' #: website/doctype/web_page_block/web_page_block.json @@ -3528,30 +3620,40 @@ msgctxt "Web Page Block" msgid "Background Image" msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:143 +#: public/js/frappe/ui/toolbar/toolbar.js:153 msgid "Background Jobs" -msgstr "Arkaplan İşleri" +msgstr "Arkaplan Görevleri" #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "RQ Job" msgid "Background Jobs" -msgstr "Arkaplan İşleri" +msgstr "Arkaplan Görevleri" + +#. Label of a Autocomplete field in DocType 'Webhook' +#: integrations/doctype/webhook/webhook.json +msgctxt "Webhook" +msgid "Background Jobs Queue" +msgstr "" #. Label of a Section Break field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Background Workers" -msgstr "Arka plan İşçiler" +msgstr "" -#: integrations/doctype/google_drive/google_drive.js:31 +#: integrations/doctype/google_drive/google_drive.py:170 +msgid "Backing up Data." +msgstr "" + +#: integrations/doctype/google_drive/google_drive.js:32 msgid "Backing up to Google Drive." -msgstr "Google Drive'a yedekleme." +msgstr "" #. Label of a Card Break in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgid "Backup" -msgstr "Yedek" +msgstr "" #. Label of a Section Break field in DocType 'S3 Backup Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json @@ -3567,19 +3669,19 @@ msgstr "" #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgctxt "S3 Backup Settings" msgid "Backup Files" -msgstr "Yedekleme dosyaları" +msgstr "" #. Label of a Data field in DocType 'Google Drive' #: integrations/doctype/google_drive/google_drive.json msgctxt "Google Drive" msgid "Backup Folder ID" -msgstr "Yedekleme Klasörü Kimliği" +msgstr "" #. Label of a Data field in DocType 'Google Drive' #: integrations/doctype/google_drive/google_drive.json msgctxt "Google Drive" msgid "Backup Folder Name" -msgstr "Yedekleme Klasörü Adı" +msgstr "" #. Label of a Select field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json @@ -3593,16 +3695,16 @@ msgctxt "S3 Backup Settings" msgid "Backup Frequency" msgstr "Yedekleme Sıklığı" -#: desk/page/backups/backups.py:99 +#: desk/page/backups/backups.py:98 msgid "Backup job is already queued. You will receive an email with the download link" -msgstr "Yedekleme işi zaten sıraya alındı. İndirme bağlantısı içeren bir e-posta alacaksınız" +msgstr "" #. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup #. Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgctxt "S3 Backup Settings" msgid "Backup public and private files along with the database." -msgstr "Veritabanıyla birlikte genel ve özel dosyaları yedekleyin." +msgstr "" #. Label of a Tab Break field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -3610,6 +3712,10 @@ msgctxt "System Settings" msgid "Backups" msgstr "Yedekler" +#: core/doctype/scheduled_job_type/scheduled_job_type.py:63 +msgid "Bad Cron Expression" +msgstr "" + #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" @@ -3626,37 +3732,37 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Banner" -msgstr "Banner" +msgstr "" #. Label of a Code field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Banner HTML" -msgstr "Banner HTML" +msgstr "" #. Label of a Attach Image field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Banner Image" -msgstr "Banner Resmi" +msgstr "Kapak Resmi" #. Label of a Attach Image field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Banner Image" -msgstr "Banner Resmi" +msgstr "Kapak Resmi" #. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Banner is above the Top Menu Bar." -msgstr "Banner Top Menu Bar üzerindedir." +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Bar" -msgstr "Bar" +msgstr "Çubuk" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -3680,7 +3786,7 @@ msgstr "Barkod" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "Base Distinguished Name (DN)" -msgstr "Taban Ayırt Edici Ad (DN)" +msgstr "" #. Label of a Data field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json @@ -3688,33 +3794,33 @@ msgctxt "Social Login Key" msgid "Base URL" msgstr "Temel URL" -#: printing/page/print/print.js:266 printing/page/print/print.js:320 +#: printing/page/print/print.js:273 printing/page/print/print.js:327 msgid "Based On" -msgstr "Göre" +msgstr "Buna göre" #. Label of a Link field in DocType 'Language' #: core/doctype/language/language.json msgctxt "Language" msgid "Based On" -msgstr "Göre" +msgstr "Buna göre" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Based on Field" -msgstr "Alana Göre" +msgstr "" #. Label of a Link field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Based on Permissions For User" -msgstr "Kullanıcı için yetkilere dayalı" +msgstr "" #. Option for the 'Method' (Select) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Basic" -msgstr "Temel" +msgstr "Basit" #. Label of a Section Break field in DocType 'User' #: core/doctype/user/user.json @@ -3726,7 +3832,7 @@ msgstr "Temel Bilgiler" #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Before Cancel" -msgstr "İptalden Önce" +msgstr "İptal Etmeden Önce" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json @@ -3740,6 +3846,12 @@ msgctxt "Server Script" msgid "Before Insert" msgstr "Eklemeden Önce" +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "Before Rename" +msgstr "" + #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" @@ -3750,7 +3862,7 @@ msgstr "Kaydetmeden Önce" #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Before Save (Submitted Document)" -msgstr "Kaydetmeden Önce (Gönderilen Belge)" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json @@ -3762,27 +3874,27 @@ msgstr "Göndermeden Önce" #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Before Validate" -msgstr "" +msgstr "Doğrulamadan Önce" #. Option for the 'Level' (Select) field in DocType 'Help Article' #: website/doctype/help_article/help_article.json msgctxt "Help Article" msgid "Beginner" -msgstr "Acemi" +msgstr "Başlangıç" #: public/js/frappe/form/link_selector.js:29 msgid "Beginning with" -msgstr "İle başlayan" +msgstr "Başlangıcı" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Beta" -msgstr "Beta" +msgstr "" -#: utils/password_strength.py:75 +#: utils/password_strength.py:73 msgid "Better add a few more letters or another word" -msgstr "Birkaç harf veya bir kelime daha eklemeniz daha iyi olur" +msgstr "" #: public/js/frappe/ui/filters/filter.js:27 msgid "Between" @@ -3792,31 +3904,35 @@ msgstr "Arasında" #: contacts/doctype/address/address.json msgctxt "Address" msgid "Billing" -msgstr "Faturalama" +msgstr "Fatura" + +#: public/js/frappe/form/templates/contact_list.html:21 +msgid "Billing Contact" +msgstr "" #. Label of a Small Text field in DocType 'About Us Team Member' #: website/doctype/about_us_team_member/about_us_team_member.json msgctxt "About Us Team Member" msgid "Bio" -msgstr "Bio" +msgstr "Hakkında" #. Label of a Small Text field in DocType 'Blogger' #: website/doctype/blogger/blogger.json msgctxt "Blogger" msgid "Bio" -msgstr "Bio" +msgstr "Hakkında" #. Label of a Small Text field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Bio" -msgstr "Bio" +msgstr "Hakkında" #. Label of a Date field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Birth Date" -msgstr "Doğum tarihi" +msgstr "Doğum Tarihi" #: public/js/frappe/data_import/data_exporter.js:41 msgid "Blank Template" @@ -3825,25 +3941,25 @@ msgstr "Boş Şablon" #. Name of a DocType #: core/doctype/block_module/block_module.json msgid "Block Module" -msgstr "Modülü Engelle" +msgstr "" #. Label of a Table field in DocType 'Module Profile' #: core/doctype/module_profile/module_profile.json msgctxt "Module Profile" msgid "Block Modules" -msgstr "Modülleri Engelle" +msgstr "" #. Label of a Table field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Block Modules" -msgstr "Modülleri Engelle" +msgstr "" #. Label of a Check field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "Blocked" -msgstr "Engelli" +msgstr "" #. Label of a Card Break in the Website Workspace #: website/doctype/blog_post/blog_post.py:239 @@ -3852,7 +3968,7 @@ msgstr "Engelli" #: website/doctype/blog_post/templates/blog_post_list.html:11 #: website/workspace/website/website.json msgid "Blog" -msgstr "Blog" +msgstr "" #. Name of a DocType #: website/doctype/blog_category/blog_category.json @@ -3875,48 +3991,48 @@ msgstr "Blog Kategorisi" #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Blog Intro" -msgstr "Blog girişi" +msgstr "" #. Label of a Small Text field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json msgctxt "Blog Settings" msgid "Blog Introduction" -msgstr "Blog Tanıtım" +msgstr "" #. Name of a DocType #: website/doctype/blog_post/blog_post.json msgid "Blog Post" -msgstr "Blog postası" +msgstr "Blog Yazısı" #. Linked DocType in Blog Category's connections #: website/doctype/blog_category/blog_category.json msgctxt "Blog Category" msgid "Blog Post" -msgstr "Blog postası" +msgstr "Blog Yazısı" #. Label of a Link in the Website Workspace #. Label of a shortcut in the Website Workspace #: website/workspace/website/website.json msgctxt "Blog Post" msgid "Blog Post" -msgstr "Blog postası" +msgstr "Blog Yazısı" #. Linked DocType in Blogger's connections #: website/doctype/blogger/blogger.json msgctxt "Blogger" msgid "Blog Post" -msgstr "Blog postası" +msgstr "Blog Yazısı" #. Name of a DocType #: website/doctype/blog_settings/blog_settings.json msgid "Blog Settings" -msgstr "Blog Ayarları" +msgstr "" #. Label of a Data field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json msgctxt "Blog Settings" msgid "Blog Title" -msgstr "Blog Başlığı" +msgstr "" #. Name of a role #. Name of a DocType @@ -3925,26 +4041,26 @@ msgstr "Blog Başlığı" #: website/doctype/blog_settings/blog_settings.json #: website/doctype/blogger/blogger.json msgid "Blogger" -msgstr "Blogcu" +msgstr "Blog Yazarı" #. Label of a Link field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Blogger" -msgstr "Blogcu" +msgstr "Blog Yazarı" #. Label of a Link in the Website Workspace #. Label of a shortcut in the Website Workspace #: website/workspace/website/website.json msgctxt "Blogger" msgid "Blogger" -msgstr "Blogcu" +msgstr "Blog Yazarı" #. Linked DocType in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "Blogger" -msgstr "Blogcu" +msgstr "Blog Yazarı" #. Subtitle of the Module Onboarding 'Website' #: website/module_onboarding/website/website.json @@ -3955,47 +4071,51 @@ msgstr "" #: core/doctype/doctype_state/doctype_state.json msgctxt "DocType State" msgid "Blue" -msgstr "" +msgstr "Mavi" #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Blue" -msgstr "" +msgstr "Mavi" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Bold" -msgstr "cesur" +msgstr "Kalın" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Bold" -msgstr "cesur" +msgstr "Kalın" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Bold" -msgstr "cesur" +msgstr "Kalın" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Bot" -msgstr "Bot" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:126 msgid "Both DocType and Name required" -msgstr "Gerekli Hem DocType ve Adı" +msgstr "" + +#: templates/includes/login/login.js:97 +msgid "Both login and password required" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Bottom" -msgstr "Alternatif" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -4031,7 +4151,7 @@ msgstr "" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Bounced" -msgstr "Geri Döndü" +msgstr "" #. Label of a Section Break field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -4043,25 +4163,24 @@ msgstr "Marka" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Brand HTML" -msgstr "Marka HTML" +msgstr "Yazı Logo" #. Label of a Attach Image field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Brand Image" -msgstr "Marka imajı" +msgstr "Marka Görseli" #. Label of a Attach Image field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Brand Logo" -msgstr "" +msgstr "Logo" #. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" -msgid "" -"Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" +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 "" @@ -4069,13 +4188,13 @@ msgstr "" #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Breadcrumbs" -msgstr "Sayfa işaretleri" +msgstr "" #. Label of a Code field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Breadcrumbs" -msgstr "Sayfa işaretleri" +msgstr "" #: website/doctype/blog_post/templates/blog_post_list.html:18 #: website/doctype/blog_post/templates/blog_post_list.html:21 @@ -4090,37 +4209,37 @@ msgstr "" #: website/report/website_analytics/website_analytics.js:36 msgid "Browser" -msgstr "Tarayıcı" +msgstr "" #. Label of a Data field in DocType 'Web Page View' #: website/doctype/web_page_view/web_page_view.json msgctxt "Web Page View" msgid "Browser" -msgstr "Tarayıcı" +msgstr "" #. Label of a Data field in DocType 'Web Page View' #: website/doctype/web_page_view/web_page_view.json msgctxt "Web Page View" msgid "Browser Version" -msgstr "Tarayıcı Sürümü" +msgstr "" #: public/js/frappe/desk.js:19 msgid "Browser not supported" -msgstr "Tarayıcı desteklenmiyor" +msgstr "" #. Label of a Section Break field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Brute Force Security" -msgstr "Kaba Kuvvet Güvenliği" +msgstr "Katı Güvenlik Önlemi" #. Label of a Data field in DocType 'S3 Backup Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgctxt "S3 Backup Settings" msgid "Bucket Name" -msgstr "Bucket Adı" +msgstr "" -#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:66 +#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:67 msgid "Bucket {0} not found." msgstr "" @@ -4137,44 +4256,48 @@ msgstr "" #: core/doctype/role/role.json msgctxt "Role" msgid "Bulk Actions" -msgstr "" +msgstr "Çoklu İşlemler" #: core/doctype/user_permission/user_permission_list.js:142 msgid "Bulk Delete" -msgstr "Toplu Sil" +msgstr "Toplu Silme" -#: public/js/frappe/list/bulk_operations.js:256 +#: public/js/frappe/list/bulk_operations.js:291 msgid "Bulk Edit" -msgstr "Toplu Düzenle" +msgstr "Toplu Düzenleme" -#: public/js/frappe/form/grid.js:1151 +#: public/js/frappe/form/grid.js:1157 msgid "Bulk Edit {0}" -msgstr "Toplu Düzenle {0}" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:122 +msgid "Bulk PDF Export" +msgstr "" #. Name of a DocType #: desk/doctype/bulk_update/bulk_update.json msgid "Bulk Update" -msgstr "Toplu Güncelle" +msgstr "Toplu Güncelleme" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "Bulk Update" msgid "Bulk Update" -msgstr "Toplu Güncelle" +msgstr "Toplu Güncelleme" -#: model/workflow.py:253 +#: model/workflow.py:246 msgid "Bulk approval only support up to 500 documents." msgstr "" #: desk/doctype/bulk_update/bulk_update.py:57 msgid "Bulk operation is enqueued in background." -msgstr "" +msgstr "Toplu işlem arka planda sıraya alındı." -#: desk/doctype/bulk_update/bulk_update.py:70 +#: desk/doctype/bulk_update/bulk_update.py:69 msgid "Bulk operations only support up to 500 documents." -msgstr "" +msgstr "Toplu işlemler yalnızca 500 belgeye kadar destekler." -#: model/workflow.py:243 +#: model/workflow.py:236 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -4182,37 +4305,37 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Button" -msgstr "Buton" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Button" -msgstr "Buton" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Button" -msgstr "Buton" +msgstr "" #. Label of a Check field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Button Gradients" -msgstr "Düğme Degradeleri" +msgstr "" #. Label of a Check field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Button Rounded Corners" -msgstr "Düğme Yuvarlak Köşeler" +msgstr "" #. Label of a Check field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Button Shadows" -msgstr "Düğme Gölgeleri" +msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -4229,7 +4352,7 @@ msgstr "" #: website/doctype/web_page/web_page.js:111 #: 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 "Başlık varsayılan olarak meta başlık olarak kullanılır, buraya bir değer eklemek onu geçersiz kılar." +msgstr "" #. Description of the 'Send Email for Successful Backup' (Check) field in #. DocType 'S3 Backup Settings' @@ -4266,19 +4389,19 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled" -msgstr "Sınırlandırılmış IP Adresini Atla İki Faktörlü Kimlik Doğrulama Etkinse Kontrol Edin" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Bypass Two Factor Auth for users who login from restricted IP Address" -msgstr "Kısıtlı IP Adresi ile giriş yapan kullanıcılar için İki Faktör Kimlik Doğrulama" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" -msgstr "İki Faktör Yetkilisi Etkinleştirilmişse, Sınırlı IP Adresi kontrolünü atla" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -4288,23 +4411,23 @@ msgstr "" #: templates/print_formats/standard_macros.html:212 msgid "CANCELLED" -msgstr "İptal Edildi" +msgstr "" -#: public/js/frappe/views/communication.js:71 +#: public/js/frappe/views/communication.js:73 msgid "CC" -msgstr "CC" +msgstr "" #. Label of a Code field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "CC" -msgstr "CC" +msgstr "" #. Label of a Code field in DocType 'Notification Recipient' #: email/doctype/notification_recipient/notification_recipient.json msgctxt "Notification Recipient" msgid "CC" -msgstr "CC" +msgstr "" #. Label of a Data field in DocType 'Recorder' #: core/doctype/recorder/recorder.json @@ -4312,29 +4435,33 @@ msgctxt "Recorder" msgid "CMD" msgstr "" +#: public/js/frappe/color_picker/color_picker.js:20 +msgid "COLOR PICKER" +msgstr "" + #. Label of a Section Break field in DocType 'Custom HTML Block' #: desk/doctype/custom_html_block/custom_html_block.json msgctxt "Custom HTML Block" msgid "CSS" -msgstr "CSS" +msgstr "" #. Label of a Code field in DocType 'Print Style' #: printing/doctype/print_style/print_style.json msgctxt "Print Style" msgid "CSS" -msgstr "CSS" +msgstr "" #. Label of a Code field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "CSS" -msgstr "CSS" +msgstr "" #. Label of a Small Text field in DocType 'Web Page Block' #: website/doctype/web_page_block/web_page_block.json msgctxt "Web Page Block" msgid "CSS Class" -msgstr "CSS Sınıfı" +msgstr "" #. Description of the 'Element Selector' (Data) field in DocType 'Form Tour #. Step' @@ -4347,25 +4474,25 @@ msgstr "" #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "CSV" -msgstr "CSV" +msgstr "" #. Option for the 'File Type' (Select) field in DocType 'Data Export' #: core/doctype/data_export/data_export.json msgctxt "Data Export" msgid "CSV" -msgstr "CSV" +msgstr "" #. Label of a Data field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json msgctxt "Blog Settings" msgid "CTA Label" -msgstr "CTA Etiketi" +msgstr "" #. Label of a Data field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json msgctxt "Blog Settings" msgid "CTA URL" -msgstr "CTA URL'si" +msgstr "" #: sessions.py:31 msgid "Cache Cleared" @@ -4397,7 +4524,7 @@ msgstr "Takvim" #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" msgid "Calendar Name" -msgstr "Takvim Adı" +msgstr "" #. Name of a DocType #: desk/doctype/calendar_view/calendar_view.json @@ -4410,27 +4537,27 @@ msgctxt "DocType" msgid "Calendar View" msgstr "Takvim Görünümü" -#: contacts/doctype/contact/contact.js:50 +#: contacts/doctype/contact/contact.js:55 msgid "Call" -msgstr "Çağrı" +msgstr "" #. Option for the 'Event Category' (Select) field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Call" -msgstr "Çağrı" +msgstr "" #. Label of a Data field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Call To Action" -msgstr "Eylem çağrısı" +msgstr "" #. Label of a Data field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Call To Action URL" -msgstr "Harekete Geçirici Mesaj URL'si" +msgstr "" #. Label of a Section Break field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json @@ -4442,34 +4569,34 @@ msgstr "" #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Callback Message" -msgstr "Geri Arama Mesajı" +msgstr "" #. Label of a Data field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Callback Title" -msgstr "Geri Arama Başlığı" +msgstr "" -#: public/js/frappe/ui/capture.js:326 +#: public/js/frappe/ui/capture.js:334 msgid "Camera" msgstr "Kamera" -#: public/js/frappe/utils/utils.js:1711 +#: public/js/frappe/utils/utils.js:1714 #: website/report/website_analytics/website_analytics.js:39 msgid "Campaign" -msgstr "" +msgstr "Kampanya" #. Label of a Link field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Campaign" -msgstr "" +msgstr "Kampanya" #. Label of a Data field in DocType 'Web Page View' #: website/doctype/web_page_view/web_page_view.json msgctxt "Web Page View" msgid "Campaign" -msgstr "" +msgstr "Kampanya" #. Label of a Small Text field in DocType 'Marketing Campaign' #: website/doctype/marketing_campaign/marketing_campaign.json @@ -4477,11 +4604,31 @@ msgctxt "Marketing Campaign" msgid "Campaign Description (Optional)" msgstr "" +#: public/js/frappe/form/templates/set_sharing.html:4 +#: public/js/frappe/form/templates/set_sharing.html:50 +msgid "Can Read" +msgstr "" + +#: public/js/frappe/form/templates/set_sharing.html:7 +#: public/js/frappe/form/templates/set_sharing.html:53 +msgid "Can Share" +msgstr "" + +#: public/js/frappe/form/templates/set_sharing.html:6 +#: public/js/frappe/form/templates/set_sharing.html:52 +msgid "Can Submit" +msgstr "" + +#: public/js/frappe/form/templates/set_sharing.html:5 +#: public/js/frappe/form/templates/set_sharing.html:51 +msgid "Can Write" +msgstr "" + #: custom/doctype/custom_field/custom_field.py:360 msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: core/doctype/doctype/doctype.py:1114 +#: core/doctype/doctype/doctype.py:1112 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -4492,16 +4639,16 @@ msgctxt "User Type" msgid "Can only list down the document types which has been linked to the User document type." msgstr "" -#: model/rename_doc.py:367 +#: model/rename_doc.py:361 msgid "Can't rename {0} to {1} because {0} doesn't exist." msgstr "" -#: core/doctype/doctype/doctype_list.js:113 +#: core/doctype/doctype/doctype_list.js:130 #: public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "İptal" -#: public/js/frappe/list/list_view.js:1889 +#: public/js/frappe/list/list_view.js:1959 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "İptal" @@ -4544,7 +4691,7 @@ msgstr "İptal" #: public/js/frappe/form/form.js:998 msgid "Cancel All" -msgstr "" +msgstr "Tümünü İptal Et" #: public/js/frappe/form/form.js:985 msgid "Cancel All Documents" @@ -4554,13 +4701,13 @@ msgstr "Tüm Belgeleri İptal Et" msgid "Cancel Scheduling" msgstr "" -#: public/js/frappe/list/list_view.js:1894 +#: public/js/frappe/list/list_view.js:1964 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" -msgstr "{0} dokümanı iptal et" +msgstr "{0} belge iptal edilsin mi?" #: desk/form/save.py:59 public/js/frappe/model/indicator.js:78 -#: public/js/frappe/ui/filters/filter.js:495 +#: public/js/frappe/ui/filters/filter.js:496 msgid "Cancelled" msgstr "İptal edildi" @@ -4594,24 +4741,24 @@ msgctxt "ToDo" msgid "Cancelled" msgstr "İptal edildi" -#: core/doctype/deleted_document/deleted_document.py:51 +#: core/doctype/deleted_document/deleted_document.py:52 msgid "Cancelled Document restored as Draft" -msgstr "Taslak olarak geri yüklenen İptal Edilen Belge" +msgstr "" #: public/js/frappe/form/save.js:13 msgctxt "Freeze message while cancelling a document" msgid "Cancelling" -msgstr "Önleyici" +msgstr "" -#: desk/form/linked_with.py:379 +#: desk/form/linked_with.py:375 msgid "Cancelling documents" -msgstr "Belgeleri iptal etme" +msgstr "Belgeler İptal Ediliyor" -#: desk/doctype/bulk_update/bulk_update.py:94 +#: desk/doctype/bulk_update/bulk_update.py:92 msgid "Cancelling {0}" -msgstr "{0} iptal ediliyor" +msgstr "{0} İptal Ediliyor" -#: core/doctype/prepared_report/prepared_report.py:244 +#: core/doctype/prepared_report/prepared_report.py:245 msgid "Cannot Download Report due to insufficient permissions" msgstr "" @@ -4619,14 +4766,14 @@ msgstr "" msgid "Cannot Fetch Values" msgstr "" -#: core/page/permission_manager/permission_manager.py:150 +#: core/page/permission_manager/permission_manager.py:155 msgid "Cannot Remove" -msgstr "Kaldırılamıyor" - -#: model/base_document.py:1034 -msgid "Cannot Update After Submit" msgstr "" +#: model/base_document.py:1059 +msgid "Cannot Update After Submit" +msgstr "Belge Gönderildikten Sonra Güncelleme Yapılamaz" + #: core/doctype/file/file.py:574 msgid "Cannot access file path {0}" msgstr "" @@ -4635,19 +4782,19 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: workflow/doctype/workflow/workflow.py:112 +#: workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" -msgstr "Göndermeden önce iptal edilemiyor. Bkz Geçiş {0}" +msgstr "" -#: public/js/frappe/list/bulk_operations.js:229 +#: public/js/frappe/list/bulk_operations.js:264 msgid "Cannot cancel {0}." msgstr "" -#: model/document.py:838 +#: model/document.py:848 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: model/document.py:852 +#: model/document.py:862 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -4655,41 +4802,41 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: workflow/doctype/workflow/workflow.py:101 +#: workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" -msgstr "İptal Belgesinin durumu değiştirilemez. Geçiş satır {0}" +msgstr "" -#: core/doctype/doctype/doctype.py:1104 +#: core/doctype/doctype/doctype.py:1102 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" #: core/doctype/communication/communication.py:193 msgid "Cannot create a {0} against a child document: {1}" -msgstr "oluşturulamıyor bir {0} alt belgenin karşı: {1}" +msgstr "" -#: desk/doctype/workspace/workspace.py:250 +#: desk/doctype/workspace/workspace.py:252 msgid "Cannot create private workspace of other users" msgstr "" #: core/doctype/file/file.py:151 msgid "Cannot delete Home and Attachments folders" -msgstr "Ev ve Ekler klasörleri silemezsiniz" +msgstr "" -#: model/delete_doc.py:367 +#: model/delete_doc.py:373 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" -msgstr "{0} {1}, {2} {3} {4} ile bağlantılı olduğundan silinemez veya iptal edilemez" +msgstr "Silme veya iptal etme işlemi yapılamaz. {0} {1} ile {2} {3} {4} ilişkilendirilmiş." -#: desk/doctype/workspace/workspace.py:417 +#: desk/doctype/workspace/workspace.py:411 msgid "Cannot delete private workspace of other users" msgstr "" -#: desk/doctype/workspace/workspace.py:410 +#: desk/doctype/workspace/workspace.py:404 msgid "Cannot delete public workspace without Workspace Manager role" msgstr "" #: custom/doctype/customize_form/customize_form.js:313 msgid "Cannot delete standard action. You can hide it if you want" -msgstr "Standart eylem silinemez. İstersen saklayabilirsin" +msgstr "Standart aksiyon silinemez, sadece gizlenebilir." #: custom/doctype/customize_form/customize_form.js:328 msgid "Cannot delete standard document state." @@ -4701,49 +4848,49 @@ msgstr "" #: custom/doctype/customize_form/customize_form.js:298 msgid "Cannot delete standard link. You can hide it if you want" -msgstr "Standart bağlantı silinemez. İstersen saklayabilirsin" +msgstr "Standart bağlantı silinemez, sadece gizlenebilir." #: custom/doctype/customize_form/customize_form.js:268 msgid "Cannot delete system generated field {0}. You can hide it instead." msgstr "" -#: public/js/frappe/list/bulk_operations.js:171 +#: public/js/frappe/list/bulk_operations.js:185 msgid "Cannot delete {0}" -msgstr "{0} sililemiyor" +msgstr "" -#: utils/nestedset.py:302 +#: utils/nestedset.py:296 msgid "Cannot delete {0} as it has child nodes" -msgstr "Silinemez {0} eğer çocuk düğümleri varsa" +msgstr "{0} öğesinin alt elemanları olduğu için silme işlemi yapılamaz." -#: desk/doctype/dashboard/dashboard.py:49 +#: desk/doctype/dashboard/dashboard.py:48 msgid "Cannot edit Standard Dashboards" msgstr "" -#: email/doctype/notification/notification.py:120 +#: email/doctype/notification/notification.py:121 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" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:388 +#: desk/doctype/dashboard_chart/dashboard_chart.py:378 msgid "Cannot edit Standard charts" msgstr "" -#: core/doctype/report/report.py:68 +#: core/doctype/report/report.py:72 msgid "Cannot edit a standard report. Please duplicate and create a new report" -msgstr "Standart bir rapor düzenlenemez. çoğaltmak ve yeni bir rapor oluşturun" +msgstr "" -#: model/document.py:858 +#: model/document.py:868 msgid "Cannot edit cancelled document" -msgstr "İptal belge düzenlemek Can not" +msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:378 msgid "Cannot edit filters for standard charts" -msgstr "Standart grafikler için filtreler düzenlenemez" +msgstr "Standart grafikler için filtreleri düzenleyemezsiniz." #: client.py:166 msgid "Cannot edit standard fields" -msgstr "Standart alanları düzenlenemez." +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:124 +#: automation/doctype/auto_repeat/auto_repeat.py:125 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" @@ -4755,68 +4902,72 @@ msgstr "" msgid "Cannot get file contents of a Folder" msgstr "" -#: printing/page/print/print.js:817 +#: printing/page/print/print.js:824 msgid "Cannot have multiple printers mapped to a single print format." -msgstr "Tek bir baskı biçiminde eşlenmiş birden fazla yazıcıya sahip olamaz." +msgstr "" -#: model/document.py:926 +#: model/document.py:936 msgid "Cannot link cancelled document: {0}" -msgstr "İptal belgeyi bağlantı Can not: {0}" +msgstr "" -#: model/mapper.py:184 +#: model/mapper.py:181 msgid "Cannot map because following condition fails:" msgstr "" -#: core/doctype/data_import/importer.py:924 +#: core/doctype/data_import/importer.py:921 msgid "Cannot match column {0} with any field" -msgstr "{0} sütunu herhangi bir alanla eşleştirilemiyor" +msgstr "" #: public/js/frappe/form/grid_row.js:172 msgid "Cannot move row" -msgstr "Satır taşınamıyor" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:865 +#: public/js/frappe/views/reports/report_view.js:860 msgid "Cannot remove ID field" -msgstr "Kimlik alanı kaldırılamıyor" +msgstr "ID Alanı Kaldırılamaz" -#: email/doctype/notification/notification.py:136 +#: core/page/permission_manager/permission_manager.py:132 +msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" +msgstr "" + +#: email/doctype/notification/notification.py:137 msgid "Cannot set Notification on Document Type {0}" -msgstr "Belge Türü'nde Bildirim Ayarlanamıyor {0}" +msgstr "" -#: core/doctype/docshare/docshare.py:69 +#: core/doctype/docshare/docshare.py:67 msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable" msgstr "" -#: public/js/frappe/list/bulk_operations.js:226 +#: public/js/frappe/list/bulk_operations.js:261 msgid "Cannot submit {0}." msgstr "" -#: desk/doctype/workspace/workspace.py:351 +#: desk/doctype/workspace/workspace.py:345 msgid "Cannot update private workspace of other users" msgstr "" #: desk/doctype/bulk_update/bulk_update.js:26 -#: public/js/frappe/list/bulk_operations.js:301 +#: public/js/frappe/list/bulk_operations.js:336 msgid "Cannot update {0}" -msgstr "{0} güncellenemiyor" +msgstr "" -#: model/db_query.py:1125 +#: model/db_query.py:1103 msgid "Cannot use sub-query in order by" -msgstr "tarafından sırayla alt sorgu kullanılamaz" +msgstr "" -#: model/db_query.py:1143 +#: model/db_query.py:1121 msgid "Cannot use {0} in order/group by" msgstr "" -#: public/js/frappe/list/bulk_operations.js:232 +#: public/js/frappe/list/bulk_operations.js:267 msgid "Cannot {0} {1}." msgstr "" -#: utils/password_strength.py:185 +#: utils/password_strength.py:181 msgid "Capitalization doesn't help very much." -msgstr "Büyük harf kullanımı çok yardımcı olmuyor." +msgstr "" -#: public/js/frappe/ui/capture.js:286 +#: public/js/frappe/ui/capture.js:294 msgid "Capture" msgstr "" @@ -4836,9 +4987,9 @@ msgstr "" msgid "Card Label" msgstr "Kart Etiketi" -#: public/js/frappe/widgets/widget_dialog.js:227 +#: public/js/frappe/widgets/widget_dialog.js:266 msgid "Card Links" -msgstr "" +msgstr "Kart Bağlantıları" #. Label of a Table field in DocType 'Dashboard' #: desk/doctype/dashboard/dashboard.json @@ -4866,7 +5017,7 @@ msgstr "Kategori" #: website/doctype/help_category/help_category.json msgctxt "Help Category" msgid "Category Description" -msgstr "Kategori Açıklaması" +msgstr "" #. Label of a Data field in DocType 'Help Category' #: website/doctype/help_category/help_category.json @@ -4874,37 +5025,42 @@ msgctxt "Help Category" msgid "Category Name" msgstr "Kategori Adı" -#: utils/data.py:1491 +#: utils/data.py:1469 msgid "Cent" -msgstr "Sent" +msgstr "" #. Option for the 'Align' (Select) field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Center" -msgstr "Merkez" +msgstr "" #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Center" -msgstr "Merkez" +msgstr "" + +#: 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 "" #: core/report/transaction_log_report/transaction_log_report.py:82 msgid "Chain Integrity" -msgstr "Zincir bütünlüğü" +msgstr "" #. Label of a Small Text field in DocType 'Transaction Log' #: core/doctype/transaction_log/transaction_log.json msgctxt "Transaction Log" msgid "Chaining Hash" -msgstr "Zincirleme karma" +msgstr "" -#: tests/test_translate.py:98 +#: public/js/frappe/form/templates/form_sidebar.html:11 +#: tests/test_translate.py:97 msgid "Change" msgstr "Değiştir" -#: tests/test_translate.py:99 +#: tests/test_translate.py:98 msgctxt "Coins" msgid "Change" msgstr "Değiştir" @@ -4913,13 +5069,13 @@ msgstr "Değiştir" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Change Label (via Custom Translation)" -msgstr "(Özel Çevirisi) Değişim Etiket" +msgstr "Etiketi Değiştir (Özel Çeviri)" #. Label of a Section Break field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Change Password" -msgstr "Şifre Değiştir" +msgstr "Şifreyi Değiştir" #: public/js/print_format_builder/print_format_builder.bundle.js:27 msgid "Change Print Format" @@ -4928,15 +5084,13 @@ msgstr "" #: desk/page/user_profile/user_profile_controller.js:51 #: desk/page/user_profile/user_profile_controller.js:59 msgid "Change User" -msgstr "Kullanıcıyı Değiştir" +msgstr "Kullanıcı Değiştir" #. Description of the 'Update Series Counter' (Section Break) field in DocType #. 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" -msgid "" -"Change the starting / current sequence number of an existing series.
      \n" -"\n" +msgid "Change the starting / current sequence number of an existing series.
      \n\n" "Warning: Incorrectly updating counters can prevent documents from getting created. " msgstr "" @@ -4952,7 +5106,7 @@ msgstr "" #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Channel" -msgstr "Kanal" +msgstr "" #. Label of a Link field in DocType 'Dashboard Chart Link' #: desk/doctype/dashboard_chart_link/dashboard_chart_link.json @@ -4964,7 +5118,7 @@ msgstr "Grafik" #: desk/doctype/dashboard_settings/dashboard_settings.json msgctxt "Dashboard Settings" msgid "Chart Configuration" -msgstr "Grafik Yapılandırması" +msgstr "" #. Label of a Data field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json @@ -4996,15 +5150,15 @@ msgctxt "Dashboard Chart" msgid "Chart Source" msgstr "Grafik Kaynağı" -#: public/js/frappe/views/reports/report_view.js:479 +#: public/js/frappe/views/reports/report_view.js:474 msgid "Chart Type" -msgstr "Grafik tipi" +msgstr "Grafik Türü" #. Label of a Select field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Chart Type" -msgstr "Grafik tipi" +msgstr "Grafik Türü" #. Label of a Table field in DocType 'Dashboard' #: desk/doctype/dashboard/dashboard.json @@ -5030,66 +5184,70 @@ msgstr "Sohbet" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Check" -msgstr "Kontrol" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Check" -msgstr "Kontrol" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Check" -msgstr "Kontrol" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #: core/doctype/report_column/report_column.json msgctxt "Report Column" msgid "Check" -msgstr "Kontrol" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' #: core/doctype/report_filter/report_filter.json msgctxt "Report Filter" msgid "Check" -msgstr "Kontrol" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Check" -msgstr "Kontrol" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Check" -msgstr "Kontrol" +msgstr "" -#: integrations/doctype/webhook/webhook.py:95 +#: integrations/doctype/webhook/webhook.py:98 msgid "Check Request URL" -msgstr "İstek URL'sini kontrol et" +msgstr "" #: email/doctype/newsletter/newsletter.js:18 msgid "Check broken links" msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:442 +#: printing/page/print_format_builder/print_format_builder_column_selector.html:1 +msgid "Check columns to select, drag to set order." +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat.py:443 msgid "Check the Error Log for more information: {0}" -msgstr "Daha fazla bilgi için Hata Günlüğünü kontrol edin: {0}" +msgstr "" #: website/doctype/website_settings/website_settings.js:147 msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it." -msgstr "Kullanıcıların sitenizdeki bir hesaba kaydolmasını istemiyorsanız bunu işaretleyin. Siz açıkça sağlamadığınız sürece kullanıcılar masaya erişemez." +msgstr "" #. Description of the 'User must always select' (Check) field in DocType #. 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this." -msgstr "Kullanıcıya kaydetmekten önce seri seçmek istiyorum. Eğer işaretlerseniz atanmış seri olmayacak." +msgstr "" #: email/doctype/newsletter/newsletter.js:20 msgid "Checking broken links..." @@ -5097,32 +5255,32 @@ msgstr "" #: public/js/frappe/desk.js:214 msgid "Checking one moment" -msgstr "bir an denetleniyor" +msgstr "" #: website/doctype/website_settings/website_settings.js:140 msgid "Checking this will enable tracking page views for blogs, web pages, etc." -msgstr "Bunu kontrol etmek, bloglar, web sayfaları vb. İçin izleme sayfa görüntülemelerini etkinleştirecektir." +msgstr "" #. Description of the 'Hide Custom DocTypes and Reports' (Check) field in #. DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Checking this will hide custom doctypes and reports cards in Links section" -msgstr "Bunu işaretlemek, Bağlantılar bölümünde özel belge türlerini ve rapor kartlarını gizleyecektir." +msgstr "" #: website/doctype/web_page/web_page.js:78 msgid "Checking this will publish the page on your website and it'll be visible to everyone." -msgstr "Bunu işaretlemek, sayfayı web sitenizde yayınlayacak ve herkes tarafından görülebilecektir." +msgstr "" #: website/doctype/web_page/web_page.js:104 msgid "Checking this will show a text area where you can write custom javascript that will run on this page." -msgstr "Bunu kontrol etmek, bu sayfada çalışacak özel javascript yazabileceğiniz bir metin alanı gösterecektir." +msgstr "" #. Label of a Data field in DocType 'Transaction Log' #: core/doctype/transaction_log/transaction_log.json msgctxt "Transaction Log" msgid "Checksum Version" -msgstr "Checksum Sürümü" +msgstr "" #: www/list.py:85 msgid "Child DocTypes are not allowed" @@ -5134,42 +5292,42 @@ msgctxt "Form Tour Step" msgid "Child Doctype" msgstr "" -#: core/doctype/doctype/doctype.py:1588 +#: core/doctype/doctype/doctype.py:1584 msgid "Child Table {0} for field {1}" msgstr "" -#: core/doctype/doctype/doctype_list.js:37 +#: core/doctype/doctype/doctype_list.js:52 msgid "Child Tables are shown as a Grid in other DocTypes" -msgstr "Alt Tablolar, Diğer Doküman Tiplerinde Kılavuz olarak gösterilir." +msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Child Tables are shown as a Grid in other DocTypes" -msgstr "Alt Tablolar, Diğer Doküman Tiplerinde Kılavuz olarak gösterilir." - -#: public/js/frappe/widgets/widget_dialog.js:614 -msgid "Choose Existing Card or create New Card" -msgstr "Mevcut Kartı seçin veya Yeni Kart oluşturun" - -#: public/js/frappe/views/workspace/workspace.js:1385 -msgid "Choose a block or continue typing" msgstr "" +#: public/js/frappe/widgets/widget_dialog.js:653 +msgid "Choose Existing Card or create New Card" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1396 +msgid "Choose a block or continue typing" +msgstr "Bir blok seçin veya yazmaya devam edin" + #: public/js/frappe/form/controls/color.js:5 msgid "Choose a color" -msgstr "" +msgstr "Bir Renk Seçin" #: public/js/frappe/form/controls/icon.js:5 msgid "Choose an icon" -msgstr "" +msgstr "Bir simge seçimi" #. Description of the 'Two Factor Authentication method' (Select) field in #. DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Choose authentication method to be used by all users" -msgstr "Tüm kullanıcılar tarafından kullanılacak kimlik doğrulama yöntemini seçin" +msgstr "Tüm kullanıcılar tarafından kullanılacak doğrulama yöntemini seçin." #. Label of a Data field in DocType 'Contact Us Settings' #: website/doctype/contact_us_settings/contact_us_settings.json @@ -5184,24 +5342,34 @@ msgid "City/Town" msgstr "İl / İlçe" #: core/doctype/recorder/recorder_list.js:12 +#: public/js/frappe/form/controls/attach.js:16 msgid "Clear" msgstr "Açık" -#: public/js/frappe/views/communication.js:325 +#: public/js/frappe/views/communication.js:415 msgid "Clear & Add Template" msgstr "" -#: public/js/frappe/views/communication.js:98 +#: public/js/frappe/views/communication.js:102 msgid "Clear & Add template" msgstr "" -#: public/js/frappe/ui/keyboard.js:275 +#: public/js/frappe/list/list_view.js:1865 +msgctxt "Button in list view actions menu" +msgid "Clear Assignment" +msgstr "" + +#: public/js/frappe/ui/keyboard.js:284 msgid "Clear Cache and Reload" -msgstr "Önbelleği ve Yeniden Yüklemeyi Temizle" +msgstr "Önbelleği Temizle ve Yeniden Yükle" #: core/doctype/error_log/error_log_list.js:12 msgid "Clear Error Logs" -msgstr "Net hata Günlükleri" +msgstr "" + +#: public/js/frappe/ui/filters/filter_list.js:298 +msgid "Clear Filters" +msgstr "" #. Label of a Int field in DocType 'Logs To Clear' #: core/doctype/logs_to_clear/logs_to_clear.json @@ -5213,25 +5381,33 @@ msgstr "" msgid "Clear User Permissions" msgstr "Kullanıcı İzinlerini Temizle" -#: public/js/frappe/views/communication.js:326 +#: public/js/frappe/views/communication.js:416 msgid "Clear the email message and add the template" msgstr "" -#: website/doctype/web_page/web_page.py:214 +#: website/doctype/web_page/web_page.py:215 msgid "Clearing end date, as it cannot be in the past for published pages." -msgstr "Yayınlanmış sayfalarda geçmişte bulunamadığından bitiş tarihi temizleniyor." +msgstr "" + +#: public/js/frappe/views/dashboard/dashboard_view.js:193 +msgid "Click On Customize to add your first widget" +msgstr "" #: website/doctype/web_form/templates/web_form.html:144 msgid "Click here" msgstr "" +#: public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Click here to post bugs and suggestions" +msgstr "" + #: email/doctype/newsletter/newsletter.py:335 msgid "Click here to verify" -msgstr "Doğrulamak için buraya tıklayın" +msgstr "" -#: integrations/doctype/google_drive/google_drive.js:46 +#: integrations/doctype/google_drive/google_drive.js:47 msgid "Click on Authorize Google Drive Access to authorize Google Drive Access." -msgstr "Google Drive Erişimini yetkilendirmek için Google Drive Erişimini Yetkilendir seçeneğine tıklayın." +msgstr "" #: templates/emails/login_with_email_link.html:19 msgid "Click on the button to log in to {0}" @@ -5239,66 +5415,84 @@ msgstr "" #: templates/emails/data_deletion_approval.html:2 msgid "Click on the link below to approve the request" -msgstr "İsteği onaylamak için aşağıdaki linke tıklayın" +msgstr "" #: templates/emails/new_user.html:7 msgid "Click on the link below to complete your registration and set a new password" -msgstr "Kaydınızı tamamlayıp yeni bir şifre ayarlamak için aşağıdaki linke tıklayın" +msgstr "" #: templates/emails/download_data.html:3 msgid "Click on the link below to download your data" -msgstr "Verilerinizi indirmek için aşağıdaki linke tıklayın" +msgstr "" #: templates/emails/delete_data_confirmation.html:4 msgid "Click on the link below to verify your request" -msgstr "İsteğinizi doğrulamak için aşağıdaki bağlantıya tıklayın" +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:101 -#: integrations/doctype/google_contacts/google_contacts.py:40 -#: integrations/doctype/google_drive/google_drive.py:52 +#: integrations/doctype/google_calendar/google_calendar.py:102 +#: integrations/doctype/google_contacts/google_contacts.py:41 +#: integrations/doctype/google_drive/google_drive.py:53 #: website/doctype/website_settings/website_settings.py:161 msgid "Click on {0} to generate Refresh Token." -msgstr "Yenileme Tokenini oluşturmak için {0} 'a tıklayın." +msgstr "" +#: desk/doctype/dashboard_chart/dashboard_chart.js:315 +#: desk/doctype/number_card/number_card.js:215 #: email/doctype/auto_email_report/auto_email_report.js:96 +#: website/doctype/web_form/web_form.js:236 msgid "Click table to edit" -msgstr "düzenlemek için tabloyu tıklayın" +msgstr "Düzenlemek için tabloya tıklayın" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: desk/doctype/number_card/number_card.js:396 +msgid "Click to Set Dynamic Filters" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: desk/doctype/number_card/number_card.js:270 +#: website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "" + +#: public/js/frappe/list/list_view.js:678 +msgid "Click to sort by {0}" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Clicked" -msgstr "Tıklandı" +msgstr "" #. Label of a Link field in DocType 'OAuth Authorization Code' #: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgctxt "OAuth Authorization Code" msgid "Client" -msgstr "Client:" +msgstr "Client" #. Label of a Link field in DocType 'OAuth Bearer Token' #: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgctxt "OAuth Bearer Token" msgid "Client" -msgstr "Client:" +msgstr "Client" #. Label of a Section Break field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Client Code" -msgstr "Müşteri kodu" +msgstr "" #. Label of a Section Break field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json msgctxt "Connected App" msgid "Client Credentials" -msgstr "Müşteri Kimlik" +msgstr "" #. Label of a Section Break field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Client Credentials" -msgstr "Müşteri Kimlik" +msgstr "" #. Label of a Data field in DocType 'Google Settings' #: integrations/doctype/google_settings/google_settings.json @@ -5322,44 +5516,44 @@ msgstr "" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Client Information" -msgstr "Müşteri bilgisi" +msgstr "" #. Name of a DocType #: custom/doctype/client_script/client_script.json #: website/doctype/web_page/web_page.js:103 msgid "Client Script" -msgstr "İstemci Komut Dosyası" +msgstr "" #. Label of a Link in the Build Workspace #. Label of a shortcut in the Build Workspace #: core/workspace/build/build.json msgctxt "Client Script" msgid "Client Script" -msgstr "İstemci Komut Dosyası" +msgstr "" #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Client Script" -msgstr "İstemci Komut Dosyası" +msgstr "" #. Label of a Code field in DocType 'DocType Layout' #: custom/doctype/doctype_layout/doctype_layout.json msgctxt "DocType Layout" msgid "Client Script" -msgstr "İstemci Komut Dosyası" +msgstr "" #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Client Script" -msgstr "İstemci Komut Dosyası" +msgstr "" #. Label of a Code field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Client Script" -msgstr "İstemci Komut Dosyası" +msgstr "" #. Label of a Password field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json @@ -5383,10 +5577,10 @@ msgstr "Client Secret" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Client URLs" -msgstr "Müşteri URL'leri" +msgstr "" #: core/doctype/communication/communication.js:39 desk/doctype/todo/todo.js:23 -#: public/js/frappe/ui/messages.js:245 +#: public/js/frappe/ui/messages.js:243 website/js/bootstrap-4.js:24 msgid "Close" msgstr "Kapat" @@ -5394,33 +5588,35 @@ msgstr "Kapat" #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Close Condition" -msgstr "Yakın Durumu" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Closed" -msgstr "Kapalı" +msgstr "Kapandı" #. Option for the 'Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Closed" -msgstr "Kapalı" +msgstr "Kapandı" #. Option for the 'Status' (Select) field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Closed" -msgstr "Kapalı" +msgstr "Kapandı" #. Option for the 'Status' (Select) field in DocType 'ToDo' #: desk/doctype/todo/todo.json msgctxt "ToDo" msgid "Closed" -msgstr "Kapalı" +msgstr "Kapandı" #: templates/discussions/comment_box.html:25 +#: templates/discussions/reply_section.html:53 +#: templates/discussions/topic_modal.html:11 msgid "Cmd+Enter to add comment" msgstr "" @@ -5428,31 +5624,31 @@ msgstr "" #: geo/doctype/country/country.json msgctxt "Country" msgid "Code" -msgstr "Kodu" +msgstr "Kod" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Code" -msgstr "Kodu" +msgstr "Kod" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Code" -msgstr "Kodu" +msgstr "Kod" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Code" -msgstr "Kodu" +msgstr "Kod" #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "Code" -msgstr "Kodu" +msgstr "Kod" #. Label of a Data field in DocType 'OAuth Authorization Code' #: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json @@ -5466,16 +5662,17 @@ msgctxt "OAuth Authorization Code" msgid "Code challenge method" msgstr "" -#: public/js/frappe/form/form_tour.js:268 +#: public/js/frappe/form/form_tour.js:270 #: public/js/frappe/widgets/base_widget.js:157 msgid "Collapse" -msgstr "Çöküş" +msgstr "Daralt" #: public/js/frappe/form/controls/code.js:146 msgctxt "Shrink code field." msgid "Collapse" -msgstr "Çöküş" +msgstr "Daralt" +#: public/js/frappe/views/reports/query_report.js:1964 #: public/js/frappe/views/treeview.js:121 msgid "Collapse All" msgstr "Tümünü Daralt" @@ -5484,31 +5681,31 @@ msgstr "Tümünü Daralt" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Collapsible" -msgstr "Katlanabilir" +msgstr "Açılır Kapanır" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Collapsible" -msgstr "Katlanabilir" +msgstr "Açılır Kapanır" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Collapsible" -msgstr "Katlanabilir" +msgstr "Açılır Kapanır" #. Label of a Code field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Collapsible Depends On" -msgstr "Katlanabilir Bağlıdır" +msgstr "" #. Label of a Code field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Collapsible Depends On" -msgstr "Katlanabilir Bağlıdır" +msgstr "" #. Label of a Code field in DocType 'DocField' #: core/doctype/docfield/docfield.json @@ -5517,9 +5714,9 @@ msgid "Collapsible Depends On (JS)" msgstr "" #. Name of a DocType -#: public/js/frappe/views/reports/query_report.js:1140 -#: public/js/frappe/widgets/widget_dialog.js:505 -#: public/js/frappe/widgets/widget_dialog.js:657 +#: public/js/frappe/views/reports/query_report.js:1154 +#: public/js/frappe/widgets/widget_dialog.js:544 +#: public/js/frappe/widgets/widget_dialog.js:696 #: website/doctype/color/color.json msgid "Color" msgstr "Renk" @@ -5614,62 +5811,74 @@ msgctxt "Workspace Shortcut" msgid "Color" msgstr "Renk" -#: desk/doctype/kanban_board/kanban_board.py:85 +#: printing/page/print_format_builder/print_format_builder_column_selector.html:7 +msgid "Column" +msgstr "" + +#: desk/doctype/kanban_board/kanban_board.py:84 msgid "Column {0} already exist." -msgstr "Kolon {0} zaten var." +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Column Break" -msgstr "Sütun Arası" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Column Break" -msgstr "Sütun Arası" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Column Break" -msgstr "Sütun Arası" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Column Break" -msgstr "Sütun Arası" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Column Break" -msgstr "Sütun Arası" +msgstr "" #: core/doctype/data_export/exporter.py:140 msgid "Column Labels:" -msgstr "Sütun Etiketleri:" +msgstr "" #: core/doctype/data_export/exporter.py:25 msgid "Column Name" -msgstr "Sütun Adı" +msgstr "" #. Label of a Data field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Column Name" -msgstr "Sütun Adı" +msgstr "" -#: desk/doctype/kanban_board/kanban_board.py:44 +#: desk/doctype/kanban_board/kanban_board.py:45 msgid "Column Name cannot be empty" -msgstr "Sütun Adı boş olamaz" +msgstr "" -#: public/js/frappe/form/grid_row.js:593 +#: public/js/frappe/form/grid_row.js:430 +msgid "Column Width" +msgstr "" + +#: public/js/frappe/form/grid_row.js:614 msgid "Column width cannot be zero." msgstr "" +#: core/doctype/data_import/data_import.js:380 +msgid "Column {0}" +msgstr "{0} sütunu" + #. Label of a Int field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" @@ -5709,11 +5918,11 @@ msgstr "Sütunlar / Alanlar" #: public/js/frappe/views/kanban/kanban_view.js:394 msgid "Columns based on" -msgstr "Sütunlar dayalı" +msgstr "Sütun Ayarlaması" -#: integrations/doctype/oauth_client/oauth_client.py:43 +#: integrations/doctype/oauth_client/oauth_client.py:44 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" -msgstr "Hibe Türü ( {0} ) ve Yanıt Türü ( {1} ) kombinasyonu izin verilmez" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -5722,7 +5931,8 @@ msgid "Comm10E" msgstr "" #. Name of a DocType -#: core/doctype/comment/comment.json +#: core/doctype/comment/comment.json core/doctype/version/version_view.html:3 +#: public/js/frappe/form/controls/comment.js:9 #: public/js/frappe/form/sidebar/assign_to.js:210 #: templates/includes/comments/comments.html:34 msgid "Comment" @@ -5746,29 +5956,29 @@ msgstr "Yorum Yap" #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Comment By" -msgstr "Yorum yapan" +msgstr "" #. Label of a Data field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Comment Email" -msgstr "Yorum E-postası" +msgstr "" #. Label of a Select field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Comment Type" -msgstr "Yorum Tipi" +msgstr "Yorum Türü" #. Label of a Select field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Comment Type" -msgstr "Yorum Tipi" +msgstr "Yorum Türü" #: desk/form/utils.py:58 msgid "Comment can only be edited by the owner" -msgstr "Yorum yalnızca sahibi tarafından düzenlenebilir" +msgstr "" #. Label of a Int field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json @@ -5782,8 +5992,8 @@ msgctxt "Blog Settings" msgid "Comment limit per hour" msgstr "" -#: model/__init__.py:150 model/meta.py:54 public/js/frappe/model/meta.js:206 -#: public/js/frappe/model/model.js:125 +#: model/meta.py:54 public/js/frappe/form/controls/comment.js:9 +#: public/js/frappe/model/meta.js:206 public/js/frappe/model/model.js:125 #: website/doctype/web_form/templates/web_form.html:119 msgid "Comments" msgstr "Yorumlar" @@ -5792,11 +6002,11 @@ msgstr "Yorumlar" #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Comments and Communications will be associated with this linked document" -msgstr "Yorumlar ve İletişim bu bağlantılı belge ile ilişkili olacaktır" +msgstr "Yorumlar ve Haberleşmeler bağlantılı belgeyle ilişkilendirilecek." #: templates/includes/comments/comments.py:38 msgid "Comments cannot have links or email addresses" -msgstr "Yorumların bağlantıları veya e-posta adresleri olamaz" +msgstr "" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -5808,7 +6018,7 @@ msgstr "" #: desk/doctype/system_console/system_console.json msgctxt "System Console" msgid "Commit" -msgstr "Kaydet" +msgstr "" #. Label of a Check field in DocType 'Console Log' #: desk/doctype/console_log/console_log.json @@ -5816,13 +6026,13 @@ msgctxt "Console Log" msgid "Committed" msgstr "" -#: utils/password_strength.py:180 +#: utils/password_strength.py:176 msgid "Common names and surnames are easy to guess." -msgstr "Ortak ad ve soyadları tahmin etmek kolaydır." +msgstr "" #. Name of a DocType -#: core/doctype/communication/communication.json tests/test_translate.py:35 -#: tests/test_translate.py:103 +#: core/doctype/communication/communication.json tests/test_translate.py:34 +#: tests/test_translate.py:102 msgid "Communication" msgstr "İletişim" @@ -5854,7 +6064,7 @@ msgstr "İletişim" #. Name of a DocType #: core/doctype/communication_link/communication_link.json msgid "Communication Link" -msgstr "İletişim linki" +msgstr "" #. Label of a Link in the Build Workspace #: core/workspace/build/build.json @@ -5866,7 +6076,7 @@ msgstr "" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Communication Type" -msgstr "İletişim Tipi" +msgstr "İletişim Türü" #: desk/page/leaderboard/leaderboard.js:112 msgid "Company" @@ -5875,13 +6085,13 @@ msgstr "Şirket" #. Name of a DocType #: website/doctype/company_history/company_history.json www/about.html:29 msgid "Company History" -msgstr "Şirket Tarihçesi" +msgstr "" #. Label of a Text Editor field in DocType 'About Us Settings' #: website/doctype/about_us_settings/about_us_settings.json msgctxt "About Us Settings" msgid "Company Introduction" -msgstr "Firma Tanıtımı" +msgstr "" #. Label of a Data field in DocType 'Contact' #: contacts/doctype/contact/contact.json @@ -5891,17 +6101,17 @@ msgstr "Firma Adı" #: core/doctype/server_script/server_script.js:14 #: custom/doctype/client_script/client_script.js:54 -#: public/js/frappe/utils/diffview.js:27 +#: public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: core/doctype/server_script/server_script.py:134 +#: core/doctype/server_script/server_script.py:140 msgid "Compilation warning" msgstr "" -#: website/doctype/website_theme/website_theme.py:125 +#: website/doctype/website_theme/website_theme.py:123 msgid "Compiled Successfully" -msgstr "Başarıyla Derlendi" +msgstr "" #: www/complete_signup.html:21 msgid "Complete" @@ -5915,13 +6125,18 @@ msgstr "Tamamla" #: public/js/frappe/form/sidebar/assign_to.js:176 msgid "Complete By" -msgstr "tarafından tamamlandı" +msgstr "" -#: core/doctype/user/user.py:438 templates/emails/new_user.html:10 +#: core/doctype/user/user.py:474 templates/emails/new_user.html:10 msgid "Complete Registration" -msgstr "Tam Kayıt" +msgstr "" -#: utils/goal.py:117 +#: public/js/frappe/ui/slides.js:355 +msgctxt "Finish the setup wizard" +msgid "Complete Setup" +msgstr "" + +#: core/doctype/doctype/boilerplate/controller_list.html:31 utils/goal.py:117 msgid "Completed" msgstr "Tamamlandı" @@ -5975,7 +6190,15 @@ msgstr "Bileşen" #: public/js/frappe/views/inbox/inbox_view.js:184 msgid "Compose Email" -msgstr "E-posta oluştur" +msgstr "" + +#: desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: desk/doctype/number_card/number_card.js:205 +#: desk/doctype/number_card/number_card.js:333 +#: website/doctype/web_form/web_form.js:197 +msgid "Condition" +msgstr "Koşul" #. Label of a Small Text field in DocType 'Bulk Update' #: desk/doctype/bulk_update/bulk_update.json @@ -6047,28 +6270,35 @@ msgstr "Koşullar" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Configuration" -msgstr "" +msgstr "Yapılandırma" -#: public/js/frappe/views/reports/report_view.js:461 +#: public/js/frappe/views/reports/report_view.js:456 msgid "Configure Chart" msgstr "Grafiği Yapılandır" -#: public/js/frappe/form/grid_row.js:381 +#: public/js/frappe/form/grid_row.js:382 msgid "Configure Columns" -msgstr "Kolonları Ayarla" +msgstr "Sütunları Yapılandır" + +#: core/doctype/recorder/recorder_list.js:200 +msgid "Configure Recorder" +msgstr "" #. Description of the 'Amended Documents' (Section Break) field in DocType #. 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" -msgid "" -"Configure how amended documents will be named.
      \n" -"\n" -"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
      \n" -"\n" +msgid "Configure how amended documents will be named.
      \n\n" +"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
      \n\n" "Default Naming will make the amended document to behave same as new documents." msgstr "" +#. Description of a DocType +#: core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: core/doctype/user/user.js:384 public/js/frappe/dom.js:332 #: www/update-password.html:30 msgid "Confirm" msgstr "Onayla" @@ -6083,9 +6313,9 @@ msgstr "Onayla" msgid "Confirm Deletion of Account" msgstr "" -#: core/doctype/user/user.js:173 +#: core/doctype/user/user.js:177 msgid "Confirm New Password" -msgstr "Yeni şifreyi onayla" +msgstr "" #: www/update-password.html:24 msgid "Confirm Password" @@ -6094,22 +6324,22 @@ msgstr "" #: templates/emails/data_deletion_approval.html:6 #: templates/emails/delete_data_confirmation.html:7 msgid "Confirm Request" -msgstr "İsteği Onayla" +msgstr "" #: email/doctype/newsletter/newsletter.py:330 msgid "Confirm Your Email" -msgstr "E-posta adresiniz Onayla" +msgstr "" #. Label of a Link field in DocType 'Email Group' #: email/doctype/email_group/email_group.json msgctxt "Email Group" msgid "Confirmation Email Template" -msgstr "Onay E-posta Şablonu" +msgstr "Onay E-postası Şablonu" -#: email/doctype/newsletter/newsletter.py:381 -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:394 +#: email/doctype/newsletter/newsletter.py:379 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:393 msgid "Confirmed" -msgstr "Onaylı" +msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:530 msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." @@ -6145,7 +6375,7 @@ msgstr "" #: public/js/frappe/form/print_utils.js:95 #: public/js/frappe/form/print_utils.js:119 msgid "Connected to QZ Tray!" -msgstr "QZ Tray'e bağlı!" +msgstr "" #: public/js/frappe/request.js:34 msgid "Connection Lost" @@ -6153,44 +6383,48 @@ msgstr "" #: templates/pages/integrations/gcalendar-success.html:3 msgid "Connection Success" -msgstr "Bağlantı Başarı" +msgstr "" #: public/js/frappe/dom.js:433 msgid "Connection lost. Some features might not work." -msgstr "Bağlantı koptu. Bazı özellikler çalışmayabilir." +msgstr "" #: public/js/frappe/form/dashboard.js:54 msgid "Connections" -msgstr "" +msgstr "Bağlantılar" #. Label of a Tab Break field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Connections" -msgstr "" +msgstr "Bağlantılar" #. Label of a Tab Break field in DocType 'Module Def' #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Connections" -msgstr "" +msgstr "Bağlantılar" #. Label of a Tab Break field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Connections" -msgstr "" +msgstr "Bağlantılar" #. Label of a Code field in DocType 'System Console' #: desk/doctype/system_console/system_console.json msgctxt "System Console" msgid "Console" -msgstr "Konsol" +msgstr "" #. Name of a DocType #: desk/doctype/console_log/console_log.json msgid "Console Log" -msgstr "Konsol Günlüğü" +msgstr "" + +#: desk/doctype/console_log/console_log.py:24 +msgid "Console Logs can not be deleted" +msgstr "" #. Label of a Section Break field in DocType 'DocField' #: core/doctype/docfield/docfield.json @@ -6202,19 +6436,19 @@ msgstr "" #: contacts/doctype/contact/contact.json #: core/doctype/communication/communication.js:113 msgid "Contact" -msgstr "İrtibat" +msgstr "Kişi" #. Linked DocType in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "Contact" -msgstr "İrtibat" +msgstr "Kişi" #. Label of a Section Break field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Contact Details" -msgstr "İletişim Bilgileri" +msgstr "İletişim Detayları" #. Name of a DocType #: contacts/doctype/contact_email/contact_email.json @@ -6225,34 +6459,43 @@ msgstr "İletişim E-Posta" #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Contact Numbers" -msgstr "İrtibat numaraları" +msgstr "İletişim Numaraları" #. Name of a DocType #: contacts/doctype/contact_phone/contact_phone.json msgid "Contact Phone" -msgstr "İletişim Telefonu" +msgstr "İrtibat Telefonu" -#: integrations/doctype/google_contacts/google_contacts.py:288 +#: integrations/doctype/google_contacts/google_contacts.py:291 msgid "Contact Synced with Google Contacts." -msgstr "Kişi Google Kişileriyle Eşitlendi." +msgstr "" + +#: www/contact.html:4 +msgid "Contact Us" +msgstr "Bize Ulaşın" #. Name of a DocType #: website/doctype/contact_us_settings/contact_us_settings.json msgid "Contact Us Settings" -msgstr "Bize Ulaşın Ayarları" +msgstr "İletişim Ayarları" #. Label of a Link in the Website Workspace #: website/workspace/website/website.json msgctxt "Contact Us Settings" msgid "Contact Us Settings" -msgstr "Bize Ulaşın Ayarları" +msgstr "İletişim Ayarları" #. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us #. Settings' #: website/doctype/contact_us_settings/contact_us_settings.json msgctxt "Contact Us Settings" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." -msgstr "'Satış sorgusu, Destek sorgusu' gibi her biri yeni bir sırada ya da virgüllerle ayrılmış, iletişim seçenekleri" +msgstr "" + +#: public/js/frappe/utils/utils.js:1729 +#: website/report/website_analytics/website_analytics.js:41 +msgid "Content" +msgstr "İçerik" #. Label of a Text Editor field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json @@ -6291,6 +6534,12 @@ msgctxt "Web Page" msgid "Content" msgstr "İçerik" +#. Label of a Data field in DocType 'Web Page View' +#: website/doctype/web_page_view/web_page_view.json +msgctxt "Web Page View" +msgid "Content" +msgstr "İçerik" + #. Label of a Long Text field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" @@ -6301,19 +6550,19 @@ msgstr "İçerik" #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Content (HTML)" -msgstr "İçerik (HTML)" +msgstr "" #. Label of a Markdown Editor field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Content (Markdown)" -msgstr "İçerik (Markdown)" +msgstr "" #. Label of a Data field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "Content Hash" -msgstr "İçerik Hash" +msgstr "" #. Label of a Select field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json @@ -6333,31 +6582,31 @@ msgctxt "Web Page" msgid "Content Type" msgstr "İçerik Türü" -#: desk/doctype/workspace/workspace.py:79 +#: desk/doctype/workspace/workspace.py:83 msgid "Content data shoud be a list" msgstr "" #: website/doctype/web_page/web_page.js:91 msgid "Content type for building the page" -msgstr "Sayfayı oluşturmak için içerik türü" +msgstr "" #. Label of a Data field in DocType 'Translation' #: core/doctype/translation/translation.json msgctxt "Translation" msgid "Context" -msgstr "bağlam" +msgstr "Bağlam" #. Label of a Section Break field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Context" -msgstr "bağlam" +msgstr "Bağlam" #. Label of a Code field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Context Script" -msgstr "Bağlam Komut Dosyası" +msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:209 #: public/js/frappe/widgets/onboarding_widget.js:237 @@ -6366,6 +6615,7 @@ msgstr "Bağlam Komut Dosyası" #: public/js/frappe/widgets/onboarding_widget.js:366 #: public/js/frappe/widgets/onboarding_widget.js:388 #: public/js/frappe/widgets/onboarding_widget.js:428 +#: public/js/frappe/widgets/onboarding_widget.js:536 msgid "Continue" msgstr "Devam et" @@ -6373,13 +6623,13 @@ msgstr "Devam et" #: core/doctype/translation/translation.json msgctxt "Translation" msgid "Contributed" -msgstr "Katkıda" +msgstr "" #. Label of a Data field in DocType 'Translation' #: core/doctype/translation/translation.json msgctxt "Translation" msgid "Contribution Document Name" -msgstr "Katkı Doküman Adı" +msgstr "" #. Label of a Select field in DocType 'Translation' #: core/doctype/translation/translation.json @@ -6393,13 +6643,21 @@ msgctxt "Social Login Key" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected. " msgstr "" -#: public/js/frappe/utils/utils.js:1030 +#: public/js/frappe/utils/utils.js:1031 msgid "Copied to clipboard." msgstr "Panoya kopyalandı." +#: website/doctype/web_form/web_form.js:29 +msgid "Copy Embed Code" +msgstr "" + +#: public/js/frappe/form/templates/timeline_message_box.html:83 +msgid "Copy Link" +msgstr "" + #: public/js/frappe/request.js:615 msgid "Copy error to clipboard" -msgstr "Hatayı panoya kopyala" +msgstr "Hatayı Kopyala" #: public/js/frappe/form/toolbar.js:388 msgid "Copy to Clipboard" @@ -6409,70 +6667,71 @@ msgstr "Panoya Kopyala" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Copyright" -msgstr "Telif hakkı" +msgstr "" #: custom/doctype/customize_form/customize_form.py:118 msgid "Core DocTypes cannot be customized." -msgstr "Temel Belge Türleri özelleştirilemez." +msgstr "Çekirdek Doctype'lar düzenlenemez." -#: desk/doctype/global_search_settings/global_search_settings.py:35 +#: desk/doctype/global_search_settings/global_search_settings.py:36 msgid "Core Modules {0} cannot be searched in Global Search." -msgstr "Global Arama'da {0} Çekirdek Modülleri aranamıyor." +msgstr "" -#: email/smtp.py:77 +#: email/smtp.py:78 msgid "Could not connect to outgoing email server" -msgstr "Giden e-posta sunucusu için bağlantı kurulamadı" +msgstr "" -#: model/document.py:922 +#: model/document.py:932 msgid "Could not find {0}" -msgstr "Bulunamıyor {0}" +msgstr "{0} bulunamadı." -#: core/doctype/data_import/importer.py:886 +#: core/doctype/data_import/importer.py:883 msgid "Could not map column {0} to field {1}" -msgstr "{0} sütunu {1} alanına eşlenemedi" +msgstr "" #: public/js/frappe/web_form/web_form.js:355 msgid "Couldn't save, please check the data you have entered" -msgstr "Kaydedilemedi, lütfen girdiğiniz verileri kontrol edin" +msgstr "" #: public/js/frappe/ui/group_by/group_by.js:19 -#: public/js/frappe/ui/group_by/group_by.js:318 +#: public/js/frappe/ui/group_by/group_by.js:316 +#: workflow/doctype/workflow/workflow.js:162 msgid "Count" -msgstr "Sayım" +msgstr "Sayı" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Count" -msgstr "Sayım" +msgstr "Sayı" #. Option for the 'Function' (Select) field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Count" -msgstr "Sayım" +msgstr "Sayı" -#: public/js/frappe/widgets/widget_dialog.js:499 +#: public/js/frappe/widgets/widget_dialog.js:538 msgid "Count Customizations" -msgstr "Özelleştirmeleri Sayma" +msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:484 +#: public/js/frappe/widgets/widget_dialog.js:523 msgid "Count Filter" -msgstr "Sayma Filtresi" +msgstr "" #. Label of a Section Break field in DocType 'Workspace Shortcut' #. Label of a Code field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Count Filter" -msgstr "Sayma Filtresi" +msgstr "" #. Label of a Int field in DocType 'Document Naming Rule' #: core/doctype/document_naming_rule/document_naming_rule.json msgctxt "Document Naming Rule" msgid "Counter" -msgstr "Sayaç" +msgstr "" #. Name of a DocType #: geo/doctype/country/country.json @@ -6511,19 +6770,19 @@ msgstr "" #: geo/doctype/country/country.json msgctxt "Country" msgid "Country Name" -msgstr "Ülke Adı" +msgstr "Ülke İsmi" #. Label of a Data field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "County" -msgstr "Kontluk" +msgstr "İlçe" #: public/js/frappe/utils/number_systems.js:23 #: public/js/frappe/utils/number_systems.js:45 msgctxt "Number system" msgid "Cr" -msgstr "" +msgstr "Alacak" #: core/doctype/communication/communication.js:117 #: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 @@ -6531,8 +6790,8 @@ msgstr "" #: public/js/frappe/form/reminders.js:49 #: public/js/frappe/views/file/file_view.js:112 #: public/js/frappe/views/interaction.js:18 -#: public/js/frappe/views/reports/query_report.js:1172 -#: public/js/frappe/views/workspace/workspace.js:1217 +#: public/js/frappe/views/reports/query_report.js:1186 +#: public/js/frappe/views/workspace/workspace.js:1228 #: workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Oluştur" @@ -6555,9 +6814,9 @@ msgctxt "User Document Type" msgid "Create" msgstr "Oluştur" -#: core/doctype/doctype/doctype_list.js:85 +#: core/doctype/doctype/doctype_list.js:102 msgid "Create & Continue" -msgstr "" +msgstr "Oluştur & Devam Et" #. Title of an Onboarding Step #: website/onboarding_step/create_blogger/create_blogger.json @@ -6570,7 +6829,7 @@ msgid "Create Card" msgstr "Kart Oluştur" #: public/js/frappe/views/reports/query_report.js:284 -#: public/js/frappe/views/reports/query_report.js:1099 +#: public/js/frappe/views/reports/query_report.js:1113 msgid "Create Chart" msgstr "Grafik Oluştur" @@ -6578,14 +6837,14 @@ msgstr "Grafik Oluştur" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Create Contacts from Incoming Emails" -msgstr "Gelen E-postalardan Kişi Oluşturun" +msgstr "Gelen E-postalardan Kişiler Oluşturun" #. Title of an Onboarding Step #: custom/onboarding_step/custom_field/custom_field.json msgid "Create Custom Fields" -msgstr "" +msgstr "Özel Alanlar Oluşturun" -#: public/js/frappe/views/workspace/workspace.js:925 +#: public/js/frappe/views/workspace/workspace.js:936 msgid "Create Duplicate" msgstr "" @@ -6593,13 +6852,13 @@ msgstr "" #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Create Entry" -msgstr "Giriş Oluştur" +msgstr "" #. Label of a Check field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Create Log" -msgstr "Log Oluştur" +msgstr "" #: printing/page/print_format_builder_beta/print_format_builder_beta.js:41 #: public/js/frappe/views/treeview.js:361 @@ -6607,72 +6866,91 @@ msgstr "Log Oluştur" msgid "Create New" msgstr "Yeni Oluştur" -#: core/doctype/doctype/doctype_list.js:83 +#: public/js/frappe/list/list_view.js:485 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "Yeni Oluştur" + +#: core/doctype/doctype/doctype_list.js:100 msgid "Create New DocType" -msgstr "" +msgstr "Yeni DocType Oluştur" #: public/js/frappe/list/list_view_select.js:204 msgid "Create New Kanban Board" -msgstr "" +msgstr "Yeni Kanban Panosu Oluştur" -#: core/doctype/user/user.js:251 +#: core/doctype/user/user.js:256 msgid "Create User Email" msgstr "Kullanıcı E-postası Oluştur" -#: public/js/frappe/views/workspace/workspace.js:465 +#: public/js/frappe/views/workspace/workspace.js:476 msgid "Create Workspace" -msgstr "Çalışma Alanı Oluştur" +msgstr "Yeni Çalışma Alanı" + +#: printing/page/print_format_builder/print_format_builder_start.html:16 +msgid "Create a New Format" +msgstr "" #: public/js/frappe/form/reminders.js:9 msgid "Create a Reminder" -msgstr "" +msgstr "Bir Hatırlatıcı Oluştur" -#: public/js/frappe/ui/toolbar/search_utils.js:521 +#: public/js/frappe/ui/toolbar/search_utils.js:537 msgid "Create a new ..." msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:156 msgid "Create a new record" -msgstr "Yeni bir Kayıt Oluştur" +msgstr "Yeni Kayıt Oluştur" -#: public/js/frappe/form/controls/link.js:291 -#: public/js/frappe/form/controls/link.js:293 +#: public/js/frappe/form/controls/link.js:292 +#: public/js/frappe/form/controls/link.js:294 #: public/js/frappe/form/link_selector.js:139 -#: public/js/frappe/list/list_view.js:470 +#: public/js/frappe/list/list_view.js:474 +#: public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" -msgstr "Yeni bir {0} Oluştur" +msgstr "Yeni {0} Oluştur" #: www/login.html:142 msgid "Create a {0} Account" msgstr "" +#. Description of a DocType +#: email/doctype/newsletter/newsletter.json +msgid "Create and send emails to a specific group of subscribers periodically." +msgstr "Belirli aralıklarla belirli bir abone grubuna e-posta oluşturun ve gönderin." + #: printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" -msgstr "" +msgstr "Yazdırma Formatı Oluştur veya Düzenle" #: workflow/page/workflow_builder/workflow_builder.js:34 msgid "Create or Edit Workflow" msgstr "" -#: public/js/frappe/list/list_view.js:473 +#: public/js/frappe/list/list_view.js:477 msgid "Create your first {0}" -msgstr "İlk {0} kaydını oluşturun" +msgstr "{0} Oluştur" #: workflow/doctype/workflow/workflow.js:16 msgid "Create your workflow visually using the Workflow Builder." msgstr "" +#: public/js/frappe/views/file/file_view.js:318 +msgid "Created" +msgstr "" + #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Created" -msgstr "düzenlendi" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Created" -msgstr "düzenlendi" +msgstr "" #. Label of a Datetime field in DocType 'Submission Queue' #: core/doctype/submission_queue/submission_queue.json @@ -6680,64 +6958,79 @@ msgctxt "Submission Queue" msgid "Created At" msgstr "" -#: model/__init__.py:138 model/meta.py:51 -#: public/js/frappe/list/list_sidebar_group_by.js:73 +#: model/meta.py:51 public/js/frappe/list/list_sidebar_group_by.js:73 #: public/js/frappe/model/meta.js:203 public/js/frappe/model/model.js:113 msgid "Created By" -msgstr "Oluşturan" +msgstr "" #: workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" -msgstr "Tasarlanmış özel alan {0} {1}" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.js:241 model/__init__.py:140 -#: model/meta.py:46 public/js/frappe/model/meta.js:198 -#: public/js/frappe/model/model.js:115 +#: desk/doctype/dashboard_chart/dashboard_chart.js:241 +#: email/doctype/notification/notification.js:30 model/meta.py:46 +#: public/js/frappe/model/meta.js:198 public/js/frappe/model/model.js:115 #: public/js/frappe/views/dashboard/dashboard_view.js:478 msgid "Created On" -msgstr "Oluşturulma Tarihi" +msgstr "Oluşturulma Zamanı" #: public/js/frappe/desk.js:497 public/js/frappe/views/treeview.js:376 msgid "Creating {0}" -msgstr "{0} oluşturuluyor" +msgstr "" + +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 +msgid "Creation of this document is only permitted in developer mode." +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json msgctxt "Energy Point Log" msgid "Criticism" -msgstr "eleştiri" +msgstr "" #: public/js/frappe/form/sidebar/review.js:66 msgid "Criticize" -msgstr "Eleştir" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Cron" -msgstr "Cron" +msgstr "Zamanlanmış Görev" #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Cron" -msgstr "Cron" +msgstr "Zamanlanmış Görev" #. Label of a Data field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Cron Format" -msgstr "Cron Biçimi" +msgstr "" #. Label of a Data field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Cron Format" -msgstr "Cron Biçimi" +msgstr "" + +#: core/doctype/scheduled_job_type/scheduled_job_type.py:57 +msgid "Cron format is required for job types with Cron frequency." +msgstr "" + +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Down" +msgstr "" + +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Up" +msgstr "" #: templates/includes/comments/comments.html:32 msgid "Ctrl+Enter to add comment" -msgstr "Yorum eklemek için Ctrl+Enter tuşlarına basın" +msgstr "Ctrl+Enter ile yorumu gönderin" #. Name of a DocType #: desk/page/setup_wizard/setup_wizard.js:403 @@ -6785,19 +7078,24 @@ msgstr "Para Birimi" #: geo/doctype/currency/currency.json msgctxt "Currency" msgid "Currency Name" -msgstr "Para Birimi Adı" +msgstr "" #. Label of a Select field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Currency Precision" -msgstr "Para Hassasiyeti" +msgstr "Para Birimi Hassasiyeti" + +#. Description of a DocType +#: geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "Current" -msgstr "Geçerli" +msgstr "Şimdiki" #. Label of a Link field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json @@ -6809,15 +7107,19 @@ msgstr "" #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Current Value" +msgstr "Mevcut Değer" + +#: public/js/frappe/form/workflow.js:45 +msgid "Current status" msgstr "" #: public/js/frappe/form/form_viewers.js:5 msgid "Currently Viewing" -msgstr "Şu anda görüntüleme" +msgstr "Şu Anda Görüntülüyor" #: public/js/frappe/form/sidebar/review.js:77 msgid "Currently you have {0} review points" -msgstr "Şu anda {0} inceleme puanınız var" +msgstr "" #: core/doctype/user_type/user_type_list.js:7 #: public/js/frappe/form/reminders.js:20 @@ -6902,48 +7204,48 @@ msgstr "Özel" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Custom Base URL" -msgstr "Özel Ana URL" +msgstr "" #. Label of a Link field in DocType 'Workspace Custom Block' #: desk/doctype/workspace_custom_block/workspace_custom_block.json msgctxt "Workspace Custom Block" msgid "Custom Block Name" -msgstr "" +msgstr "Özel Blok Adı" #. Label of a Tab Break field in DocType 'Workspace' #. Label of a Table field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Custom Blocks" -msgstr "" +msgstr "Özel Bloklar" #. Label of a Code field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Custom CSS" -msgstr "Özel CSS" +msgstr "" #. Label of a Code field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Custom CSS" -msgstr "Özel CSS" +msgstr "" #. Label of a Section Break field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Custom Configuration" -msgstr "Özel Yapılandırma" +msgstr "Özel Konfigürasyon" #. Name of a DocType #: core/doctype/custom_docperm/custom_docperm.json msgid "Custom DocPerm" -msgstr "Özel DocPerm" +msgstr "" #. Title of an Onboarding Step #: custom/onboarding_step/custom_doctype/custom_doctype.json msgid "Custom Document Types" -msgstr "" +msgstr "Özel Belge Türleri" #. Label of a Table field in DocType 'User Type' #: core/doctype/user_type/user_type.json @@ -6955,9 +7257,9 @@ msgstr "" msgid "Custom Document Types Limit Exceeded" msgstr "" -#: desk/desktop.py:483 +#: desk/desktop.py:485 msgid "Custom Documents" -msgstr "Özel Belgeler" +msgstr "" #. Name of a DocType #: custom/doctype/custom_field/custom_field.json @@ -6982,34 +7284,34 @@ msgctxt "Module Def" msgid "Custom Field" msgstr "Özel Alan" -#: custom/doctype/custom_field/custom_field.py:216 +#: custom/doctype/custom_field/custom_field.py:218 msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." -msgstr "Özel Alan {0}, Yönetici tarafından oluşturulur ve yalnızca Yönetici hesabı aracılığıyla silinebilir." +msgstr "" #. Subtitle of the Module Onboarding 'Customization' #: custom/module_onboarding/customization/customization.json msgid "Custom Field, Custom Doctype, Naming Series, Role Permission, Workflow, Print Formats, Reports" -msgstr "" +msgstr "Özel Alan, Özel Belge Tipi, Adlandırma Serisi, Rol İzni, İş Akışı, Baskı Formatları, Raporlar" #: custom/doctype/custom_field/custom_field.py:260 msgid "Custom Fields can only be added to a standard DocType." -msgstr "Özel Alanlar sadece standart bir DocType'a eklenebilir." +msgstr "" #: custom/doctype/custom_field/custom_field.py:257 msgid "Custom Fields cannot be added to core DocTypes." -msgstr "Özel Dokümanlar, çekirdek DocTypes'e eklenemez." +msgstr "" #. Label of a Section Break field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Custom Footer" -msgstr "Özel Alt bilgi" +msgstr "" #. Label of a Check field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Custom Format" -msgstr "Özel Formatı" +msgstr "Özel Format" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -7017,7 +7319,7 @@ msgctxt "LDAP Settings" msgid "Custom Group Search" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:119 +#: integrations/doctype/ldap_settings/ldap_settings.py:121 msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com" msgstr "" @@ -7029,15 +7331,15 @@ msgstr "Özel HTML" #. Name of a DocType #: desk/doctype/custom_html_block/custom_html_block.json msgid "Custom HTML Block" -msgstr "" +msgstr "Özel HTML Blok" #. Label of a HTML field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Custom HTML Help" -msgstr "Özel HTML Yardımı" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:111 +#: integrations/doctype/ldap_settings/ldap_settings.py:113 msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered" msgstr "" @@ -7045,13 +7347,13 @@ msgstr "" #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Custom Label" -msgstr "" +msgstr "Etiket" #. Label of a Data field in DocType 'Web Form List Column' #: website/doctype/web_form_list_column/web_form_list_column.json msgctxt "Web Form List Column" msgid "Custom Label" -msgstr "" +msgstr "Etiket" #. Label of a Table field in DocType 'Portal Settings' #: website/doctype/portal_settings/portal_settings.json @@ -7069,7 +7371,7 @@ msgstr "Özel Seçenekler" #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Custom Overrides" -msgstr "Özel Geçersiz Kılmalar" +msgstr "" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: core/doctype/report/report.json @@ -7077,20 +7379,20 @@ msgctxt "Report" msgid "Custom Report" msgstr "Özel Rapor" -#: desk/desktop.py:484 +#: desk/desktop.py:486 msgid "Custom Reports" msgstr "Özel Raporlar" #. Name of a DocType #: core/doctype/custom_role/custom_role.json msgid "Custom Role" -msgstr "Özel Roller" +msgstr "Özel Rol" #. Label of a Code field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Custom SCSS" -msgstr "Özel SCSS" +msgstr "" #. Label of a Section Break field in DocType 'Portal Settings' #: website/doctype/portal_settings/portal_settings.json @@ -7104,21 +7406,25 @@ msgctxt "Translation" msgid "Custom Translation" msgstr "" -#: core/doctype/doctype/doctype_list.js:65 +#: custom/doctype/custom_field/custom_field.py:373 +msgid "Custom field renamed to {0} successfully." +msgstr "" + +#: core/doctype/doctype/doctype_list.js:82 msgid "Custom?" -msgstr "Özel?" +msgstr "Özel" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Custom?" -msgstr "Özel?" +msgstr "Özel" #. Label of a Check field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Custom?" -msgstr "Özel?" +msgstr "Özel" #. Label of a Card Break in the Build Workspace #. Title of the Module Onboarding 'Customization' @@ -7150,36 +7456,40 @@ msgstr "Özelleştirme" msgid "Customization onboarding is all done!" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:511 +#: public/js/frappe/views/workspace/workspace.js:522 msgid "Customizations Discarded" -msgstr "Özelleştirmeler Silindi" +msgstr "Özelleştirme İptal Edildi" #: custom/doctype/customize_form/customize_form.js:397 msgid "Customizations Reset" -msgstr "Özelleştirmeler Sıfırla" +msgstr "Özelleştirmeler Sıfırlandı" -#: modules/utils.py:95 +#: modules/utils.py:91 msgid "Customizations for {0} exported to:
      {1}" -msgstr "{0} için verilen özelleştirmeler şu kişilere ihraç edildi:
      {1}" +msgstr "" -#: printing/page/print/print.js:171 public/js/frappe/form/toolbar.js:527 +#: printing/page/print/print.js:171 +#: public/js/frappe/form/templates/print_layout.html:39 +#: public/js/frappe/form/toolbar.js:527 +#: public/js/frappe/views/dashboard/dashboard_view.js:196 msgid "Customize" msgstr "Özelleştir" -#: public/js/frappe/list/list_view.js:1664 +#: public/js/frappe/list/list_view.js:1710 msgctxt "Button in list view menu" msgid "Customize" msgstr "Özelleştir" #: custom/doctype/customize_form/customize_form.js:89 msgid "Customize Child Table" -msgstr "" +msgstr "Alt Tabloyu Özelleştir" #: public/js/frappe/views/dashboard/dashboard_view.js:37 msgid "Customize Dashboard" -msgstr "" +msgstr "Gösterge Paneli Özelleştir" #. Name of a DocType +#: automation/doctype/auto_repeat/auto_repeat.js:33 #: custom/doctype/customize_form/customize_form.json #: public/js/frappe/views/kanban/kanban_view.js:340 msgid "Customize Form" @@ -7199,28 +7509,28 @@ msgstr "" #. Name of a DocType #: custom/doctype/customize_form_field/customize_form_field.json msgid "Customize Form Field" -msgstr "Form alanını özelleştir" +msgstr "" #. Title of an Onboarding Step #: custom/onboarding_step/print_format/print_format.json msgid "Customize Print Formats" -msgstr "" +msgstr "Baskı Biçimlerini Özelleştirin" #: public/js/frappe/views/file/file_view.js:144 msgid "Cut" -msgstr "Kes" +msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' #: core/doctype/doctype_state/doctype_state.json msgctxt "DocType State" msgid "Cyan" -msgstr "" +msgstr "Açık Mavi" #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Cyan" -msgstr "" +msgstr "Açık Mavi" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: core/doctype/recorder/recorder.json @@ -7238,13 +7548,13 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "DESC" -msgstr "AZALAN" +msgstr "Azalan" #. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "DESC" -msgstr "AZALAN" +msgstr "Azalan" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -7254,7 +7564,7 @@ msgstr "" #: templates/print_formats/standard_macros.html:207 msgid "DRAFT" -msgstr "Taslak" +msgstr "" #: public/js/frappe/utils/common.js:398 #: website/report/website_analytics/website_analytics.js:23 @@ -7339,11 +7649,11 @@ msgstr "Günlük" #: templates/emails/upcoming_events.html:8 msgid "Daily Event Digest is sent for Calendar Events where reminders are set." -msgstr "Günlük Planlar takvime gönderilir ve bunlar için alarm ayarlanır." +msgstr "" #: desk/doctype/event/event.py:93 msgid "Daily Events should finish on the Same Day." -msgstr "Günlük Olaylar Aynı Gün'de Bitmelidir." +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json @@ -7361,19 +7671,19 @@ msgstr "Günlük Uzun" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "Danger" -msgstr "Tehlike" +msgstr "" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Dark" -msgstr "" +msgstr "Koyu" #. Label of a Link field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Dark Color" -msgstr "Koyu renk" +msgstr "" #: public/js/frappe/ui/theme_switcher.js:65 msgid "Dark Theme" @@ -7382,7 +7692,7 @@ msgstr "" #. Name of a DocType #: core/page/dashboard_view/dashboard_view.js:10 #: desk/doctype/dashboard/dashboard.json -#: public/js/frappe/ui/toolbar/search_utils.js:546 +#: public/js/frappe/ui/toolbar/search_utils.js:562 msgid "Dashboard" msgstr "Gösterge Paneli" @@ -7426,41 +7736,41 @@ msgstr "Gösterge Paneli Grafiği" #. Name of a DocType #: desk/doctype/dashboard_chart_field/dashboard_chart_field.json msgid "Dashboard Chart Field" -msgstr "Gösterge Tablosu Grafik Alanı" +msgstr "" #. Name of a DocType #: desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Dashboard Chart Link" -msgstr "Gösterge Paneli Grafik Bağlantısı" +msgstr "" #. Name of a DocType #: desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Dashboard Chart Source" -msgstr "Kontrol Paneli Grafik Kaynağı" +msgstr "Gösterge Paneli Grafik Kaynağı" #. Name of a role #: desk/doctype/dashboard/dashboard.json #: desk/doctype/dashboard_chart/dashboard_chart.json #: desk/doctype/number_card/number_card.json msgid "Dashboard Manager" -msgstr "Gösterge Tablosu Yöneticisi" +msgstr "Gösterge Paneli Yöneticisi" #. Label of a Data field in DocType 'Dashboard' #: desk/doctype/dashboard/dashboard.json msgctxt "Dashboard" msgid "Dashboard Name" -msgstr "Kontrol Paneli Adı" +msgstr "Göstgerge Paneli İsmi" #. Name of a DocType #: desk/doctype/dashboard_settings/dashboard_settings.json msgid "Dashboard Settings" -msgstr "Gösterge Tablosu Ayarları" +msgstr "" #. Label of a Tab Break field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Dashboards" -msgstr "Gösterge tabloları" +msgstr "Gösterge Paneli" #. Label of a Card Break in the Tools Workspace #: automation/workspace/tools/tools.json @@ -7541,23 +7851,23 @@ msgstr "Veri" #: public/js/frappe/form/controls/data.js:58 msgid "Data Clipped" -msgstr "" +msgstr "Veri Kırpıldı" #. Name of a DocType #: core/doctype/data_export/data_export.json msgid "Data Export" -msgstr "Veri Aktarma" +msgstr "Veri Dışa Aktarma" #. Name of a DocType #: core/doctype/data_import/data_import.json msgid "Data Import" -msgstr "Veri Alma" +msgstr "Veri İçe Aktarma" #. Label of a Link field in DocType 'Data Import Log' #: core/doctype/data_import_log/data_import_log.json msgctxt "Data Import Log" msgid "Data Import" -msgstr "Veri Alma" +msgstr "Veri İçe Aktarma" #. Name of a DocType #: core/doctype/data_import_log/data_import_log.json @@ -7566,21 +7876,21 @@ msgstr "" #: core/doctype/data_export/exporter.py:174 msgid "Data Import Template" -msgstr "Veri Alma Şablon" +msgstr "" -#: custom/doctype/customize_form/customize_form.py:614 +#: custom/doctype/customize_form/customize_form.py:610 msgid "Data Too Long" -msgstr "Veri Çok Uzun" +msgstr "" -#: model/base_document.py:703 +#: model/base_document.py:723 msgid "Data missing in table" -msgstr "Veri tablosunda eksik" +msgstr "" #. Label of a Select field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Database Engine" -msgstr "veritabanı Altyapısı" +msgstr "" #. Label of a Section Break field in DocType 'System Console' #: desk/doctype/system_console/system_console.json @@ -7672,65 +7982,65 @@ msgstr "Tarih Biçimi" #: desk/page/leaderboard/leaderboard.js:165 msgid "Date Range" -msgstr "" +msgstr "Tarih Aralığı" #. Label of a Section Break field in DocType 'Audit Trail' #: core/doctype/audit_trail/audit_trail.json msgctxt "Audit Trail" msgid "Date Range" -msgstr "" +msgstr "Tarih Aralığı" #. Label of a Section Break field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Date and Number Format" -msgstr "Tarih ve Sayı Biçimi" +msgstr "Tarih ve Sayı Formatı" -#: public/js/frappe/form/controls/date.js:163 +#: public/js/frappe/form/controls/date.js:164 msgid "Date {0} must be in format: {1}" -msgstr "{0} tarihi, şu şekilde olmalıdır: {1}" +msgstr "" -#: utils/password_strength.py:131 +#: utils/password_strength.py:129 msgid "Dates are often easy to guess." -msgstr "Tarihler genellikle tahmin etmek kolaydır." +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Datetime" -msgstr "Tarihzaman" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Datetime" -msgstr "Tarihzaman" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Datetime" -msgstr "Tarihzaman" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #: core/doctype/report_column/report_column.json msgctxt "Report Column" msgid "Datetime" -msgstr "Tarihzaman" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' #: core/doctype/report_filter/report_filter.json msgctxt "Report Filter" msgid "Datetime" -msgstr "Tarihzaman" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Datetime" -msgstr "Tarihzaman" +msgstr "" -#: public/js/frappe/views/calendar/calendar.js:270 +#: public/js/frappe/views/calendar/calendar.js:271 msgid "Day" msgstr "Gün" @@ -7756,19 +8066,19 @@ msgstr "Haftanın günü" #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Days After" -msgstr "Gün Sonra" +msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Days Before" -msgstr "Gün Öncesi" +msgstr "" #. Label of a Int field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Days Before or After" -msgstr "Gün Öncesi veya sonrası" +msgstr "" #: public/js/frappe/request.js:249 msgid "Deadlock Occurred" @@ -7780,16 +8090,16 @@ msgstr "Sevgili" #: templates/emails/administrator_logged_in.html:1 msgid "Dear System Manager," -msgstr "Sevgili Sistem Yöneticisi," +msgstr "" #: templates/emails/account_deletion_notification.html:1 #: templates/emails/delete_data_confirmation.html:1 msgid "Dear User," -msgstr "Sevgili Kullanıcı," +msgstr "" #: templates/emails/download_data.html:1 msgid "Dear {0}" -msgstr "Sevgili {0}" +msgstr "" #. Label of a Code field in DocType 'Scheduled Job Log' #: core/doctype/scheduled_job_log/scheduled_job_log.json @@ -7797,6 +8107,10 @@ msgctxt "Scheduled Job Log" msgid "Debug Log" msgstr "" +#: templates/form_grid/fields.html:30 +msgid "Default" +msgstr "Varsayılan" + #. Label of a Small Text field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" @@ -7833,9 +8147,9 @@ msgctxt "Web Template Field" msgid "Default" msgstr "Varsayılan" -#: contacts/doctype/address_template/address_template.py:40 +#: contacts/doctype/address_template/address_template.py:41 msgid "Default Address Template cannot be deleted" -msgstr "Varsayılan Adres Şablon silinemez" +msgstr "" #. Label of a Select field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json @@ -7847,33 +8161,33 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Default Email Template" -msgstr "" +msgstr "Varsayılan E-posta Şablonu" #. Label of a Link field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Default Email Template" -msgstr "" +msgstr "Varsayılan E-posta Şablonu" #: email/doctype/email_account/email_account_list.js:13 msgid "Default Inbox" -msgstr "Standart Gelen kutusu" +msgstr "" -#: email/doctype/email_account/email_account.py:194 +#: email/doctype/email_account/email_account.py:201 msgid "Default Incoming" -msgstr "Standart Gelen" +msgstr "" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Default Incoming" -msgstr "Standart Gelen" +msgstr "" #. Label of a Check field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Default Letter Head" -msgstr "Varsayılan Mektubu Başlığı" +msgstr "Varsayılan Antetli Kağıt" #. Option for the 'Action' (Select) field in DocType 'Amended Document Naming #. Settings' @@ -7889,59 +8203,59 @@ msgctxt "Document Naming Settings" msgid "Default Naming" msgstr "" -#: email/doctype/email_account/email_account.py:201 +#: email/doctype/email_account/email_account.py:209 msgid "Default Outgoing" -msgstr "Standart Giden" +msgstr "Varsayılan Giden" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Default Outgoing" -msgstr "Standart Giden" +msgstr "Varsayılan Giden" #. Label of a Data field in DocType 'Portal Settings' #: website/doctype/portal_settings/portal_settings.json msgctxt "Portal Settings" msgid "Default Portal Home" -msgstr "Varsayılan Portal Ana Sayfası" +msgstr "Varsayılan Portal Adresi" #. Label of a Link field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Default Print Format" -msgstr "Varsayılan Yazdırma Biçimi" +msgstr "Varsayılan Yazdırma Formatı" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Default Print Format" -msgstr "Varsayılan Yazdırma Biçimi" +msgstr "Varsayılan Yazdırma Formatı" #. Label of a Link field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Default Print Language" -msgstr "Varsayılan Baskı Dili" +msgstr "Varsayılan Yazdırma Dili" #. Label of a Data field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "Default Redirect URI" -msgstr "Standart Yönlendirme URI" +msgstr "" #. Label of a Link field in DocType 'Portal Settings' #: website/doctype/portal_settings/portal_settings.json msgctxt "Portal Settings" msgid "Default Role at Time of Signup" -msgstr "Üye Olurken Varsayılan Rol" +msgstr "Yeni Kayıtlardaki Varsayılan Rol" #: email/doctype/email_account/email_account_list.js:16 msgid "Default Sending" -msgstr "Standart gönderme" +msgstr "Varsayılan Gönderme" #: email/doctype/email_account/email_account_list.js:7 msgid "Default Sending and Inbox" -msgstr "Standart gönderme ve Gelen Kutusu" +msgstr "" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json @@ -7953,7 +8267,7 @@ msgstr "Varsayılan Sıralama Alanı" #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Default Sort Order" -msgstr "Varsayılan sıralama düzeni" +msgstr "Varsayılan Sıralama" #. Label of a Data field in DocType 'Print Format Field Template' #: printing/doctype/print_format_field_template/print_format_field_template.json @@ -7963,7 +8277,7 @@ msgstr "" #: website/doctype/website_theme/website_theme.js:28 msgid "Default Theme" -msgstr "Varsayılan Tema" +msgstr "" #. Label of a Link field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -7993,36 +8307,42 @@ msgstr "Varsayılan Değer" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Default View" -msgstr "" +msgstr "Varsayılan Görünüm" #. Label of a Select field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Default View" +msgstr "Varsayılan Görünüm" + +#. Label of a Link field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Default Workspace" msgstr "" -#: core/doctype/doctype/doctype.py:1327 +#: core/doctype/doctype/doctype.py:1325 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" -msgstr "{0} alanının 'Kontrol' türü için varsayılan değer '0' veya '1' olmalıdır" +msgstr "" -#: core/doctype/doctype/doctype.py:1340 +#: core/doctype/doctype/doctype.py:1338 msgid "Default value for {0} must be in the list of options." -msgstr "{0} için varsayılan değer, seçenekler listesinde olmalıdır." +msgstr "" -#: core/doctype/session_default_settings/session_default_settings.py:37 +#: core/doctype/session_default_settings/session_default_settings.py:38 msgid "Default {0}" -msgstr "Varsayılan {0}" +msgstr "" #. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' #: website/doctype/contact_us_settings/contact_us_settings.json msgctxt "Contact Us Settings" msgid "Default: \"Contact Us\"" -msgstr "Default: \"Bize Ulaşın\"" +msgstr "" #. Name of a DocType #: core/doctype/defaultvalue/defaultvalue.json msgid "DefaultValue" -msgstr "VarsayılanDeğer" +msgstr "" #. Label of a Section Break field in DocType 'DocField' #: core/doctype/docfield/docfield.json @@ -8036,26 +8356,38 @@ msgctxt "User" msgid "Defaults" msgstr "Varsayılan Değerler" -#: email/doctype/email_account/email_account.py:207 +#: email/doctype/email_account/email_account.py:220 msgid "Defaults Updated" msgstr "" +#. Description of a DocType +#: workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of a DocType +#: workflow/doctype/workflow/workflow.json +msgid "Defines workflow states and rules for a document." +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Delayed" -msgstr "Gecikmiş" +msgstr "" #: core/doctype/user_permission/user_permission_list.js:189 -#: public/js/frappe/form/toolbar.js:423 -#: public/js/frappe/views/reports/report_view.js:1645 +#: public/js/frappe/form/footer/form_timeline.js:613 +#: public/js/frappe/form/grid.js:63 public/js/frappe/form/toolbar.js:423 +#: public/js/frappe/views/reports/report_view.js:1642 #: public/js/frappe/views/treeview.js:313 -#: public/js/frappe/views/workspace/workspace.js:823 +#: public/js/frappe/views/workspace/workspace.js:834 #: templates/discussions/reply_card.html:35 +#: templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Sil" -#: public/js/frappe/list/list_view.js:1857 +#: public/js/frappe/list/list_view.js:1927 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Sil" @@ -8082,96 +8414,104 @@ msgstr "Sil" msgid "Delete Account" msgstr "" +#: public/js/frappe/form/grid.js:63 +msgid "Delete All" +msgstr "" + #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 msgid "Delete Data" -msgstr "Verileri Sil" +msgstr "" #: public/js/frappe/views/kanban/kanban_view.js:103 msgid "Delete Kanban Board" -msgstr "" +msgstr "Kanban Panosunu Sil" -#: public/js/frappe/views/workspace/workspace.js:824 +#: public/js/frappe/views/workspace/workspace.js:835 msgid "Delete Workspace" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:696 -msgid "Delete comment?" -msgstr "Yorum silinsin mi?" - -#: email/doctype/email_unsubscribe/email_unsubscribe.py:30 -msgid "Delete this record to allow sending to this email address" -msgstr "Bu e-posta adresine gönderilmesine izin Bu kayıt silinsin" - -#: public/js/frappe/list/list_view.js:1862 -msgctxt "Title of confirmation dialog" -msgid "Delete {0} item permanently?" +#: public/js/frappe/views/reports/query_report.js:862 +msgid "Delete and Generate New" msgstr "" -#: public/js/frappe/list/list_view.js:1868 +#: public/js/frappe/form/footer/form_timeline.js:719 +msgid "Delete comment?" +msgstr "" + +#: email/doctype/email_unsubscribe/email_unsubscribe.py:29 +msgid "Delete this record to allow sending to this email address" +msgstr "" + +#: public/js/frappe/list/list_view.js:1932 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} item permanently?" +msgstr "{0} girişi kalıcı olarak silinsin mi?" + +#: public/js/frappe/list/list_view.js:1938 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" -msgstr "Bu {0} öğeyi kalıcı olarak silmek istediğinize emin misiniz?" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Deleted" -msgstr "Silinen" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Deleted" -msgstr "Silinen" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgctxt "Personal Data Deletion Request" msgid "Deleted" -msgstr "Silinen" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgctxt "Personal Data Deletion Step" msgid "Deleted" -msgstr "Silinen" +msgstr "" #. Label of a Data field in DocType 'Deleted Document' #: core/doctype/deleted_document/deleted_document.json msgctxt "Deleted Document" msgid "Deleted DocType" -msgstr "Silinen Belge Türü" +msgstr "" #. Name of a DocType #: core/doctype/deleted_document/deleted_document.json msgid "Deleted Document" -msgstr "Silinen Belge" +msgstr "Silinmiş Belge" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "Deleted Document" msgid "Deleted Documents" -msgstr "Silinen Belgeler" +msgstr "" #. Label of a Data field in DocType 'Deleted Document' #: core/doctype/deleted_document/deleted_document.json msgctxt "Deleted Document" msgid "Deleted Name" -msgstr "Silinen ad" +msgstr "" -#: desk/reportview.py:488 +#: desk/reportview.py:506 msgid "Deleting {0}" -msgstr "Siliniyor {0}" +msgstr "{0} Siliniyor" -#: public/js/frappe/list/bulk_operations.js:158 +#: public/js/frappe/list/bulk_operations.js:172 msgid "Deleting {0} records..." -msgstr "" +msgstr "{0} Kayıt Siliniyor..." -#: public/js/frappe/model/model.js:706 +#: public/js/frappe/model/model.js:711 msgid "Deleting {0}..." -msgstr "" +msgstr "Siliniyor {0}..." #. Label of a Table field in DocType 'Personal Data Deletion Request' #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8180,6 +8520,7 @@ msgid "Deletion Steps " msgstr "" #: core/doctype/page/page.py:108 +#: desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 msgid "Deletion of this document is only permitted in developer mode." msgstr "" @@ -8191,7 +8532,7 @@ msgstr "" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Delivery Status" -msgstr "Teslim Durumu" +msgstr "Teslimat Durumu" #: templates/includes/oauth_confirmation.html:14 msgid "Deny" @@ -8213,29 +8554,30 @@ msgstr "Departman" #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Dependencies" -msgstr "" +msgstr "Bağımlılıklar" #. Label of a Code field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Depends On" -msgstr "Bağlıdır" +msgstr "" #. Label of a Code field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Depends On" -msgstr "Bağlıdır" +msgstr "" #: public/js/frappe/ui/filters/filter.js:32 msgid "Descendants Of" -msgstr "Torunları" +msgstr "" #: public/js/frappe/ui/filters/filter.js:33 msgid "Descendants Of (inclusive)" msgstr "" #: desk/report/todo/todo.py:39 public/js/frappe/form/reminders.js:44 +#: public/js/frappe/widgets/widget_dialog.js:260 msgid "Description" msgstr "Açıklama" @@ -8336,11 +8678,17 @@ msgctxt "Website Slideshow Item" msgid "Description" msgstr "Açıklama" +#. Label of a HTML Editor field in DocType 'Workspace Link' +#: desk/doctype/workspace_link/workspace_link.json +msgctxt "Workspace Link" +msgid "Description" +msgstr "Açıklama" + #. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Listeleme sayfası için açıklama, düz metin, yalnızca birkaç satır. (en fazla 200 karakter)" +msgstr "" #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' @@ -8353,25 +8701,25 @@ msgstr "" #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Designation" -msgstr "Atama" +msgstr "Ünvanı" #. Label of a Check field in DocType 'Role' #: core/doctype/role/role.json msgctxt "Role" msgid "Desk Access" -msgstr "Masa Erişimi" +msgstr "ERP Erişimi" #. Label of a Section Break field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Desk Settings" -msgstr "Desk Ayarları" +msgstr "" #. Label of a Select field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Desk Theme" -msgstr "Desk Teması" +msgstr "Tema" #. Name of a role #: automation/doctype/reminder/reminder.json core/doctype/report/report.json @@ -8406,44 +8754,45 @@ msgstr "" #. Name of a DocType #: desk/doctype/desktop_icon/desktop_icon.json msgid "Desktop Icon" -msgstr "Masaüstü simgesi" +msgstr "" -#: desk/doctype/desktop_icon/desktop_icon.py:230 +#: desk/doctype/desktop_icon/desktop_icon.py:225 msgid "Desktop Icon already exists" -msgstr "Masaüstü Simgesi zaten var" +msgstr "" -#: public/js/form_builder/store.js:254 public/js/form_builder/utils.js:38 +#: desk/page/user_profile/user_profile_sidebar.html:45 +#: public/js/form_builder/store.js:259 public/js/form_builder/utils.js:38 #: public/js/frappe/form/layout.js:135 public/js/frappe/views/treeview.js:276 msgid "Details" -msgstr "ayrıntılar" +msgstr "Ayrıntılar" #. Label of a Tab Break field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Details" -msgstr "ayrıntılar" +msgstr "Ayrıntılar" #. Label of a Section Break field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Details" -msgstr "ayrıntılar" +msgstr "Ayrıntılar" #. Label of a Code field in DocType 'Scheduled Job Log' #: core/doctype/scheduled_job_log/scheduled_job_log.json msgctxt "Scheduled Job Log" msgid "Details" -msgstr "ayrıntılar" +msgstr "Ayrıntılar" -#: core/page/permission_manager/permission_manager.js:477 +#: core/page/permission_manager/permission_manager.js:488 msgid "Did not add" -msgstr "Eklenemedi" +msgstr "" -#: core/page/permission_manager/permission_manager.js:378 +#: core/page/permission_manager/permission_manager.js:382 msgid "Did not remove" -msgstr "Kaldırılamaz" +msgstr "" -#: public/js/frappe/utils/diffview.js:56 +#: public/js/frappe/utils/diffview.js:57 msgid "Diff" msgstr "" @@ -8451,13 +8800,13 @@ msgstr "" #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." -msgstr "Bu belge içeri var farklı \"Durumlar\" \"Açık\" gibi, \"Onay Bekliyor\" vb" +msgstr "" #. Label of a Int field in DocType 'Document Naming Rule' #: core/doctype/document_naming_rule/document_naming_rule.json msgctxt "Document Naming Rule" msgid "Digits" -msgstr "Rakamlar" +msgstr "" #. Label of a Select field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -8469,31 +8818,31 @@ msgstr "" #: desk/doctype/list_view_settings/list_view_settings.json msgctxt "List View Settings" msgid "Disable Auto Refresh" -msgstr "Otomatik Yenilemeyi Devre Dışı Bırak" +msgstr "Otomatik Yenilemeyi Kapat" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Disable Change Log Notification" -msgstr "" +msgstr "Değişiklik Günlüğü Bildirimini Devre Dışı Bırak" #. Label of a Check field in DocType 'List View Settings' #: desk/doctype/list_view_settings/list_view_settings.json msgctxt "List View Settings" msgid "Disable Comment Count" -msgstr "" +msgstr "Yorum Sayısını Gösterme" #. Label of a Check field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Disable Comments" -msgstr "Yorumları Devre Dışı Bırak" +msgstr "" #. Label of a Check field in DocType 'List View Settings' #: desk/doctype/list_view_settings/list_view_settings.json msgctxt "List View Settings" msgid "Disable Count" -msgstr "Sayıyı Devre Dışı Bırak" +msgstr "Sayıyı Gösterme" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -8509,35 +8858,35 @@ msgstr "" #: core/doctype/report/report.js:36 msgid "Disable Report" -msgstr "Devre Dışı Raporu" +msgstr "Raporu Kapat" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Disable SMTP server authentication" -msgstr "SMTP sunucusu kimlik doğrulamasını devre dışı bırak" +msgstr "SMTP sunucusu kimlik doğrulamasını devre dışı bırakın" #. Label of a Check field in DocType 'List View Settings' #: desk/doctype/list_view_settings/list_view_settings.json msgctxt "List View Settings" msgid "Disable Sidebar Stats" -msgstr "Kenar Çubuğu İstatistiklerini Devre Dışı Bırak" +msgstr "Kenar Çubuğu İstatistiklerini Kapat" #: website/doctype/website_settings/website_settings.js:146 msgid "Disable Signup for your site" -msgstr "Siteniz için Kaydı Devre Dışı Bırakın" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Disable Standard Email Footer" -msgstr "Standart e-posta Altbilgi devre dışı bırakma" +msgstr "Standart E-posta Alt Bilgisini Kapat" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Disable System Update Notification" -msgstr "" +msgstr "Sistem Güncelleme Bildirimini Devre Dışı Bırak" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -8551,95 +8900,101 @@ msgctxt "Website Settings" msgid "Disable signups" msgstr "" -#: core/doctype/user/user_list.js:14 public/js/frappe/model/indicator.js:108 +#: core/doctype/user/user_list.js:14 +#: public/js/frappe/form/templates/address_list.html:29 +#: public/js/frappe/model/indicator.js:108 #: public/js/frappe/model/indicator.js:115 msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Assignment Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Auto Repeat' #. Option for the 'Status' (Select) field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Blogger' #: website/doctype/blogger/blogger.json msgctxt "Blogger" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Document Naming Rule' #: core/doctype/document_naming_rule/document_naming_rule.json msgctxt "Document Naming Rule" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Milestone Tracker' #: automation/doctype/milestone_tracker/milestone_tracker.json msgctxt "Milestone Tracker" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Print Style' #: printing/doctype/print_style/print_style.json msgctxt "Print Style" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Role' #: core/doctype/role/role.json msgctxt "Role" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #. Label of a Check field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Disabled" -msgstr "Devredışı" +msgstr "Devre dışı" #: email/doctype/email_account/email_account.js:237 msgid "Disabled Auto Reply" -msgstr "Devre Dışı Otomatik Yanıt" +msgstr "" #: public/js/frappe/views/communication.js:30 #: public/js/frappe/views/dashboard/dashboard_view.js:70 -#: public/js/frappe/views/workspace/workspace.js:502 +#: public/js/frappe/views/workspace/workspace.js:513 #: public/js/frappe/web_form/web_form.js:187 -#: website/doctype/web_form/templates/web_form.html:41 msgid "Discard" -msgstr "ıskarta" +msgstr "" + +#: website/doctype/web_form/templates/web_form.html:41 +msgctxt "Button in web form" +msgid "Discard" +msgstr "" #: public/js/frappe/web_form/web_form.js:184 msgid "Discard?" @@ -8655,27 +9010,34 @@ msgstr "" msgid "Discussion Topic" msgstr "" +#: public/js/frappe/form/footer/form_timeline.js:623 #: templates/discussions/reply_card.html:16 +#: templates/discussions/reply_section.html:29 msgid "Dismiss" -msgstr "Reddet" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:577 +msgctxt "Stop showing the onboarding widget." +msgid "Dismiss" +msgstr "" #. Label of a Section Break field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Display" -msgstr "Görüntü" +msgstr "" #. Label of a Section Break field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Display" -msgstr "Görüntü" +msgstr "" #. Label of a Code field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Display Depends On" -msgstr "Görüntü şuna bağlı" +msgstr "" #. Label of a Code field in DocType 'DocField' #: core/doctype/docfield/docfield.json @@ -8696,11 +9058,11 @@ msgctxt "LDAP Settings" msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: public/js/frappe/form/grid.js:1156 +#: public/js/frappe/form/grid.js:1162 msgid "Do not edit headers which are preset in the template" -msgstr "Şablonda önceden belirlenmiş başlıkları düzenleme" +msgstr "" -#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:64 +#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:65 msgid "Do not have permission to access bucket {0}." msgstr "" @@ -8710,50 +9072,49 @@ msgstr "" #: public/js/frappe/form/form.js:977 msgid "Do you want to cancel all linked documents?" -msgstr "Bağlantılı tüm belgeleri iptal etmek istiyor musunuz?" +msgstr "" #. Label of a Select field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Doc Event" -msgstr "Doktor Etkinliği" +msgstr "" #. Label of a Section Break field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Doc Events" -msgstr "Doc Etkinlikleri" +msgstr "" #. Label of a Select field in DocType 'Workflow Document State' #: workflow/doctype/workflow_document_state/workflow_document_state.json msgctxt "Workflow Document State" msgid "Doc Status" -msgstr "Doc Durum" +msgstr "" #. Name of a DocType #: core/doctype/docfield/docfield.json msgid "DocField" -msgstr "DocField" +msgstr "" #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "DocField" -msgstr "DocField" +msgstr "" #. Name of a DocType #: core/doctype/docperm/docperm.json msgid "DocPerm" -msgstr "DocPerm" +msgstr "" #. Name of a DocType #: core/doctype/docshare/docshare.json msgid "DocShare" -msgstr "DocShare" +msgstr "" #: workflow/doctype/workflow/workflow.js:264 -msgid "" -"DocStatus of the following states have changed:
      {0}
      \n" +msgid "DocStatus of the following states have changed:
      {0}
      \n" "\t\t\t\tDo you want to update the docstatus of existing documents in those states?
      \n" "\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n" "\t\t\t\t" @@ -8764,49 +9125,48 @@ msgstr "" #: core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 #: website/doctype/website_slideshow/website_slideshow.js:18 msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Label of a Link field in DocType 'Amended Document Naming Settings' #: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json msgctxt "Amended Document Naming Settings" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Label of a Link field in DocType 'Audit Trail' #: core/doctype/audit_trail/audit_trail.json msgctxt "Audit Trail" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Label of a Link field in DocType 'Client Script' #: custom/doctype/client_script/client_script.json msgctxt "Client Script" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Label of a Link field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Label of a Link in the Build Workspace #. Label of a shortcut in the Build Workspace #: core/workspace/build/build.json msgctxt "DocType" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Group in Module Def's connections #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Label of a Link field in DocType 'Permission Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "DocType" msgstr "Belge Türü" @@ -8815,66 +9175,66 @@ msgstr "Belge Türü" #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #. Label of a Link field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Label of a Link field in DocType 'Version' #: core/doctype/version/version.json msgctxt "Version" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Label of a Link field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Label of a Link field in DocType 'Workspace Quick List' #: desk/doctype/workspace_quick_list/workspace_quick_list.json msgctxt "Workspace Quick List" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "DocType" -msgstr "BelgeTipi" +msgstr "Belge Türü" -#: core/doctype/doctype/doctype.py:1528 +#: core/doctype/doctype/doctype.py:1526 msgid "DocType {0} provided for the field {1} must have atleast one Link field" -msgstr "{1} alanı için sağlanan DocType {0} , en az bir Link alanına sahip olmalı" +msgstr "" #. Name of a DocType #: core/doctype/doctype_action/doctype_action.json msgid "DocType Action" -msgstr "Belge Türü İşlemi" +msgstr "" #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "DocType Action" -msgstr "Belge Türü İşlemi" +msgstr "" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #. Label of a Select field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "DocType Event" -msgstr "Belge Türü Etkinliği" +msgstr "" #. Name of a DocType #: custom/doctype/doctype_layout/doctype_layout.json @@ -8889,15 +9249,15 @@ msgstr "" #. Name of a DocType #: core/doctype/doctype_link/doctype_link.json msgid "DocType Link" -msgstr "Belge Türü Bağlantısı" +msgstr "" #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "DocType Link" -msgstr "Belge Türü Bağlantısı" +msgstr "" -#: core/doctype/doctype/doctype_list.js:10 +#: core/doctype/doctype/doctype_list.js:22 msgid "DocType Name" msgstr "" @@ -8916,29 +9276,34 @@ msgstr "" #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "DocType View" -msgstr "Belge Türü Görünümü" +msgstr "" -#: core/doctype/doctype/doctype.py:646 +#: core/doctype/doctype/doctype.py:647 msgid "DocType can not be merged" -msgstr "Belge Türü birleştirilmiş olamaz" +msgstr "" -#: core/doctype/doctype/doctype.py:640 +#: core/doctype/doctype/doctype.py:641 msgid "DocType can only be renamed by Administrator" -msgstr "Belge Türü sadece Yönetici tarafından yeniden adlandırılabilir" +msgstr "" -#: integrations/doctype/webhook/webhook.py:79 +#. Description of a DocType +#: core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + +#: integrations/doctype/webhook/webhook.py:82 msgid "DocType must be Submittable for the selected Doc Event" -msgstr "Belge Türü, seçilen Dok Olayı için Gönderilebilir olmalıdır" +msgstr "" #: client.py:421 msgid "DocType must be a string" msgstr "" -#: public/js/form_builder/store.js:149 +#: public/js/form_builder/store.js:154 msgid "DocType must have atleast one field" msgstr "" -#: core/doctype/log_settings/log_settings.py:57 +#: core/doctype/log_settings/log_settings.py:58 msgid "DocType not supported by Log Settings." msgstr "" @@ -8946,47 +9311,47 @@ msgstr "" #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "DocType on which this Workflow is applicable." -msgstr "Uygulanabilir iş akışı DOCTYPE." +msgstr "" #: public/js/frappe/views/kanban/kanban_settings.js:4 msgid "DocType required" msgstr "" -#: modules/utils.py:161 +#: modules/utils.py:157 msgid "DocType {0} does not exist." msgstr "" -#: modules/utils.py:224 +#: modules/utils.py:220 msgid "DocType {} not found" msgstr "" #: core/doctype/doctype/doctype.py:1009 msgid "DocType's name should not start or end with whitespace" -msgstr "Belge Türünün adı boşlukla başlamamalı veya bitmemelidir" +msgstr "" #: core/doctype/doctype/doctype.js:70 msgid "DocTypes can not be modified, please use {0} instead" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:645 +#: public/js/frappe/widgets/widget_dialog.js:684 msgid "Doctype" -msgstr "Belge Türü" +msgstr "BelgeTipi" #. Label of a Link field in DocType 'Document Follow' #: email/doctype/document_follow/document_follow.json msgctxt "Document Follow" msgid "Doctype" -msgstr "Belge Türü" +msgstr "BelgeTipi" -#: core/doctype/doctype/doctype.py:1004 +#: core/doctype/doctype/doctype.py:1003 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" #: public/js/frappe/list/bulk_operations.js:3 msgid "Doctype required" -msgstr "Belge Türü gerekli" +msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1303 +#: public/js/frappe/views/workspace/workspace.js:1314 msgid "Doctype with same route already exist. Please choose different title." msgstr "" @@ -8994,129 +9359,128 @@ msgstr "" #: core/doctype/audit_trail/audit_trail.json msgctxt "Audit Trail" msgid "Document" -msgstr "Belge" +msgstr "" #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Document" -msgstr "Belge" +msgstr "" #. Label of a Data field in DocType 'Milestone' #: automation/doctype/milestone/milestone.json msgctxt "Milestone" msgid "Document" -msgstr "Belge" +msgstr "" #. Label of a Link field in DocType 'Notification Subscribed Document' #: desk/doctype/notification_subscribed_document/notification_subscribed_document.json msgctxt "Notification Subscribed Document" msgid "Document" -msgstr "Belge" +msgstr "" #. Label of a Dynamic Link field in DocType 'Permission Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "Document" -msgstr "Belge" +msgstr "" #. Label of a Section Break field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Document Actions" -msgstr "Belge İşlemleri" +msgstr "" #. Name of a DocType #: email/doctype/document_follow/document_follow.json msgid "Document Follow" -msgstr "Belge Takibi" +msgstr "" #. Label of a Section Break field in DocType 'User' #. Linked DocType in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "Document Follow" -msgstr "Belge Takibi" +msgstr "" #: desk/form/document_follow.py:84 msgid "Document Follow Notification" -msgstr "Belge Takip Bildirimi" +msgstr "" #. Label of a Data field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Document Link" -msgstr "Belge Bağlantısı" +msgstr "" #. Label of a Section Break field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Document Linking" -msgstr "Belge Bağlantısı" +msgstr "" #. Label of a Section Break field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Document Links" -msgstr "Belge Bağlantıları" +msgstr "" -#: core/doctype/doctype/doctype.py:1162 +#: core/doctype/doctype/doctype.py:1160 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: core/doctype/doctype/doctype.py:1182 +#: core/doctype/doctype/doctype.py:1180 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: core/doctype/doctype/doctype.py:1145 +#: core/doctype/doctype/doctype.py:1143 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: core/doctype/doctype/doctype.py:1151 +#: core/doctype/doctype/doctype.py:1149 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #: core/doctype/user_permission/user_permission_list.js:36 -#: public/js/frappe/form/form_tour.js:58 +#: public/js/frappe/form/form_tour.js:60 msgid "Document Name" -msgstr "Belge Adı" +msgstr "Belge adı" #. Label of a Dynamic Link field in DocType 'DocShare' #: core/doctype/docshare/docshare.json msgctxt "DocShare" msgid "Document Name" -msgstr "Belge Adı" +msgstr "Belge adı" #. Label of a Dynamic Link field in DocType 'Document Follow' #: email/doctype/document_follow/document_follow.json msgctxt "Document Follow" msgid "Document Name" -msgstr "Belge Adı" +msgstr "Belge adı" #. Label of a Dynamic Link field in DocType 'Reminder' #: automation/doctype/reminder/reminder.json msgctxt "Reminder" msgid "Document Name" -msgstr "Belge Adı" +msgstr "Belge adı" #. Label of a Dynamic Link field in DocType 'Tag Link' #: desk/doctype/tag_link/tag_link.json msgctxt "Tag Link" msgid "Document Name" -msgstr "Belge Adı" +msgstr "Belge adı" #. Label of a Data field in DocType 'Transaction Log' #: core/doctype/transaction_log/transaction_log.json msgctxt "Transaction Log" msgid "Document Name" -msgstr "Belge Adı" +msgstr "Belge adı" #. Label of a Data field in DocType 'Version' #: core/doctype/version/version.json msgctxt "Version" msgid "Document Name" -msgstr "Belge Adı" +msgstr "Belge adı" #: client.py:424 msgid "Document Name must be a string" @@ -9125,29 +9489,29 @@ msgstr "" #. Name of a DocType #: core/doctype/document_naming_rule/document_naming_rule.json msgid "Document Naming Rule" -msgstr "Belge Adlandırma Kuralı" +msgstr "" #. Name of a DocType #: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "Document Naming Rule Condition" -msgstr "Belge Adlandırma Kuralı Koşulu" +msgstr "" #. Name of a DocType #: core/doctype/document_naming_settings/document_naming_settings.json msgid "Document Naming Settings" msgstr "" -#: model/document.py:1519 +#: model/document.py:1540 msgid "Document Queued" -msgstr "Belge sıraya alınmış" +msgstr "" #: core/doctype/deleted_document/deleted_document_list.js:38 msgid "Document Restoration Summary" -msgstr "Belge Geri Yükleme Özeti" +msgstr "" -#: core/doctype/deleted_document/deleted_document.py:67 +#: core/doctype/deleted_document/deleted_document.py:68 msgid "Document Restored" -msgstr "Belge Geri Yüklendi" +msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:359 #: public/js/frappe/widgets/onboarding_widget.js:401 @@ -9160,7 +9524,7 @@ msgstr "" #: desk/doctype/notification_settings/notification_settings.json msgctxt "Notification Settings" msgid "Document Share" -msgstr "Belge Paylaşımı" +msgstr "" #. Name of a DocType #: core/doctype/document_share_key/document_share_key.json @@ -9178,47 +9542,48 @@ msgstr "" #: core/report/document_share_report/document_share_report.json #: core/workspace/users/users.json msgid "Document Share Report" -msgstr "Belge Paylaş Raporu" +msgstr "" #. Label of a Section Break field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Document States" -msgstr "Belge Durumları" +msgstr "" #. Label of a Section Break field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Document States" -msgstr "Belge Durumları" +msgstr "" #. Label of a Table field in DocType 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Document States" -msgstr "Belge Durumları" +msgstr "" -#: model/__init__.py:152 model/meta.py:47 public/js/frappe/model/meta.js:199 +#: model/meta.py:47 public/js/frappe/model/meta.js:199 #: public/js/frappe/model/model.js:127 msgid "Document Status" -msgstr "Belge Durumu" +msgstr "" #. Label of a Link field in DocType 'Tag Link' #: desk/doctype/tag_link/tag_link.json msgctxt "Tag Link" msgid "Document Tag" -msgstr "Belge Etiketi" +msgstr "" #. Label of a Data field in DocType 'Tag Link' #: desk/doctype/tag_link/tag_link.json msgctxt "Tag Link" msgid "Document Title" -msgstr "Belge başlığı" +msgstr "" #: core/doctype/user_permission/user_permission_list.js:26 #: core/page/permission_manager/permission_manager.js:49 #: core/page/permission_manager/permission_manager.js:211 -#: core/page/permission_manager/permission_manager.js:432 +#: core/page/permission_manager/permission_manager.js:443 +#: public/js/frappe/roles_editor.js:66 msgid "Document Type" msgstr "Belge Türü" @@ -9343,33 +9708,33 @@ msgctxt "Workflow" msgid "Document Type" msgstr "Belge Türü" -#: desk/doctype/number_card/number_card.py:55 +#: desk/doctype/number_card/number_card.py:56 msgid "Document Type and Function are required to create a number card" msgstr "" -#: permissions.py:149 +#: permissions.py:147 msgid "Document Type is not importable" -msgstr "Belge Türü içe aktarılmaz" +msgstr "" -#: permissions.py:145 +#: permissions.py:143 msgid "Document Type is not submittable" -msgstr "Belge Türü gönderilemez" +msgstr "" #. Label of a Link field in DocType 'Milestone Tracker' #: automation/doctype/milestone_tracker/milestone_tracker.json msgctxt "Milestone Tracker" msgid "Document Type to Track" -msgstr "İzlenecek Belge Türü" +msgstr "" -#: desk/doctype/global_search_settings/global_search_settings.py:39 +#: desk/doctype/global_search_settings/global_search_settings.py:40 msgid "Document Type {0} has been repeated." -msgstr "{0} belge tipi tekrarlandı." +msgstr "" #. Label of a Table field in DocType 'User Type' #: core/doctype/user_type/user_type.json msgctxt "User Type" msgid "Document Types" -msgstr "Belge Türleri" +msgstr "" #. Label of a Table field in DocType 'User Type' #: core/doctype/user_type/user_type.json @@ -9383,45 +9748,49 @@ msgctxt "User Type" msgid "Document Types and Permissions" msgstr "" -#: core/doctype/submission_queue/submission_queue.py:162 +#: core/doctype/submission_queue/submission_queue.py:163 model/document.py:1742 msgid "Document Unlocked" msgstr "" -#: public/js/frappe/list/list_view.js:1054 +#: public/js/frappe/list/list_view.js:1082 msgid "Document has been cancelled" msgstr "" -#: public/js/frappe/list/list_view.js:1053 +#: public/js/frappe/list/list_view.js:1081 msgid "Document has been submitted" msgstr "" -#: public/js/frappe/list/list_view.js:1052 +#: public/js/frappe/list/list_view.js:1080 msgid "Document is in draft state" msgstr "" +#: public/js/frappe/form/workflow.js:45 +msgid "Document is only editable by users with role" +msgstr "" + #: core/doctype/communication/communication.js:182 msgid "Document not Relinked" msgstr "" -#: model/rename_doc.py:230 public/js/frappe/form/toolbar.js:145 +#: model/rename_doc.py:226 public/js/frappe/form/toolbar.js:145 msgid "Document renamed from {0} to {1}" -msgstr "Doküman {0} yerine {1} olarak yeniden adlandırıldı" +msgstr "" #: public/js/frappe/form/toolbar.js:154 msgid "Document renaming from {0} to {1} has been queued" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:397 +#: desk/doctype/dashboard_chart/dashboard_chart.py:387 msgid "Document type is required to create a dashboard chart" -msgstr "Pano grafiği oluşturmak için belge türü gereklidir" +msgstr "" -#: core/doctype/deleted_document/deleted_document.py:44 +#: core/doctype/deleted_document/deleted_document.py:45 msgid "Document {0} Already Restored" -msgstr "{0} Doküman Zaten Geri Yüklendi" +msgstr "" -#: workflow/doctype/workflow_action/workflow_action.py:203 +#: workflow/doctype/workflow_action/workflow_action.py:198 msgid "Document {0} has been set to state {1} by {2}" -msgstr "{0} belgesi, {2} tarihinde {1} durumunu yapacak şekilde ayarlandı" +msgstr "" #: client.py:443 msgid "Document {0} {1} does not exist" @@ -9431,31 +9800,35 @@ msgstr "" #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Documentation Link" -msgstr "Doküman Bağlantısı" +msgstr "" #. Label of a Data field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Documentation URL" -msgstr "Dokümantasyon URL'si" +msgstr "" #. Label of a Data field in DocType 'Module Onboarding' #: desk/doctype/module_onboarding/module_onboarding.json msgctxt "Module Onboarding" msgid "Documentation URL" -msgstr "Dokümantasyon URL'si" +msgstr "" + +#: public/js/frappe/form/templates/form_dashboard.html:17 +msgid "Documents" +msgstr "" #: core/doctype/deleted_document/deleted_document_list.js:25 msgid "Documents restored successfully" -msgstr "Belgeler başarıyla geri yüklendi" +msgstr "" #: core/doctype/deleted_document/deleted_document_list.js:33 msgid "Documents that failed to restore" -msgstr "Geri yüklenemeyen belgeler" +msgstr "" #: core/doctype/deleted_document/deleted_document_list.js:29 msgid "Documents that were already restored" -msgstr "Zaten geri yüklenmiş belgeler" +msgstr "" #. Name of a DocType #: core/doctype/domain/domain.json @@ -9489,42 +9862,42 @@ msgstr "" #. Name of a DocType #: core/doctype/domain_settings/domain_settings.json msgid "Domain Settings" -msgstr "Etki Alanı Ayarları" +msgstr "" #. Label of a HTML field in DocType 'Domain Settings' #: core/doctype/domain_settings/domain_settings.json msgctxt "Domain Settings" msgid "Domains HTML" -msgstr "Domains HTML" +msgstr "" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom #. Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" -msgstr "Do not <script> ya da sadece karakterler kasten bu alanda kullanılan olabilir gibi gibi <veya> gibi HTML Encode HTML etiketleri" +msgstr "" #: public/js/frappe/data_import/import_preview.js:268 msgid "Don't Import" -msgstr "Alma" +msgstr "" #. Label of a Check field in DocType 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Don't Override Status" -msgstr "Durumu geçersiz kılma" +msgstr "" #. Label of a Check field in DocType 'Workflow Document State' #: workflow/doctype/workflow_document_state/workflow_document_state.json msgctxt "Workflow Document State" msgid "Don't Override Status" -msgstr "Durumu geçersiz kılma" +msgstr "" #. Label of a Check field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Don't Send Emails" -msgstr "E-posta Gönderme" +msgstr "" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize #. Form Field' @@ -9543,19 +9916,20 @@ msgstr "" msgid "Don't have an account?" msgstr "" -#: public/js/frappe/ui/messages.js:233 +#: public/js/frappe/ui/messages.js:231 #: public/js/onboarding_tours/onboarding_tours.js:17 msgid "Done" -msgstr "" +msgstr "Bitti" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Donut" -msgstr "Tatlı çörek" +msgstr "" #: core/doctype/file/file.js:5 #: email/doctype/auto_email_report/auto_email_report.js:8 +#: public/js/frappe/form/grid.js:63 msgid "Download" msgstr "İndir" @@ -9567,21 +9941,25 @@ msgstr "İndir" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json desk/page/backups/backups.js:4 msgid "Download Backups" -msgstr "Yedeklemeleri İndir" +msgstr "Yedekleri İndir" #: templates/emails/download_data.html:6 msgid "Download Data" -msgstr "Veri İndir" +msgstr "" #: desk/page/backups/backups.js:12 msgid "Download Files Backup" -msgstr "Dosya İndirme Yedekleme" +msgstr "Dosya Yedeklerini İndir" #: templates/emails/download_data.html:9 msgid "Download Link" -msgstr "İndirme linki" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:764 +#: public/js/frappe/list/bulk_operations.js:125 +msgid "Download PDF" +msgstr "PDF İndir" + +#: public/js/frappe/views/reports/query_report.js:765 msgid "Download Report" msgstr "Raporu İndir" @@ -9591,30 +9969,34 @@ msgctxt "Data Import" msgid "Download Template" msgstr "Şablonu İndir" -#: website/doctype/personal_data_download_request/personal_data_download_request.py:60 -#: website/doctype/personal_data_download_request/personal_data_download_request.py:68 -#: website/doctype/personal_data_download_request/test_personal_data_download_request.py:50 +#: website/doctype/personal_data_download_request/personal_data_download_request.py:61 +#: website/doctype/personal_data_download_request/personal_data_download_request.py:69 +#: website/doctype/personal_data_download_request/test_personal_data_download_request.py:48 msgid "Download Your Data" -msgstr "Verilerinizi İndirin" +msgstr "" #: public/js/frappe/model/indicator.js:73 -#: public/js/frappe/ui/filters/filter.js:493 +#: public/js/frappe/ui/filters/filter.js:494 msgid "Draft" msgstr "Taslak" #: public/js/frappe/views/workspace/blocks/header.js:46 #: public/js/frappe/views/workspace/blocks/paragraph.js:136 #: public/js/frappe/views/workspace/blocks/spacer.js:44 -#: public/js/frappe/views/workspace/workspace.js:565 +#: public/js/frappe/views/workspace/workspace.js:576 #: public/js/frappe/widgets/base_widget.js:33 msgid "Drag" msgstr "" +#: printing/page/print_format_builder/print_format_builder_layout.html:3 +msgid "Drag elements from the sidebar to add. Drag them back to trash." +msgstr "" + #. Label of a Password field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json msgctxt "Dropbox Settings" msgid "Dropbox Access Token" -msgstr "Bırakma Kutusu Erişim Kartı" +msgstr "" #. Label of a Password field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json @@ -9633,48 +10015,49 @@ msgctxt "Dropbox Settings" msgid "Dropbox Settings" msgstr "Dropbox Ayarları" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:348 +#: integrations/doctype/dropbox_settings/dropbox_settings.py:347 msgid "Dropbox Setup" -msgstr "Dropbox Kurulumu" +msgstr "" #. Label of a Section Break field in DocType 'Navbar Settings' #: core/doctype/navbar_settings/navbar_settings.json msgctxt "Navbar Settings" msgid "Dropdowns" -msgstr "Açılır menüler" +msgstr "Açılır Menüler" #. Label of a Date field in DocType 'ToDo' #: desk/doctype/todo/todo.json msgctxt "ToDo" msgid "Due Date" -msgstr "Bitiş Tarihi" +msgstr "Bitiş tarihi" #. Label of a Select field in DocType 'Assignment Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Due Date Based On" -msgstr "Tarihli Vade Tarihi" +msgstr "Vade Tarihine göre" +#: public/js/frappe/form/grid_row_form.js:42 #: public/js/frappe/form/toolbar.js:377 -#: public/js/frappe/views/workspace/workspace.js:808 -#: public/js/frappe/views/workspace/workspace.js:975 +#: public/js/frappe/views/workspace/workspace.js:819 +#: public/js/frappe/views/workspace/workspace.js:986 msgid "Duplicate" msgstr "Kopyala" -#: printing/doctype/print_format_field_template/print_format_field_template.py:52 +#: printing/doctype/print_format_field_template/print_format_field_template.py:53 msgid "Duplicate Entry" msgstr "" #: public/js/frappe/list/list_filter.js:137 msgid "Duplicate Filter Name" -msgstr "Yinelenen Filtre Adı" +msgstr "" -#: model/base_document.py:563 model/rename_doc.py:113 +#: model/base_document.py:582 model/rename_doc.py:111 msgid "Duplicate Name" -msgstr "Yinelenen Ad" +msgstr "" -#: public/js/frappe/views/workspace/workspace.js:547 -#: public/js/frappe/views/workspace/workspace.js:809 +#: public/js/frappe/views/workspace/workspace.js:558 +#: public/js/frappe/views/workspace/workspace.js:820 msgid "Duplicate Workspace" msgstr "" @@ -9682,7 +10065,7 @@ msgstr "" msgid "Duplicate current row" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:990 +#: public/js/frappe/views/workspace/workspace.js:1001 msgid "Duplicate of {0} named as {1} is created successfully" msgstr "" @@ -9738,19 +10121,19 @@ msgstr "Dinamik Filtreler" #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Dynamic Filters JSON" -msgstr "Dinamik Filtreler JSON" +msgstr "Dinamik JSON Filtreleri" #. Label of a Code field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Dynamic Filters JSON" -msgstr "Dinamik Filtreler JSON" +msgstr "Dinamik JSON Filtreleri" #. Label of a Section Break field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Dynamic Filters Section" -msgstr "Dinamik Filtreler Bölümü" +msgstr "Dinamik Filtre Seçimi" #. Name of a DocType #: core/doctype/dynamic_link/dynamic_link.json @@ -9805,31 +10188,40 @@ msgctxt "Web Page" msgid "Dynamic Template" msgstr "Dinamik Şablon" +#: public/js/frappe/form/grid_row_form.js:42 +msgid "ESC" +msgstr "" + #. Description of the Onboarding Step 'Setup Naming Series' #: custom/onboarding_step/naming_series/naming_series.json msgid "Each document created in ERPNext can have a unique ID generated for it, using a prefix defined for it. Though each document has some prefix pre-configured, you can further customize it using tools like Naming Series Tool and Document Naming Rule.\n" msgstr "" #: core/page/dashboard_view/dashboard_view.js:169 +#: printing/page/print_format_builder/print_format_builder_start.html:8 #: printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: public/js/frappe/form/controls/markdown_editor.js:31 -#: public/js/frappe/form/footer/form_timeline.js:638 +#: public/js/frappe/form/footer/form_timeline.js:652 +#: public/js/frappe/form/footer/form_timeline.js:661 +#: public/js/frappe/form/templates/address_list.html:7 +#: public/js/frappe/form/templates/contact_list.html:7 #: public/js/frappe/form/toolbar.js:672 -#: public/js/frappe/views/reports/query_report.js:809 -#: public/js/frappe/views/reports/query_report.js:1617 -#: public/js/frappe/views/workspace/workspace.js:448 -#: public/js/frappe/views/workspace/workspace.js:802 +#: public/js/frappe/views/reports/query_report.js:813 +#: public/js/frappe/views/reports/query_report.js:1634 +#: public/js/frappe/views/workspace/workspace.js:459 +#: public/js/frappe/views/workspace/workspace.js:813 #: public/js/frappe/widgets/base_widget.js:64 #: public/js/frappe/widgets/chart_widget.js:298 -#: public/js/frappe/widgets/number_card_widget.js:314 +#: public/js/frappe/widgets/number_card_widget.js:331 #: templates/discussions/reply_card.html:29 +#: templates/discussions/reply_section.html:29 #: workflow/page/workflow_builder/workflow_builder.js:46 #: workflow/page/workflow_builder/workflow_builder.js:84 msgid "Edit" msgstr "Düzenle" -#: public/js/frappe/list/list_view.js:1943 +#: public/js/frappe/list/list_view.js:2013 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Düzenle" @@ -9840,56 +10232,100 @@ msgctxt "Comment" msgid "Edit" msgstr "Düzenle" +#: public/js/frappe/form/grid_row.js:337 +msgctxt "Edit grid row" +msgid "Edit" +msgstr "Düzenle" + #: templates/emails/auto_email_report.html:63 msgid "Edit Auto Email Report Settings" -msgstr "Otomatik E-posta Rapor Ayarlarını Düzenle" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:38 +msgid "Edit Chart" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:50 +msgid "Edit Custom Block" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:719 msgid "Edit Custom HTML" -msgstr "Edit Custom HTML" +msgstr "HTML Kodunu Düzenle" #: public/js/frappe/form/toolbar.js:546 msgid "Edit DocType" -msgstr "Belge Türünü Düzenle" +msgstr "DocType Düzenle" -#: public/js/frappe/list/list_view.js:1691 +#: public/js/frappe/list/list_view.js:1737 msgctxt "Button in list view menu" msgid "Edit DocType" -msgstr "Belge Türünü Düzenle" +msgstr "DocType Düzenle" #: printing/page/print_format_builder_beta/print_format_builder_beta.js:42 #: workflow/page/workflow_builder/workflow_builder.js:42 msgid "Edit Existing" +msgstr "Düzenle" + +#: public/js/frappe/list/list_sidebar_group_by.js:55 +msgid "Edit Filters" msgstr "" #: printing/doctype/print_format/print_format.js:28 msgid "Edit Format" -msgstr "Biçimi Düzenle" +msgstr "Formatı Düzenle" -#: public/js/frappe/form/quick_entry.js:275 +#: public/js/frappe/form/quick_entry.js:280 msgid "Edit Full Form" -msgstr "Tam Formu Düzenle" +msgstr "Tam Sayfa Düzenle" + +#: printing/page/print_format_builder/print_format_builder_field.html:26 +msgid "Edit HTML" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:602 +#: printing/page/print_format_builder/print_format_builder_layout.html:8 msgid "Edit Heading" -msgstr "Başlık Düzenle" +msgstr "Başlığı Düzenle" + +#: public/js/frappe/widgets/widget_dialog.js:42 +msgid "Edit Links" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:44 +msgid "Edit Number Card" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:46 +msgid "Edit Onboarding" +msgstr "" #: public/js/print_format_builder/print_format_builder.bundle.js:24 msgid "Edit Print Format" msgstr "" -#: desk/page/user_profile/user_profile_controller.js:273 www/me.html:27 +#: desk/page/user_profile/user_profile_controller.js:273 +#: desk/page/user_profile/user_profile_sidebar.html:51 www/me.html:27 msgid "Edit Profile" -msgstr "profil düzenleme" +msgstr "Profili Düzenle" #: printing/page/print_format_builder/print_format_builder.js:173 msgid "Edit Properties" msgstr "Özellikleri Düzenle" +#: public/js/frappe/widgets/widget_dialog.js:48 +msgid "Edit Quick List" +msgstr "" + #: website/doctype/web_form/templates/web_form.html:20 +msgctxt "Button in web form" msgid "Edit Response" msgstr "" +#: public/js/frappe/widgets/widget_dialog.js:40 +msgid "Edit Shortcut" +msgstr "" + #: public/js/frappe/utils/web_template.js:5 msgid "Edit Values" msgstr "Değerleri Düzenle" @@ -9906,7 +10342,7 @@ msgctxt "Website Settings" msgid "Edit Values" msgstr "Değerleri Düzenle" -#: public/js/frappe/views/workspace/workspace.js:803 +#: public/js/frappe/views/workspace/workspace.js:814 msgid "Edit Workspace" msgstr "" @@ -9916,31 +10352,41 @@ msgstr "" #: printing/page/print_format_builder/print_format_builder.js:713 msgid "Edit to add content" -msgstr "Içerik eklemek için düzenle" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:442 +msgctxt "Button in web form" +msgid "Edit your response" +msgstr "" #: workflow/doctype/workflow/workflow.js:18 msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: public/js/frappe/views/reports/report_view.js:652 +#: public/js/frappe/views/reports/report_view.js:647 +#: public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" -msgstr "{0} düzenle" +msgstr "{0} Düzenle" -#: core/doctype/doctype/doctype_list.js:41 +#: core/doctype/doctype/doctype_list.js:57 msgid "Editable Grid" -msgstr "Düzenlenebilir Izgara" +msgstr "Düzenlenebilir Tablo" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Editable Grid" -msgstr "Düzenlenebilir Izgara" +msgstr "Düzenlenebilir Tablo" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Editable Grid" -msgstr "Düzenlenebilir Izgara" +msgstr "Düzenlenebilir Tablo" + +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Editing Row" +msgstr "" #: public/js/print_format_builder/print_format_builder.bundle.js:14 #: public/js/workflow_builder/workflow_builder.bundle.js:20 @@ -9952,7 +10398,7 @@ msgstr "" #: core/doctype/sms_settings/sms_settings.json msgctxt "SMS Settings" msgid "Eg. smsgateway.com/api/send_sms.cgi" -msgstr "Örn. msgateway.com / api / send_sms.cgi" +msgstr "" #: rate_limiter.py:139 msgid "Either key or IP flag is required." @@ -10086,7 +10532,7 @@ msgctxt "User Email" msgid "Email Account" msgstr "E-posta Hesabı" -#: email/doctype/email_account/email_account.py:298 +#: email/doctype/email_account/email_account.py:316 msgid "Email Account Disabled." msgstr "" @@ -10096,81 +10542,81 @@ msgctxt "Email Account" msgid "Email Account Name" msgstr "E-posta Hesap Adı" -#: core/doctype/user/user.py:697 +#: core/doctype/user/user.py:743 msgid "Email Account added multiple times" -msgstr "E-posta Hesabı birden çok kez eklendi" +msgstr "" -#: email/smtp.py:42 +#: email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" msgstr "" #: desk/page/setup_wizard/setup_wizard.js:470 www/complete_signup.html:11 #: www/login.html:164 www/login.html:196 msgid "Email Address" -msgstr "E-posta Adresi" +msgstr "E-posta Address" #. Label of a Data field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "Email Address" -msgstr "E-posta Adresi" +msgstr "E-posta Address" #. Label of a Data field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Email Address" -msgstr "E-posta Adresi" +msgstr "E-posta Address" #. Label of a Data field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Email Address" -msgstr "E-posta Adresi" +msgstr "E-posta Address" #. Label of a Data field in DocType 'Google Contacts' #: integrations/doctype/google_contacts/google_contacts.json msgctxt "Google Contacts" msgid "Email Address" -msgstr "E-posta Adresi" +msgstr "E-posta Address" #. Description of the 'Email Address' (Data) field in DocType 'Google Contacts' #: integrations/doctype/google_contacts/google_contacts.json msgctxt "Google Contacts" msgid "Email Address whose Google Contacts are to be synced." -msgstr "Google Kişileri senkronize edilecek e-posta adresi." +msgstr "" #: email/doctype/email_group/email_group.js:43 msgid "Email Addresses" -msgstr "E-posta adresleri" +msgstr "E-posta Adresleri" #. Description of the 'Send Notification to' (Small Text) field in DocType #. 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Email Addresses" -msgstr "E-posta adresleri" +msgstr "E-posta Adresleri" #. Name of a DocType #: email/doctype/email_domain/email_domain.json msgid "Email Domain" -msgstr "E-posta domain" +msgstr "E-posta Etki Alanı" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "Email Domain" msgid "Email Domain" -msgstr "E-posta domain" +msgstr "E-posta Etki Alanı" #. Name of a DocType #: email/doctype/email_flag_queue/email_flag_queue.json msgid "Email Flag Queue" -msgstr "E-posta Bayrak Kuyruğu" +msgstr "" #. Label of a Small Text field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Email Footer Address" -msgstr "E-posta Adresi Altbilgi" +msgstr "" #. Name of a DocType #: email/doctype/email_group/email_group.json @@ -10198,37 +10644,37 @@ msgstr "E-posta Grubu" #. Name of a DocType #: email/doctype/email_group_member/email_group_member.json msgid "Email Group Member" -msgstr "Grup Üyesi e-posta" +msgstr "" #. Linked DocType in Email Group's connections #: email/doctype/email_group/email_group.json msgctxt "Email Group" msgid "Email Group Member" -msgstr "Grup Üyesi e-posta" +msgstr "" #. Label of a Data field in DocType 'Contact Email' #: contacts/doctype/contact_email/contact_email.json msgctxt "Contact Email" msgid "Email ID" -msgstr "Email kimliği" +msgstr "E-Posta ID" #. Label of a Data field in DocType 'Email Rule' #: email/doctype/email_rule/email_rule.json msgctxt "Email Rule" msgid "Email ID" -msgstr "Email kimliği" +msgstr "E-Posta ID" #. Label of a Data field in DocType 'User Email' #: core/doctype/user_email/user_email.json msgctxt "User Email" msgid "Email ID" -msgstr "Email kimliği" +msgstr "E-Posta ID" #. Label of a Table field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Email IDs" -msgstr "E-posta Noları" +msgstr "E-Posta ID'leri" #. Label of a Data field in DocType 'Contact Us Settings' #: website/doctype/contact_us_settings/contact_us_settings.json @@ -10245,22 +10691,27 @@ msgstr "E-posta Gelen Kutusu" #. Name of a DocType #: email/doctype/email_queue/email_queue.json msgid "Email Queue" -msgstr "E-posta Kuyruğu" +msgstr "" #. Name of a DocType #: email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Email Queue Recipient" -msgstr "E-posta Kuyruk Alıcı" +msgstr "" -#: email/queue.py:163 +#: email/queue.py:160 msgid "Email Queue flushing aborted due to too many failures." msgstr "" +#. Description of a DocType +#: email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" + #. Label of a HTML field in DocType 'Email Template' #: email/doctype/email_template/email_template.json msgctxt "Email Template" msgid "Email Reply Help" -msgstr "E-posta Yanıtı Yardım" +msgstr "" #. Label of a Int field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -10271,7 +10722,7 @@ msgstr "" #. Name of a DocType #: email/doctype/email_rule/email_rule.json msgid "Email Rule" -msgstr "E-posta Kural" +msgstr "" #. Label of a Check field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json @@ -10319,37 +10770,37 @@ msgstr "E-posta Ayarları" #: core/doctype/user/user.json msgctxt "User" msgid "Email Signature" -msgstr "E-posta İmza" +msgstr "E-posta İmzası" #. Label of a Select field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Email Status" -msgstr "E-posta Durum" +msgstr "E-posta Durumu" #. Label of a Select field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Email Sync Option" -msgstr "E-posta Eşitleme Seçeneği" +msgstr "" #. Name of a DocType #: email/doctype/email_template/email_template.json -#: public/js/frappe/views/communication.js:91 +#: public/js/frappe/views/communication.js:95 msgid "Email Template" -msgstr "E-posta Şablonu" +msgstr "E-posta şablonu" #. Label of a Link field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Email Template" -msgstr "E-posta Şablonu" +msgstr "E-posta şablonu" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "Email Template" msgid "Email Template" -msgstr "E-posta Şablonu" +msgstr "E-posta şablonu" #. Label of a Check field in DocType 'Notification Settings' #: desk/doctype/notification_settings/notification_settings.json @@ -10361,72 +10812,76 @@ msgstr "" #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Email To" -msgstr "To Email" +msgstr "" #. Name of a DocType #: email/doctype/email_unsubscribe/email_unsubscribe.json msgid "Email Unsubscribe" -msgstr "E-posta aboneliğini" +msgstr "" #: core/doctype/communication/communication.js:342 msgid "Email has been marked as spam" -msgstr "E-posta spam olarak işaretlendi" +msgstr "" #: core/doctype/communication/communication.js:355 msgid "Email has been moved to trash" -msgstr "E-posta çöp kutusuna taşındı" +msgstr "" -#: public/js/frappe/views/communication.js:707 +#: public/js/frappe/views/communication.js:799 msgid "Email not sent to {0} (unsubscribed / disabled)" -msgstr "Gönderilmez Email {0} (devre dışı / abonelikten)" +msgstr "Gönderilmez Email {0} (devre dışı / üyelikten)" -#: utils/oauth.py:163 +#: utils/oauth.py:158 msgid "Email not verified with {0}" -msgstr "E-posta {0} ile doğrulanmadı" +msgstr "" -#: email/queue.py:141 +#: email/queue.py:137 msgid "Emails are muted" -msgstr "E-postalar sessize alındı" +msgstr "" #. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Emails will be sent with next possible workflow actions" -msgstr "Bir sonraki olası iş akışı eylemleriyle e-postalar gönderilecek" +msgstr "" + +#: website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" #. Label of a Check field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" msgid "Enable" -msgstr "Etkinleştir" +msgstr "" #. Label of a Check field in DocType 'Google Contacts' #: integrations/doctype/google_contacts/google_contacts.json msgctxt "Google Contacts" msgid "Enable" -msgstr "Etkinleştir" +msgstr "" #. Label of a Check field in DocType 'Google Drive' #: integrations/doctype/google_drive/google_drive.json msgctxt "Google Drive" msgid "Enable" -msgstr "Etkinleştir" +msgstr "" #. Label of a Check field in DocType 'Google Settings' #: integrations/doctype/google_settings/google_settings.json msgctxt "Google Settings" msgid "Enable" -msgstr "Etkinleştir" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:116 +#: automation/doctype/auto_repeat/auto_repeat.py:117 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" -msgstr "Formu Özelleştir'de {0} doküman türü için Otomatik Tekrara İzin Ver'i etkinleştirin" +msgstr "" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Enable Auto Reply" -msgstr "Otomatik Yanıt etkinleştirin" +msgstr "Otomatik Cevabı Etkinleştir" #. Label of a Check field in DocType 'S3 Backup Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json @@ -10438,13 +10893,13 @@ msgstr "Otomatik Yedeklemeyi Etkinleştir" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Enable Automatic Linking in Documents" -msgstr "Belgelerde Otomatik Bağlamayı Etkinleştirme" +msgstr "" #. Label of a Check field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Enable Comments" -msgstr "Yorumlar etkinleştirin" +msgstr "" #. Label of a Check field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json @@ -10456,13 +10911,13 @@ msgstr "" #: desk/doctype/notification_settings/notification_settings.json msgctxt "Notification Settings" msgid "Enable Email Notifications" -msgstr "E-posta Bildirimlerini Etkinleştir" +msgstr "E-posta Bildirimlerini Aç" -#: integrations/doctype/google_calendar/google_calendar.py:89 -#: integrations/doctype/google_contacts/google_contacts.py:35 +#: integrations/doctype/google_calendar/google_calendar.py:90 +#: integrations/doctype/google_contacts/google_contacts.py:36 #: website/doctype/website_settings/website_settings.py:129 msgid "Enable Google API in Google Settings." -msgstr "Google Ayarlarında Google API'yi etkinleştirin." +msgstr "" #. Label of a Check field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -10470,43 +10925,43 @@ msgctxt "Website Settings" msgid "Enable Google indexing" msgstr "" -#: email/doctype/email_account/email_account.py:194 +#: email/doctype/email_account/email_account.py:202 msgid "Enable Incoming" -msgstr "Gelen etkinleştirin" +msgstr "Geleni Etkinleştir" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Enable Incoming" -msgstr "Gelen etkinleştirin" +msgstr "Geleni Etkinleştir" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Enable Onboarding" -msgstr "İlk Katılımı Etkinleştir" +msgstr "Modül Tanıtımını Aç" -#: email/doctype/email_account/email_account.py:201 +#: email/doctype/email_account/email_account.py:210 msgid "Enable Outgoing" -msgstr "Giden etkinleştirin" +msgstr "Gideni Etkinleştir" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Enable Outgoing" -msgstr "Giden etkinleştirin" +msgstr "Gideni Etkinleştir" #. Label of a Check field in DocType 'User Email' #: core/doctype/user_email/user_email.json msgctxt "User Email" msgid "Enable Outgoing" -msgstr "Giden etkinleştirin" +msgstr "Gideni Etkinleştir" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Enable Password Policy" -msgstr "Parola İlkesini Etkinleştir" +msgstr "Şifre Politikasını Etkinleştir" #. Label of a Check field in DocType 'Role Permission for Page and Report' #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json @@ -10518,7 +10973,13 @@ msgstr "" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Enable Print Server" -msgstr "Baskı Sunucusunu Etkinleştir" +msgstr "" + +#. Label of a Check field in DocType 'Push Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "Enable Push Notification Relay" +msgstr "" #. Label of a Check field in DocType 'Server Script' #: core/doctype/server_script/server_script.json @@ -10530,17 +10991,17 @@ msgstr "" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Enable Raw Printing" -msgstr "Ham Yazdırmayı Etkinleştir" +msgstr "Stil Olmadan Yazdır" #: core/doctype/report/report.js:36 msgid "Enable Report" -msgstr "Rapor etkinleştirin" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Enable Scheduled Jobs" -msgstr "Tarifeli İşler etkinleştirin" +msgstr "" #: core/doctype/rq_job/rq_job_list.js:23 msgid "Enable Scheduler" @@ -10550,46 +11011,46 @@ msgstr "" #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Enable Security" -msgstr "Güvenliği Etkinleştir" +msgstr "" #. Label of a Check field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Enable Social Login" -msgstr "Sosyal Girişi Etkinleştir" +msgstr "" #. Label of a Check field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json msgctxt "Blog Settings" msgid "Enable Social Sharing" -msgstr "Sosyal Paylaşımı Etkinleştir" +msgstr "" #: website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" -msgstr "İzleme Sayfası Görüntülemelerini Etkinleştir" +msgstr "" -#: twofactor.py:456 +#: twofactor.py:449 msgid "Enable Two Factor Auth" -msgstr "İki Faktör Onayı Etkinleştir" +msgstr "2 Adımlı Doğrulamayı Aç" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Enable Two Factor Auth" -msgstr "İki Faktör Onayı Etkinleştir" +msgstr "2 Adımlı Doğrulamayı Aç" #. Title of an Onboarding Step #: website/onboarding_step/enable_website_tracking/enable_website_tracking.json msgid "Enable Website Tracking" msgstr "" -#: printing/doctype/print_format_field_template/print_format_field_template.py:27 +#: printing/doctype/print_format_field_template/print_format_field_template.py:28 msgid "Enable developer mode to create a standard Print Template" msgstr "" #: website/doctype/web_template/web_template.py:33 msgid "Enable developer mode to create a standard Web Template" -msgstr "Standart bir Web Şablonu oluşturmak için geliştirici modunu etkinleştirin" +msgstr "" #. Description of the 'Enable Email Notification' (Check) field in DocType #. 'Blog Post' @@ -10601,8 +11062,7 @@ msgstr "" #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" -msgid "" -"Enable if on click\n" +msgid "Enable if on click\n" "opens modal." msgstr "" @@ -10699,59 +11159,71 @@ msgstr "Etkin" msgid "Enabled Scheduler" msgstr "" -#: email/doctype/email_account/email_account.py:896 +#: email/doctype/email_account/email_account.py:927 msgid "Enabled email inbox for user {0}" -msgstr "{0} kullanıcısı için e-posta gelen kutusu etkin" +msgstr "" -#: core/doctype/server_script/server_script.py:262 +#: core/doctype/server_script/server_script.py:268 msgid "Enabled scheduled execution for script {0}" -msgstr "{0} komut dosyası için planlanmış yürütme etkinleştirildi" +msgstr "" #. Description of the 'Is Calendar and Gantt' (Check) field in DocType #. 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Enables Calendar and Gantt views." -msgstr "" +msgstr "Takvim ve Gantt görünümü aktif eder." #. Description of the 'Is Calendar and Gantt' (Check) field in DocType #. 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Enables Calendar and Gantt views." -msgstr "" +msgstr "Takvim ve Gantt görünümü aktif eder." #: email/doctype/email_account/email_account.js:232 msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" msgstr "" +#. Description of a DocType +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + +#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push +#. Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgstr "" + #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Enabling this will submit documents in background" -msgstr "" +msgstr "Etkinleştirilirse belgeler arka planda gönderilir." #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Enabling this will submit documents in background" -msgstr "" +msgstr "Etkinleştirilirse belgeler arka planda gönderilir." #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Encrypt Backups" -msgstr "" +msgstr "Yedeklemeleri Şifrele" -#: utils/password.py:184 +#: utils/password.py:181 msgid "Encryption key is in invalid format!" msgstr "" -#: utils/password.py:198 +#: utils/password.py:195 msgid "Encryption key is invalid! Please check site_config.json" -msgstr "" +msgstr "Şifreleme anahtarı geçersiz! Lütfen site_config.json dosyasını kontrol edin." #: public/js/frappe/utils/common.js:416 msgid "End Date" @@ -10781,9 +11253,9 @@ msgctxt "Calendar View" msgid "End Date Field" msgstr "Bitiş Tarihi Alanı" -#: website/doctype/web_page/web_page.py:207 +#: website/doctype/web_page/web_page.py:208 msgid "End Date cannot be before Start Date!" -msgstr "Bitiş Tarihi, Başlangıç Tarihi'nden önce olamaz!" +msgstr "" #. Label of a Datetime field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -10801,66 +11273,68 @@ msgstr "" #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgctxt "S3 Backup Settings" msgid "Endpoint URL" -msgstr "Bitiş noktası URL'si" +msgstr "" #. Label of a Section Break field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json msgctxt "Connected App" msgid "Endpoints" -msgstr "" +msgstr "uç noktalar" #. Label of a Datetime field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Ends on" -msgstr "Biteceği tarih" +msgstr "Bitiş" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Energy Point" -msgstr "Enerji Noktası" +msgstr "" #. Name of a DocType #: social/doctype/energy_point_log/energy_point_log.json msgid "Energy Point Log" -msgstr "Enerji Puanı Günlüğü" +msgstr "Personel Puanı Kayıtları" #. Linked DocType in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "Energy Point Log" -msgstr "Enerji Puanı Günlüğü" +msgstr "Personel Puanı Kayıtları" #. Name of a DocType #: social/doctype/energy_point_rule/energy_point_rule.json msgid "Energy Point Rule" -msgstr "Enerji Puanı Kuralı" +msgstr "Personel Puanı Kuralı" #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Energy Point Rule" -msgstr "Enerji Puanı Kuralı" +msgstr "Personel Puanı Kuralı" #. Name of a DocType #: social/doctype/energy_point_settings/energy_point_settings.json msgid "Energy Point Settings" -msgstr "Enerji Puanı Ayarları" +msgstr "" #: desk/doctype/notification_log/notification_log.py:159 msgid "Energy Point Update on {0}" -msgstr "{0} için Energy Point Güncellemesi" +msgstr "" +#: desk/page/user_profile/user_profile.html:28 +#: desk/page/user_profile/user_profile_controller.js:402 #: templates/emails/energy_points_summary.html:39 msgid "Energy Points" -msgstr "Enerji Puanları" +msgstr "Personel Puanı" #. Label of a Check field in DocType 'Notification Settings' #: desk/doctype/notification_settings/notification_settings.json msgctxt "Notification Settings" msgid "Energy Points" -msgstr "Enerji Puanları" +msgstr "Personel Puanı" #. Label of a Data field in DocType 'Submission Queue' #: core/doctype/submission_queue/submission_queue.json @@ -10868,30 +11342,34 @@ msgctxt "Submission Queue" msgid "Enqueued By" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:105 +#: integrations/doctype/ldap_settings/ldap_settings.py:107 msgid "Ensure the user and group search paths are correct." msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:92 +#: integrations/doctype/google_calendar/google_calendar.py:93 msgid "Enter Client Id and Client Secret in Google Settings." -msgstr "Google Ayarları’na Müşteri Kimliği ve Müşteri Sırrı girin." +msgstr "" -#: public/js/frappe/views/communication.js:663 +#: templates/includes/login/login.js:359 +msgid "Enter Code displayed in OTP App." +msgstr "" + +#: public/js/frappe/views/communication.js:754 msgid "Enter Email Recipient(s)" -msgstr "E-posta Alıcılarını Girin" +msgstr "" #. Label of a Link field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Enter Form Type" -msgstr "Form Türü Girin" +msgstr "Form Türünü Girin" #: public/js/frappe/ui/messages.js:94 msgctxt "Title of prompt dialog" msgid "Enter Value" -msgstr "Değeri girin" +msgstr "Değeri Girin" -#: public/js/frappe/form/form_tour.js:56 +#: public/js/frappe/form/form_tour.js:58 msgid "Enter a name for this {0}" msgstr "" @@ -10899,40 +11377,40 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"." -msgstr "Varsayılan değer alanları (tuşlar) ve değerlerini girin. Bir alan için birden fazla değer eklerseniz, ilki alınacak. Bu varsayılan ayrıca 'maç' izni kuralları ayarlamak için kullanılır. Alanların listesini görmek için, 'Özelleştir Formu' gidin." +msgstr "" #: public/js/frappe/views/file/file_view.js:111 msgid "Enter folder name" -msgstr "Klasör adını girin" +msgstr "" #. Description of the 'Static Parameters' (Table) field in DocType 'SMS #. Settings' #: core/doctype/sms_settings/sms_settings.json msgctxt "SMS Settings" msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" -msgstr "Buraya statik url parametreleri girin (Örn. gönderen = ERPNext, kullanıcı adı = ERPNext, Şifre = 1234 vb)" +msgstr "" #. Description of the 'Message Parameter' (Data) field in DocType 'SMS #. Settings' #: core/doctype/sms_settings/sms_settings.json msgctxt "SMS Settings" msgid "Enter url parameter for message" -msgstr "Mesaj için url parametresi girin" +msgstr "" #. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS #. Settings' #: core/doctype/sms_settings/sms_settings.json msgctxt "SMS Settings" msgid "Enter url parameter for receiver nos" -msgstr "Alıcı numaraları için url parametresi girin" +msgstr "" -#: public/js/frappe/ui/messages.js:334 +#: public/js/frappe/ui/messages.js:332 msgid "Enter your password" -msgstr "Şifrenizi girin" +msgstr "" #: contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 msgid "Entity Name" -msgstr "Varlık adı" +msgstr "" #: contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 msgid "Entity Type" @@ -10942,8 +11420,8 @@ msgstr "Varlık Türü" msgid "Equals" msgstr "Eşittir" -#: desk/page/backups/backups.js:35 model/base_document.py:703 -#: model/base_document.py:708 public/js/frappe/ui/messages.js:22 +#: desk/page/backups/backups.js:35 model/base_document.py:723 +#: model/base_document.py:729 public/js/frappe/ui/messages.js:22 msgid "Error" msgstr "Hata" @@ -11003,7 +11481,7 @@ msgstr "Hata" #: www/error.html:34 msgid "Error Code: {0}" -msgstr "Hata kodu {0}" +msgstr "Hata Kodu: {0}" #. Name of a DocType #: core/doctype/error_log/error_log.json @@ -11024,7 +11502,7 @@ msgstr "Hata mesajı" #: public/js/frappe/form/print_utils.js:126 msgid "Error connecting to QZ Tray Application...

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

      Click here to Download and install QZ Tray.
      Click here to learn more about Raw Printing." -msgstr "QZ Tepsi Uygulamasına bağlanırken hata oluştu ...

      Raw Print özelliğini kullanmak için QZ Tray uygulamasının kurulu ve çalışıyor olması gerekir.

      QZ Tepsisini indirmek ve yüklemek için buraya tıklayın .
      Ham Baskı hakkında daha fazla bilgi edinmek için buraya tıklayın ." +msgstr "" #: email/doctype/email_domain/email_domain.py:32 msgid "Error connecting via IMAP/POP3: {e}" @@ -11034,9 +11512,9 @@ msgstr "" msgid "Error connecting via SMTP: {e}" msgstr "" -#: email/doctype/email_domain/email_domain.py:98 +#: email/doctype/email_domain/email_domain.py:100 msgid "Error has occurred in {0}" -msgstr "{0} konumunda hata oluştu" +msgstr "" #: public/js/frappe/form/script_manager.js:187 msgid "Error in Client Script" @@ -11046,31 +11524,35 @@ msgstr "" msgid "Error in Client Script." msgstr "" -#: email/doctype/notification/notification.py:391 -#: email/doctype/notification/notification.py:507 -#: email/doctype/notification/notification.py:513 -msgid "Error in Notification" -msgstr "Bildirimdeki Hata" +#: printing/doctype/letter_head/letter_head.js:21 +msgid "Error in Header/Footer Script" +msgstr "" -#: utils/pdf.py:48 +#: email/doctype/notification/notification.py:394 +#: email/doctype/notification/notification.py:510 +#: email/doctype/notification/notification.py:516 +msgid "Error in Notification" +msgstr "" + +#: utils/pdf.py:52 msgid "Error in print format on line {0}: {1}" msgstr "" -#: email/doctype/email_account/email_account.py:586 +#: email/doctype/email_account/email_account.py:614 msgid "Error while connecting to email account {0}" -msgstr "{0} e-posta hesabına bağlanırken hata oluştu" +msgstr "" -#: email/doctype/notification/notification.py:504 +#: email/doctype/notification/notification.py:507 msgid "Error while evaluating Notification {0}. Please fix your template." -msgstr "{0} Bildirimini değerlendirirken hata oluştu. Lütfen şablonunuzu düzeltin." +msgstr "" -#: model/document.py:808 +#: model/document.py:818 msgid "Error: Document has been modified after you have opened it" -msgstr "Hata: Bunu açtıktan sonra Belge modifiye edilmiştir" +msgstr "Hata: Döküman siz açtıktan sonra değiştirildi." -#: model/base_document.py:716 +#: model/base_document.py:737 msgid "Error: Value missing for {0}: {1}" -msgstr "Hata: {0} için değer eksik: {1}" +msgstr "" #. Name of a DocType #: desk/doctype/event/event.json @@ -11116,37 +11598,39 @@ msgstr "Etkinlik Katılımcıları" #: desk/doctype/notification_settings/notification_settings.json msgctxt "Notification Settings" msgid "Event Reminders" -msgstr "" +msgstr "Etkinlik Hatırlatıcıları" -#: integrations/doctype/google_calendar/google_calendar.py:455 -#: integrations/doctype/google_calendar/google_calendar.py:539 +#: integrations/doctype/google_calendar/google_calendar.py:452 +#: integrations/doctype/google_calendar/google_calendar.py:536 msgid "Event Synced with Google Calendar." -msgstr "Etkinlik Google Takvim ile Senkronize Edildi." +msgstr "" #. Label of a Select field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Event Type" -msgstr "Faaliyet Türü" +msgstr "Etkinlik Türü" #. Label of a Data field in DocType 'Recorder' #: core/doctype/recorder/recorder.json msgctxt "Recorder" msgid "Event Type" -msgstr "Faaliyet Türü" +msgstr "Etkinlik Türü" -#: desk/doctype/event/event.py:263 +#: desk/doctype/event/event.py:261 msgid "Events in Today's Calendar" -msgstr "Bugünün Takvim'de Olaylar" +msgstr "" #. Description of the Onboarding Step 'Create Custom Fields' #: custom/onboarding_step/custom_field/custom_field.json -msgid "" -"Every form in ERPNext has a standard set of fields. If you need to capture some information, but there is no standard Field available for it, you can insert Custom Field for it.\n" -"\n" +msgid "Every form in ERPNext has a standard set of fields. If you need to capture some information, but there is no standard Field available for it, you can insert Custom Field for it.\n\n" "Once custom fields are added, you can use them for reports and analytics charts as well.\n" msgstr "" +#: public/js/frappe/form/templates/set_sharing.html:11 +msgid "Everyone" +msgstr "Herkes" + #. Label of a Check field in DocType 'DocShare' #: core/doctype/docshare/docshare.json msgctxt "DocShare" @@ -11158,7 +11642,7 @@ msgstr "Herkes" #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" -msgstr "Ör: 'renkler': ['# d1d8dd', '# ff5858']" +msgstr "Örneğin: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" #. Label of a Int field in DocType 'Recorder Query' #: core/doctype/recorder_query/recorder_query.json @@ -11170,20 +11654,20 @@ msgstr "" #: workflow/doctype/workflow_transition/workflow_transition.json msgctxt "Workflow Transition" msgid "Example" -msgstr "Örnek" +msgstr "" #. Description of the 'Default Portal Home' (Data) field in DocType 'Portal #. Settings' #: website/doctype/portal_settings/portal_settings.json msgctxt "Portal Settings" msgid "Example: \"/desk\"" -msgstr "Örnek: '/ desk'" +msgstr "Örnek: \"/desk\"" #. Description of the 'Path' (Data) field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Example: #Tree/Account" -msgstr "Örnek: # Ağaç / Hesap" +msgstr "" #. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule' #: core/doctype/document_naming_rule/document_naming_rule.json @@ -11203,58 +11687,58 @@ msgstr "" #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Example: {{ subject }}" -msgstr "Örnek: {{subject}}" +msgstr "" #. Option for the 'File Type' (Select) field in DocType 'Data Export' #: core/doctype/data_export/data_export.json msgctxt "Data Export" msgid "Excel" -msgstr "Excel" +msgstr "" #: public/js/frappe/form/controls/password.js:91 msgid "Excellent" -msgstr "" +msgstr "Mükemmel" #. Label of a Text field in DocType 'Data Import Log' #: core/doctype/data_import_log/data_import_log.json msgctxt "Data Import Log" msgid "Exception" -msgstr "İstisna" +msgstr "" #. Label of a Code field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json msgctxt "RQ Job" msgid "Exception" -msgstr "İstisna" +msgstr "" #. Label of a Long Text field in DocType 'Submission Queue' #: core/doctype/submission_queue/submission_queue.json msgctxt "Submission Queue" msgid "Exception" -msgstr "İstisna" +msgstr "" #: desk/doctype/system_console/system_console.js:17 #: desk/doctype/system_console/system_console.js:22 msgid "Execute" -msgstr "Yürüt" +msgstr "Çalıştır" #. Label of a Section Break field in DocType 'System Console' #: desk/doctype/system_console/system_console.json msgctxt "System Console" msgid "Execute" -msgstr "Yürüt" +msgstr "Çalıştır" #: desk/doctype/system_console/system_console.js:10 msgid "Execute Console script" -msgstr "Konsol komut dosyasını yürütün" +msgstr "" #: desk/doctype/system_console/system_console.js:18 msgid "Executing..." -msgstr "" +msgstr "Çalıştırılıyor..." -#: public/js/frappe/views/reports/query_report.js:1961 +#: public/js/frappe/views/reports/query_report.js:1978 msgid "Execution Time: {0} sec" -msgstr "Uygulama Süresi: {0} sn" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -11264,80 +11748,85 @@ msgstr "" #: public/js/frappe/widgets/base_widget.js:157 msgid "Expand" -msgstr "Genişlet" +msgstr "" #: public/js/frappe/form/controls/code.js:147 msgctxt "Enlarge code field." msgid "Expand" -msgstr "Genişlet" +msgstr "" +#: public/js/frappe/views/reports/query_report.js:1964 #: public/js/frappe/views/treeview.js:125 msgid "Expand All" msgstr "Tümünü Genişlet" +#: public/js/frappe/form/templates/form_sidebar.html:23 +msgid "Experimental" +msgstr "Deneysel" + #. Option for the 'Level' (Select) field in DocType 'Help Article' #: website/doctype/help_article/help_article.json msgctxt "Help Article" msgid "Expert" -msgstr "Uzman" +msgstr "" #. Label of a Datetime field in DocType 'OAuth Authorization Code' #: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgctxt "OAuth Authorization Code" msgid "Expiration time" -msgstr "Sona erme zamanı" +msgstr "" #. Label of a Datetime field in DocType 'OAuth Bearer Token' #: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgctxt "OAuth Bearer Token" msgid "Expiration time" -msgstr "Sona erme zamanı" +msgstr "" #. Label of a Date field in DocType 'Note' #: desk/doctype/note/note.json msgctxt "Note" msgid "Expire Notification On" -msgstr "On Bildirimi Expire" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Expired" -msgstr "Süresi Doldu" +msgstr "Süresi Bitti" #. Label of a Int field in DocType 'OAuth Bearer Token' #: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgctxt "OAuth Bearer Token" msgid "Expires In" -msgstr "İçinde sona eriyor" +msgstr "" #. Label of a Int field in DocType 'Token Cache' #: integrations/doctype/token_cache/token_cache.json msgctxt "Token Cache" msgid "Expires In" -msgstr "İçinde sona eriyor" +msgstr "" #. Label of a Date field in DocType 'Document Share Key' #: core/doctype/document_share_key/document_share_key.json msgctxt "Document Share Key" msgid "Expires On" -msgstr "" +msgstr "Tarihinde sona eriyor" #. Label of a Int field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Expiry time of QR Code Image Page" -msgstr "QR Kodu Resim Sayfa son kullanma süresi" +msgstr "" -#: core/doctype/recorder/recorder_list.js:42 -#: public/js/frappe/data_import/data_exporter.js:88 -#: public/js/frappe/data_import/data_exporter.js:239 -#: public/js/frappe/views/reports/query_report.js:1652 -#: public/js/frappe/views/reports/report_view.js:1552 +#: core/doctype/recorder/recorder_list.js:37 +#: public/js/frappe/data_import/data_exporter.js:91 +#: public/js/frappe/data_import/data_exporter.js:242 +#: public/js/frappe/views/reports/query_report.js:1669 +#: public/js/frappe/views/reports/report_view.js:1549 msgid "Export" msgstr "Dışarı Aktar" -#: public/js/frappe/list/list_view.js:1965 +#: public/js/frappe/list/list_view.js:2035 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Dışarı Aktar" @@ -11354,55 +11843,55 @@ msgctxt "DocPerm" msgid "Export" msgstr "Dışarı Aktar" -#: public/js/frappe/data_import/data_exporter.js:241 +#: public/js/frappe/data_import/data_exporter.js:244 msgid "Export 1 record" -msgstr "1 kaydı dışa aktar" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1563 +#: public/js/frappe/views/reports/report_view.js:1560 msgid "Export All {0} rows?" -msgstr "Tüm {0} satırları dışa aktar?" +msgstr "" #: custom/doctype/customize_form/customize_form.js:220 msgid "Export Custom Permissions" -msgstr "Export Özel İzinler" +msgstr "" #: custom/doctype/customize_form/customize_form.js:200 msgid "Export Customizations" -msgstr "Export Özelleştirmeleri" +msgstr "" #: public/js/frappe/data_import/data_exporter.js:14 msgid "Export Data" -msgstr "Verileri Dışa Aktar" +msgstr "" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "Data Export" msgid "Export Data" -msgstr "Verileri Dışa Aktar" +msgstr "" #: core/doctype/data_import/data_import.js:86 #: public/js/frappe/data_import/import_preview.js:195 msgid "Export Errored Rows" -msgstr "Hatalı Satırları Dışa Aktar" +msgstr "" #. Label of a Data field in DocType 'Access Log' #: core/doctype/access_log/access_log.json msgctxt "Access Log" msgid "Export From" -msgstr "Gönderen" +msgstr "" -#: core/doctype/data_import/data_import.js:535 +#: core/doctype/data_import/data_import.js:524 msgid "Export Import Log" msgstr "" #: public/js/frappe/views/reports/report_utils.js:227 msgctxt "Export report" msgid "Export Report: {0}" -msgstr "Export Raporu: {0}" +msgstr "" #: public/js/frappe/data_import/data_exporter.js:26 msgid "Export Type" -msgstr "Export Türü" +msgstr "" #: public/js/frappe/views/file/file_view.js:154 msgid "Export as zip" @@ -11410,7 +11899,7 @@ msgstr "" #: public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." -msgstr "İhracat izin verilmiyor. Vermek {0} rol gerekir." +msgstr "İhracata izin verilmiyor. Vermek {0} rolü gerekir." #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' @@ -11425,15 +11914,15 @@ msgctxt "Data Export" msgid "Export without main header" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:243 +#: public/js/frappe/data_import/data_exporter.js:246 msgid "Export {0} records" -msgstr "{0} kayıtlarını dışa aktar" +msgstr "" #. Label of a Data field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Expose Recipients" -msgstr "Alıcılar Açığa" +msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -11464,7 +11953,7 @@ msgstr "" #: email/doctype/notification_recipient/notification_recipient.json msgctxt "Notification Recipient" msgid "Expression, Optional" -msgstr "İfade, Opsiyonel" +msgstr "" #. Label of a Section Break field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json @@ -11477,7 +11966,7 @@ msgstr "" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Facebook" -msgstr "Facebook" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json @@ -11509,40 +11998,40 @@ msgctxt "RQ Worker" msgid "Failed Job Count" msgstr "" -#: model/workflow.py:305 +#: model/workflow.py:298 msgid "Failed Transactions" -msgstr "Başarısız İşlemler" +msgstr "" #: utils/synchronization.py:46 msgid "Failed to aquire lock: {}. Lock may be held by another process." msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:360 +#: integrations/doctype/ldap_settings/ldap_settings.py:358 msgid "Failed to change password." -msgstr "Parola değiştirilemedi." +msgstr "" #: desk/page/setup_wizard/setup_wizard.js:220 msgid "Failed to complete setup" -msgstr "Kurulumu tamamlama başarısız" +msgstr "" -#: integrations/doctype/webhook/webhook.py:148 +#: integrations/doctype/webhook/webhook.py:151 msgid "Failed to compute request body: {}" msgstr "" -#: printing/doctype/network_printer_settings/network_printer_settings.py:45 -#: printing/doctype/network_printer_settings/network_printer_settings.py:47 +#: printing/doctype/network_printer_settings/network_printer_settings.py:46 +#: printing/doctype/network_printer_settings/network_printer_settings.py:48 msgid "Failed to connect to server" -msgstr "Sunucuyla bağlantı başarısız" +msgstr "" -#: auth.py:649 +#: auth.py:654 msgid "Failed to decode token, please provide a valid base64-encoded token." -msgstr "Jetonun kodu çözülemedi, lütfen geçerli bir base64 kodlu jeton sağlayın." +msgstr "" #: core/doctype/rq_job/rq_job_list.js:33 msgid "Failed to enable scheduler: {0}" msgstr "" -#: integrations/doctype/webhook/webhook.py:136 +#: integrations/doctype/webhook/webhook.py:139 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -11550,7 +12039,7 @@ msgstr "" msgid "Failed to export python type hints" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:252 +#: core/doctype/document_naming_settings/document_naming_settings.py:249 msgid "Failed to generate names from the series" msgstr "" @@ -11566,15 +12055,15 @@ msgstr "" msgid "Failed to get method {0} with {1}" msgstr "" -#: model/virtual_doctype.py:64 +#: model/virtual_doctype.py:63 msgid "Failed to import virtual doctype {}, is controller file present?" msgstr "" -#: utils/image.py:75 +#: utils/image.py:73 msgid "Failed to optimize image: {0}" msgstr "" -#: email/doctype/email_queue/email_queue.py:278 +#: email/doctype/email_queue/email_queue.py:280 msgid "Failed to send email with subject:" msgstr "" @@ -11582,35 +12071,39 @@ msgstr "" msgid "Failed to send notification email" msgstr "" -#: desk/page/setup_wizard/setup_wizard.py:24 +#: desk/page/setup_wizard/setup_wizard.py:23 msgid "Failed to update global settings" msgstr "" -#: core/doctype/data_import/data_import.js:470 +#: core/doctype/data_import/data_import.js:465 msgid "Failure" -msgstr "Başarısız" +msgstr "" #. Label of a Attach field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "FavIcon" -msgstr "Favicon" +msgstr "" #. Label of a Data field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "Fax" -msgstr "Faks" +msgstr "Fax" #: website/doctype/blog_post/templates/blog_post_row.html:19 msgid "Featured" -msgstr "Öne çıkan" +msgstr "" #. Label of a Check field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Featured" -msgstr "Öne çıkan" +msgstr "" + +#: public/js/frappe/form/templates/form_sidebar.html:33 +msgid "Feedback" +msgstr "Geri Bildirim" #. Option for the 'Communication Type' (Select) field in DocType #. 'Communication' @@ -11618,39 +12111,39 @@ msgstr "Öne çıkan" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Feedback" -msgstr "Geri bildirim" +msgstr "Geri Bildirim" #. Label of a Data field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Feedback Request" -msgstr "Geri Bildirim İsteği" +msgstr "" #. Label of a Small Text field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Fetch From" -msgstr "From Get" +msgstr "" #. Label of a Small Text field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Fetch From" -msgstr "From Get" +msgstr "" #. Label of a Small Text field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Fetch From" -msgstr "From Get" +msgstr "" #: website/doctype/website_slideshow/website_slideshow.js:15 msgid "Fetch Images" -msgstr "Görüntüleri getir" +msgstr "" #: website/doctype/website_slideshow/website_slideshow.js:13 msgid "Fetch attached images from document" -msgstr "Ekli görüntüleri dokümandan getir" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -11670,14 +12163,15 @@ msgctxt "DocField" msgid "Fetch on Save if Empty" msgstr "" -#: desk/doctype/global_search_settings/global_search_settings.py:60 +#: desk/doctype/global_search_settings/global_search_settings.py:61 msgid "Fetching default Global Search documents." -msgstr "Varsayılan Global Arama belgelerini alma." +msgstr "" #: desk/page/leaderboard/leaderboard.js:131 -#: public/js/frappe/list/bulk_operations.js:262 +#: public/js/frappe/list/bulk_operations.js:297 +#: public/js/frappe/list/list_view_permission_restrictions.html:3 #: public/js/frappe/views/reports/query_report.js:235 -#: public/js/frappe/views/reports/query_report.js:1706 +#: public/js/frappe/views/reports/query_report.js:1723 msgid "Field" msgstr "Alan" @@ -11723,23 +12217,23 @@ msgctxt "Web Form List Column" msgid "Field" msgstr "Alan" -#: core/doctype/doctype/doctype.py:419 +#: core/doctype/doctype/doctype.py:416 msgid "Field \"route\" is mandatory for Web Views" -msgstr "Web İzleme alanları 'rota' zorunlu" +msgstr "" -#: core/doctype/doctype/doctype.py:1477 +#: core/doctype/doctype/doctype.py:1475 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" #: desk/doctype/bulk_update/bulk_update.js:17 msgid "Field \"value\" is mandatory. Please specify value to be updated" -msgstr "Alan 'değer' zorunludur. güncelleştirilmesi için değer belirtin" +msgstr "" #. Label of a Text field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Field Description" -msgstr "Alan Açıklama" +msgstr "" #: core/doctype/doctype/doctype.py:1040 msgid "Field Missing" @@ -11757,19 +12251,27 @@ msgctxt "Property Setter" msgid "Field Name" msgstr "Alan Adı" +#: public/js/print_format_builder/utils.js:69 +msgid "Field Template" +msgstr "" + #. Label of a Select field in DocType 'Energy Point Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "Field To Check" -msgstr "Kontrol Edilecek Alan" +msgstr "" + +#: templates/form_grid/fields.html:40 +msgid "Field Type" +msgstr "" #. Label of a Select field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Field Type" -msgstr "Alan Türü" +msgstr "" -#: desk/reportview.py:165 +#: desk/reportview.py:182 msgid "Field not permitted in query" msgstr "" @@ -11777,19 +12279,19 @@ msgstr "" #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)" -msgstr "İşlemin İş Akışı Durumunu temsil eden alan (alan yoksa yeni bir gizli Özel Alan oluşturulacaktır)" +msgstr "" #. Label of a Select field in DocType 'Milestone Tracker' #: automation/doctype/milestone_tracker/milestone_tracker.json msgctxt "Milestone Tracker" msgid "Field to Track" -msgstr "İzlenecek Alan" +msgstr "" -#: custom/doctype/property_setter/property_setter.py:50 +#: custom/doctype/property_setter/property_setter.py:51 msgid "Field type cannot be changed for {0}" -msgstr "{0} için alan türü değiştirilemiyor" +msgstr "" -#: database/database.py:783 +#: database/database.py:838 msgid "Field {0} does not exist on {1}" msgstr "" @@ -11797,11 +12299,12 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: public/js/frappe/form/form.js:1727 +#: public/js/frappe/form/form.js:1730 msgid "Field {0} not found." -msgstr "{0} alanı bulunamadı." +msgstr "" -#: custom/doctype/custom_field/custom_field.js:119 +#: custom/doctype/custom_field/custom_field.js:120 +#: public/js/frappe/form/grid_row.js:430 msgid "Fieldname" msgstr "Alanadı" @@ -11847,7 +12350,7 @@ msgctxt "Webhook Data" msgid "Fieldname" msgstr "Alanadı" -#: core/doctype/doctype/doctype.py:270 +#: core/doctype/doctype/doctype.py:265 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" @@ -11855,33 +12358,37 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: database/schema.py:125 database/schema.py:359 +#: database/schema.py:125 database/schema.py:356 msgid "Fieldname is limited to 64 characters ({0})" -msgstr "AlanAdı 64 karakterle sınırlıdır ({0})" +msgstr "" -#: custom/doctype/custom_field/custom_field.py:193 +#: custom/doctype/custom_field/custom_field.py:195 msgid "Fieldname not set for Custom Field" -msgstr "Fieldname Özel Alan için ayarlı değil" +msgstr "" #: custom/doctype/custom_field/custom_field.js:107 msgid "Fieldname which will be the DocType for this link field." -msgstr "Bu linki alan için DocType olacaktır fieldname." +msgstr "" -#: public/js/form_builder/store.js:170 +#: public/js/form_builder/store.js:175 msgid "Fieldname {0} appears multiple times" msgstr "" -#: database/schema.py:349 +#: database/schema.py:346 msgid "Fieldname {0} cannot have special characters like {1}" -msgstr "Fieldname {0} gibi özel karakterleri olamaz {1}" +msgstr "" -#: core/doctype/doctype/doctype.py:1850 +#: core/doctype/doctype/doctype.py:1846 msgid "Fieldname {0} conflicting with meta object" -msgstr "{0} alan adı meta nesne ile çakışıyor" +msgstr "" #: core/doctype/doctype/doctype.py:495 public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" -msgstr "{0} alan adı kısıtlanmış" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_settings.js:111 +msgid "Fields" +msgstr "Alanlar" #. Label of a Section Break field in DocType 'Customize Form' #. Label of a Table field in DocType 'Customize Form' @@ -11932,9 +12439,9 @@ msgstr "Alanlar" #: core/doctype/data_export/data_export.json msgctxt "Data Export" msgid "Fields Multicheck" -msgstr "Alanlar Multicheck" +msgstr "" -#: core/doctype/file/file.py:406 +#: core/doctype/file/file.py:404 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -11942,51 +12449,51 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" -msgstr "Virgülle ayrılmış alanlar (,) dahil edilecektir Arama iletişim kutusunun listesinde 'ile Arama'" +msgstr "" #. Label of a Data field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Fieldtype" -msgstr "ALANTIPI" +msgstr "AlanTipi" #. Label of a Select field in DocType 'Report Column' #: core/doctype/report_column/report_column.json msgctxt "Report Column" msgid "Fieldtype" -msgstr "ALANTIPI" +msgstr "AlanTipi" #. Label of a Select field in DocType 'Report Filter' #: core/doctype/report_filter/report_filter.json msgctxt "Report Filter" msgid "Fieldtype" -msgstr "ALANTIPI" +msgstr "AlanTipi" #. Label of a Select field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Fieldtype" -msgstr "ALANTIPI" +msgstr "AlanTipi" #. Label of a Data field in DocType 'Web Form List Column' #: website/doctype/web_form_list_column/web_form_list_column.json msgctxt "Web Form List Column" msgid "Fieldtype" -msgstr "ALANTIPI" +msgstr "AlanTipi" #. Label of a Select field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Fieldtype" -msgstr "ALANTIPI" +msgstr "AlanTipi" -#: custom/doctype/custom_field/custom_field.py:189 +#: custom/doctype/custom_field/custom_field.py:191 msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: custom/doctype/customize_form/customize_form.py:586 +#: custom/doctype/customize_form/customize_form.py:584 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" -msgstr "Alan Türleri {0} değiştirilemez {1} üste {2}" +msgstr "" #. Name of a DocType #: core/doctype/file/file.json @@ -12005,27 +12512,27 @@ msgctxt "Form Tour" msgid "File" msgstr "Dosya" -#: core/doctype/file/utils.py:126 +#: core/doctype/file/utils.py:128 msgid "File '{0}' not found" -msgstr "Dosya '{0}' bulunamadı" +msgstr "{0} İsimli Dosya Bulunamadı" #. Label of a Check field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json msgctxt "Dropbox Settings" msgid "File Backup" -msgstr "Dosya Yedekleme" +msgstr "Dosya Yedeği" #. Label of a Check field in DocType 'Google Drive' #: integrations/doctype/google_drive/google_drive.json msgctxt "Google Drive" msgid "File Backup" -msgstr "Dosya Yedekleme" +msgstr "Dosya Yedeği" #. Label of a Section Break field in DocType 'Access Log' #: core/doctype/access_log/access_log.json msgctxt "Access Log" msgid "File Information" -msgstr "Dosya bilgisi" +msgstr "" #: public/js/frappe/views/file/file_view.js:74 msgid "File Manager" @@ -12035,7 +12542,7 @@ msgstr "Dosya Yöneticisi" #: core/doctype/file/file.json msgctxt "File" msgid "File Name" -msgstr "Dosya Adı" +msgstr "Dosya İsmi" #. Label of a Int field in DocType 'File' #: core/doctype/file/file.json @@ -12045,95 +12552,106 @@ msgstr "Dosya Boyutu" #: public/js/frappe/data_import/data_exporter.js:19 msgid "File Type" -msgstr "Dosya Tipi" +msgstr "Dosya Türü" #. Label of a Data field in DocType 'Access Log' #: core/doctype/access_log/access_log.json msgctxt "Access Log" msgid "File Type" -msgstr "Dosya Tipi" +msgstr "Dosya Türü" #. Label of a Select field in DocType 'Data Export' #: core/doctype/data_export/data_export.json msgctxt "Data Export" msgid "File Type" -msgstr "Dosya Tipi" +msgstr "Dosya Türü" #. Label of a Data field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "File Type" -msgstr "Dosya Tipi" +msgstr "Dosya Türü" #. Label of a Code field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "File URL" -msgstr "Dosya URL'si" +msgstr "Dosya Adresi" -#: desk/page/backups/backups.py:109 +#: desk/page/backups/backups.py:107 msgid "File backup is ready" -msgstr "Dosya yedeklemesi hazır" +msgstr "" #: core/doctype/file/file.py:577 msgid "File name cannot have {0}" -msgstr "Dosya adı {0} olamaz" +msgstr "" #: utils/csvutils.py:26 msgid "File not attached" -msgstr "Dosya bağlı değil" +msgstr "" #: core/doctype/file/file.py:682 public/js/frappe/request.js:197 #: utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" -msgstr "Dosya boyutu {0} MB izin verilen maksimum boyutu aştı" +msgstr "" #: public/js/frappe/request.js:195 msgid "File too big" -msgstr "Dosya çok büyük" +msgstr "" -#: core/doctype/file/file.py:373 +#: core/doctype/file/file.py:372 msgid "File type of {0} is not allowed" msgstr "" -#: core/doctype/file/file.py:360 core/doctype/file/file.py:422 +#: core/doctype/file/file.py:360 core/doctype/file/file.py:420 msgid "File {0} does not exist" -msgstr "{0} yok Dosya" +msgstr "" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "File" msgid "Files" -msgstr "Dosyalar" +msgstr "" #. Label of a Tab Break field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Files" -msgstr "Dosyalar" +msgstr "" +#: core/doctype/prepared_report/prepared_report.js:8 +#: desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: desk/doctype/number_card/number_card.js:205 +#: desk/doctype/number_card/number_card.js:333 #: email/doctype/auto_email_report/auto_email_report.js:90 -#: public/js/frappe/ui/filters/filter_list.js:132 +#: public/js/frappe/list/base_list.js:878 +#: public/js/frappe/ui/filters/filter_list.js:134 +#: website/doctype/web_form/web_form.js:197 msgid "Filter" -msgstr "Filtrele" +msgstr "Filtre" + +#: public/js/frappe/list/list_sidebar.html:35 +msgid "Filter By" +msgstr "" #. Label of a Section Break field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Filter Data" -msgstr "Verileri Filtrele" +msgstr "" #. Label of a HTML field in DocType 'Data Export' #: core/doctype/data_export/data_export.json msgctxt "Data Export" msgid "Filter List" -msgstr "Filtre Listesi" +msgstr "" #. Label of a Text field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Filter Meta" -msgstr "Meta Filtre" +msgstr "" #: public/js/frappe/list/list_filter.js:33 msgid "Filter Name" @@ -12149,15 +12667,19 @@ msgstr "Filtre Adı" #: core/doctype/prepared_report/prepared_report.json msgctxt "Prepared Report" msgid "Filter Values" -msgstr "Filtre Değerleri" +msgstr "" -#: utils/data.py:2021 +#: utils/data.py:2019 msgid "Filter must be a tuple or list (in a list)" -msgstr "Filtre bir liste veya liste olmalıdır (bir listede)" +msgstr "" -#: utils/data.py:2029 +#: utils/data.py:2027 msgid "Filter must have 4 values (doctype, fieldname, operator, value): {0}" -msgstr "Filtrenin 4 değeri olmalıdır (doctype, fieldname, operator, value): {0}" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_sidebar.html:3 +msgid "Filter..." +msgstr "" #. Label of a Data field in DocType 'Personal Data Deletion Step' #: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -12167,12 +12689,12 @@ msgstr "" #: public/js/frappe/data_import/data_exporter.js:33 msgid "Filtered Records" -msgstr "Filtrelenmiş Kayıtlar" +msgstr "" #: website/doctype/blog_post/blog_post.py:262 #: website/doctype/help_article/help_article.py:91 www/list.py:45 msgid "Filtered by \"{0}\"" -msgstr "\"{0}\" tarafından Filtreli" +msgstr "" #. Label of a Code field in DocType 'Access Log' #: core/doctype/access_log/access_log.json @@ -12224,21 +12746,21 @@ msgctxt "Report" msgid "Filters" msgstr "Filtreler" -#: public/js/frappe/ui/filters/filter_list.js:131 +#: public/js/frappe/ui/filters/filter_list.js:133 msgid "Filters {0}" -msgstr "" +msgstr "Filtreler {0}" #. Label of a Code field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Filters Configuration" -msgstr "Filtreler Yapılandırması" +msgstr "" #. Label of a HTML field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Filters Display" -msgstr "Filtreler Ekranı" +msgstr "" #. Label of a Code field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json @@ -12256,38 +12778,42 @@ msgstr "JSON Filtreleri" #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Filters Section" -msgstr "Filtreler Bölümü" +msgstr "Filtre Seçimi" -#: public/js/frappe/form/controls/link.js:486 +#: public/js/frappe/form/controls/link.js:488 msgid "Filters applied for {0}" -msgstr "{0} için uygulanan filtreler" +msgstr "Filtreler {0} için Uygulandı" #: public/js/frappe/views/kanban/kanban_view.js:186 msgid "Filters saved" -msgstr "Filtreler kaydedildi" +msgstr "" #. Description of the 'Script' (Code) field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Filters will be accessible via filters.

      Send output as result = [result], or for old style data = [columns], [result]" -msgstr "Filtrelere, filters aracılığıyla erişilebilir.

      result = [result] olarak çıktı gönder result = [result] veya eski stil data = [columns], [result]" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:556 +#: public/js/frappe/views/reports/report_view.js:1350 +msgid "Filters:" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:572 msgid "Find '{0}' in ..." msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:325 -#: public/js/frappe/ui/toolbar/awesome_bar.js:326 -#: public/js/frappe/ui/toolbar/search_utils.js:125 -#: public/js/frappe/ui/toolbar/search_utils.js:128 +#: public/js/frappe/ui/toolbar/awesome_bar.js:327 +#: public/js/frappe/ui/toolbar/awesome_bar.js:328 +#: public/js/frappe/ui/toolbar/search_utils.js:141 +#: public/js/frappe/ui/toolbar/search_utils.js:144 msgid "Find {0} in {1}" -msgstr "{0} Bul {1}" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Submission Queue' #: core/doctype/submission_queue/submission_queue.json msgctxt "Submission Queue" msgid "Finished" -msgstr "bitirdi" +msgstr "" #. Label of a Datetime field in DocType 'Prepared Report' #: core/doctype/prepared_report/prepared_report.json @@ -12299,7 +12825,7 @@ msgstr "" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "First Day of the Week" -msgstr "" +msgstr "Hafta Başlangıcı" #: www/complete_signup.html:15 msgid "First Name" @@ -12321,111 +12847,111 @@ msgstr "Adı" #: core/doctype/success_action/success_action.json msgctxt "Success Action" msgid "First Success Message" -msgstr "İlk Başarı Mesajı" +msgstr "" #: core/report/transaction_log_report/transaction_log_report.py:49 msgid "First Transaction" -msgstr "İlk işlem" +msgstr "" #: core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." -msgstr "İlk veri sütunu boş olmalı." +msgstr "" #: website/doctype/website_slideshow/website_slideshow.js:7 msgid "First set the name and save the record." -msgstr "İlk önce ismi ayarlayın ve kaydı kaydedin." +msgstr "" #. Label of a Data field in DocType 'Language' #: core/doctype/language/language.json msgctxt "Language" msgid "Flag" -msgstr "Bayrak" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Float" -msgstr "Float" +msgstr "Ondalık" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Float" -msgstr "Float" +msgstr "Ondalık" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Float" -msgstr "Float" +msgstr "Ondalık" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #: core/doctype/report_column/report_column.json msgctxt "Report Column" msgid "Float" -msgstr "Float" +msgstr "Ondalık" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' #: core/doctype/report_filter/report_filter.json msgctxt "Report Filter" msgid "Float" -msgstr "Float" +msgstr "Ondalık" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Float" -msgstr "Float" +msgstr "Ondalık" #. Label of a Select field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Float Precision" -msgstr "Float Hassasiyeti" +msgstr "Ondalık Yuvarlama" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Fold" -msgstr "Kat" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Fold" -msgstr "Kat" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Fold" -msgstr "Kat" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #: core/doctype/report_column/report_column.json msgctxt "Report Column" msgid "Fold" -msgstr "Kat" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' #: core/doctype/report_filter/report_filter.json msgctxt "Report Filter" msgid "Fold" -msgstr "Kat" - -#: core/doctype/doctype/doctype.py:1401 -msgid "Fold can not be at the end of the form" -msgstr "Katlama formun sonundaki olamaz" +msgstr "" #: core/doctype/doctype/doctype.py:1399 +msgid "Fold can not be at the end of the form" +msgstr "" + +#: core/doctype/doctype/doctype.py:1397 msgid "Fold must come before a Section Break" -msgstr "Bir bölüm sonu önce gelmelidir Fold" +msgstr "" #. Label of a Link field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "Folder" -msgstr "Klasör" +msgstr "" #. Label of a Data field in DocType 'IMAP Folder' #: email/doctype/imap_folder/imap_folder.json @@ -12435,11 +12961,11 @@ msgstr "" #: public/js/frappe/views/file/file_view.js:100 msgid "Folder name should not include '/' (slash)" -msgstr "Klasör adı '/' (eğik çizgi) içermemelidir." +msgstr "" #: core/doctype/file/file.py:466 msgid "Folder {0} is not empty" -msgstr "Klasör {0} boş değil" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -12448,28 +12974,33 @@ msgid "Folio" msgstr "" #: public/js/frappe/form/sidebar/form_sidebar.js:232 +#: public/js/frappe/form/templates/form_sidebar.html:129 msgid "Follow" -msgstr "Takip et" +msgstr "Takip Et" -#: email/doctype/auto_email_report/auto_email_report.py:124 -msgid "Following Report Filters have missing values:" +#: public/js/frappe/form/templates/form_sidebar.html:124 +msgid "Followed by" msgstr "" -#: website/doctype/web_form/web_form.py:107 +#: email/doctype/auto_email_report/auto_email_report.py:130 +msgid "Following Report Filters have missing values:" +msgstr "Aşağıdaki Rapor Filtrelerindeki değerler eksik:" + +#: website/doctype/web_form/web_form.py:108 msgid "Following fields are missing:" msgstr "Aşağıdaki alanlar eksik:" #: public/js/frappe/ui/field_group.js:133 msgid "Following fields have invalid values:" -msgstr "" +msgstr "Aşağıdaki alanlarda geçersiz değerler bulunmaktadır:" -#: public/js/frappe/widgets/widget_dialog.js:314 +#: public/js/frappe/widgets/widget_dialog.js:353 msgid "Following fields have missing values" -msgstr "" +msgstr "Aşağıdaki alanlarda eksik değerler bulunuyor" #: public/js/frappe/ui/field_group.js:120 msgid "Following fields have missing values:" -msgstr "Aşağıdaki alanlar eksik değerler vardır:" +msgstr "Aşağıdaki alanlarda eksik değerler bulunmaktadır:" #: email/doctype/newsletter/newsletter.js:30 msgid "Following links are broken in the email content: {0}" @@ -12479,67 +13010,67 @@ msgstr "" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Font" -msgstr "Yazı tipi" +msgstr "" #. Label of a Data field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Font Properties" -msgstr "Yazı Tipi Özellikleri" +msgstr "" #. Label of a Int field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Font Size" -msgstr "Yazı Boyutu" +msgstr "" #. Label of a Float field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Font Size" -msgstr "Yazı Boyutu" +msgstr "" #. Label of a Data field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Font Size" -msgstr "Yazı Boyutu" +msgstr "" #. Label of a Section Break field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Fonts" -msgstr "Fontlar" +msgstr "" #. Label of a Text Editor field in DocType 'About Us Settings' #: website/doctype/about_us_settings/about_us_settings.json msgctxt "About Us Settings" msgid "Footer" -msgstr "Altbilgi" +msgstr "" #. Label of a Section Break field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Footer" -msgstr "Altbilgi" +msgstr "" #. Label of a Section Break field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Footer" -msgstr "Altbilgi" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Web Template' #: website/doctype/web_template/web_template.json msgctxt "Web Template" msgid "Footer" -msgstr "Altbilgi" +msgstr "" #. Label of a Tab Break field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Footer" -msgstr "Altbilgi" +msgstr "" #. Label of a Small Text field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -12563,15 +13094,15 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Footer Details" -msgstr "Altbilgi Ayrıntıları" +msgstr "" #. Label of a HTML Editor field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Footer HTML" -msgstr "Altbilgi HTML" +msgstr "" -#: printing/doctype/letter_head/letter_head.py:72 +#: printing/doctype/letter_head/letter_head.py:75 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -12586,25 +13117,31 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Footer Items" -msgstr "Altbilgi Öğeleri" +msgstr "" #. Label of a Attach Image field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Footer Logo" -msgstr "Altbilgi Logosu" +msgstr "" + +#. Label of a Code field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Footer Script" +msgstr "" #. Label of a Link field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Footer Template" -msgstr "Altbilgi Şablonu" +msgstr "" #. Label of a Code field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Footer Template Values" -msgstr "Altbilgi Şablon Değerleri" +msgstr "" #: printing/page/print/print.js:116 msgid "Footer might not be visible as {0} option is disabled
" @@ -12615,105 +13152,107 @@ msgstr "" #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Footer will display correctly only in PDF" -msgstr "Altbilgi yalnızca PDF olarak doğru görüntülenecek" +msgstr "" #. Description of the 'Row Name' (Data) field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "For DocType Link / DocType Action" -msgstr "Belge Türü Link / Belge Türü Eylemi için" +msgstr "" #. Label of a Select field in DocType 'Energy Point Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "For Document Event" -msgstr "Belge Etkinliği İçin" +msgstr "" #: core/doctype/user_permission/user_permission_list.js:155 msgid "For Document Type" -msgstr "Belge Türü İçin" +msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:529 +#: public/js/frappe/widgets/widget_dialog.js:568 msgid "For Example: {} Open" -msgstr "Örneğin: {} Aç" +msgstr "" #. Description of the 'Options' (Small Text) field in DocType 'Customize Form #. Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" -msgid "" -"For Links, enter the DocType as range.\n" +msgid "For Links, enter the DocType as range.\n" "For Select, enter list of Options, each on a new line." msgstr "" #. Description of the 'Options' (Small Text) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" -msgid "" -"For Links, enter the DocType as range.\n" +msgid "For Links, enter the DocType as range.\n" "For Select, enter list of Options, each on a new line." msgstr "" #: core/doctype/user_permission/user_permission_list.js:10 #: core/doctype/user_permission/user_permission_list.js:148 msgid "For User" -msgstr "Kullanıcı için" +msgstr "" #. Label of a Link field in DocType 'List Filter' #: desk/doctype/list_filter/list_filter.json msgctxt "List Filter" msgid "For User" -msgstr "Kullanıcı için" +msgstr "" #. Label of a Link field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "For User" -msgstr "Kullanıcı için" +msgstr "" #. Label of a Data field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "For User" -msgstr "Kullanıcı için" +msgstr "" #. Label of a Dynamic Link field in DocType 'User Permission' #: core/doctype/user_permission/user_permission.json msgctxt "User Permission" msgid "For Value" -msgstr "Değer İçin" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1958 +#: public/js/frappe/views/reports/query_report.js:1975 #: public/js/frappe/views/reports/report_view.js:96 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." -msgstr "Karşılaştırma için> 5, <10 veya = 324 kullanın. Aralıklar için 5:10 kullanın (5 ve 10 arasındaki değerler için)." +msgstr "" + +#: 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 "" #: printing/page/print_format_builder/print_format_builder.js:744 msgid "For example: If you want to include the document ID, use {0}" -msgstr "Örneğin: Belge Kimliği eklemek istiyorsanız, kullanmak {0}" +msgstr "" #. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "For example: {} Open" -msgstr "Örneğin: {} Aç" +msgstr "" #. Description of the 'Client Script' (Code) field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "For help see Client Script API and Examples" -msgstr "Yardım için Client Script API ve Örneklerine bakın" +msgstr "" #. Description of the 'Enable Automatic Linking in Documents' (Check) field in #. DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "For more information, click here." -msgstr "Daha fazla bilgi için buraya tıklayın ." +msgstr "" #: integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." -msgstr "Daha fazla bilgi için, {0}." +msgstr "" #. Description of the 'Email To' (Small Text) field in DocType 'Auto Email #. Report' @@ -12722,26 +13261,26 @@ msgctxt "Auto Email Report" msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com" msgstr "" -#: core/doctype/data_export/exporter.py:199 +#: core/doctype/data_export/exporter.py:197 msgid "For updating, you can update only selective columns." -msgstr "Güncellenmesi için, sadece seçici sütunları güncelleyebilirsiniz." +msgstr "" -#: core/doctype/doctype/doctype.py:1692 +#: core/doctype/doctype/doctype.py:1690 msgid "For {0} at level {1} in {2} in row {3}" -msgstr "Için {0} düzeyde {1} {2} tane üst üste {3}" +msgstr "" #. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth #. Provider Settings' #: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgctxt "OAuth Provider Settings" msgid "Force" -msgstr "Zorla" +msgstr "" #. Label of a Check field in DocType 'Package Import' #: core/doctype/package_import/package_import.json msgctxt "Package Import" msgid "Force" -msgstr "Zorla" +msgstr "" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -12759,7 +13298,7 @@ msgstr "" #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "Force Show" -msgstr "Zorla göster" +msgstr "" #: core/doctype/rq_job/rq_job.js:13 msgid "Force Stop job" @@ -12769,7 +13308,7 @@ msgstr "" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Force User to Reset Password" -msgstr "Kullanıcı Şifreyi Sıfırlamaya Zorla" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -12779,7 +13318,7 @@ msgstr "" #: www/login.html:35 msgid "Forgot Password?" -msgstr "Parolanızı mı unuttunuz?" +msgstr "" #: printing/page/print/print.js:83 msgid "Form" @@ -12837,19 +13376,19 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Form Settings" -msgstr "Form Ayarları" +msgstr "" #. Label of a Section Break field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Form Settings" -msgstr "Form Ayarları" +msgstr "" #. Label of a Section Break field in DocType 'Role' #: core/doctype/role/role.json msgctxt "Role" msgid "Form Settings" -msgstr "Form Ayarları" +msgstr "" #. Name of a DocType #: desk/doctype/form_tour/form_tour.json @@ -12871,66 +13410,66 @@ msgstr "" #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Form URL-Encoded" -msgstr "Form URL Kodlu" +msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:528 +#: public/js/frappe/widgets/widget_dialog.js:567 msgid "Format" -msgstr "Biçim" +msgstr "" #. Label of a Select field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Format" -msgstr "Biçim" +msgstr "" #. Label of a Data field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Format" -msgstr "Biçim" +msgstr "" #. Label of a Code field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Format Data" -msgstr "Biçim Verileri" +msgstr "" #: core/doctype/communication/communication.js:70 msgid "Forward" -msgstr "İlet" +msgstr "" #. Label of a Data field in DocType 'Contact Us Settings' #: website/doctype/contact_us_settings/contact_us_settings.json msgctxt "Contact Us Settings" msgid "Forward To Email Address" -msgstr "E-posta Adresine İlet" +msgstr "" #. Label of a Data field in DocType 'Currency' #: geo/doctype/currency/currency.json msgctxt "Currency" msgid "Fraction" -msgstr "Kesir" +msgstr "" #. Label of a Int field in DocType 'Currency' #: geo/doctype/currency/currency.json msgctxt "Currency" msgid "Fraction Units" -msgstr "Kesir Birimleri" +msgstr "" -#: www/login.html:61 www/login.html:142 www/login.py:44 www/login.py:134 +#: www/login.html:61 www/login.html:142 www/login.py:44 www/login.py:133 msgid "Frappe" -msgstr "Frappe" +msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Frappe" -msgstr "Frappe" +msgstr "" #: public/js/frappe/ui/toolbar/about.js:4 msgid "Frappe Framework" -msgstr "Frappe Çerçeve" +msgstr "" #: public/js/frappe/ui/theme_switcher.js:59 msgid "Frappe Light" @@ -12940,8 +13479,13 @@ msgstr "" #. Type: Action #: hooks.py msgid "Frappe Support" -msgstr "Frappe Desteği" +msgstr "" +#: website/doctype/web_page/web_page.js:92 +msgid "Frappe page builder using components" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat_schedule.html:5 #: public/js/frappe/utils/common.js:395 msgid "Frequency" msgstr "Frekans" @@ -13007,56 +13551,56 @@ msgctxt "System Settings" msgid "Friday" msgstr "Cuma" -#: public/js/frappe/views/communication.js:170 +#: public/js/frappe/views/communication.js:185 #: public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" -msgstr "Itibaren" +msgstr "itibaren" #. Label of a Data field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "From" -msgstr "Itibaren" +msgstr "itibaren" #. Label of a Section Break field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "From" -msgstr "Itibaren" +msgstr "itibaren" #: website/report/website_analytics/website_analytics.js:8 msgid "From Date" -msgstr "Başlangıç Tarihi" +msgstr "Başlama Tarihi" #. Label of a Date field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "From Date" -msgstr "Başlangıç Tarihi" +msgstr "Başlama Tarihi" #. Label of a Select field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "From Date Field" -msgstr "Tarih Alanından" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1672 +#: public/js/frappe/views/reports/query_report.js:1689 msgid "From Document Type" -msgstr "Belge Türünden" +msgstr "" #. Label of a Data field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "From Full Name" -msgstr "Tam Adı" +msgstr "" #. Label of a Link field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "From User" -msgstr "Kullanıcıdan" +msgstr "" -#: public/js/frappe/utils/diffview.js:30 +#: public/js/frappe/utils/diffview.js:31 msgid "From version" msgstr "" @@ -13064,7 +13608,7 @@ msgstr "" #: desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgctxt "Dashboard Chart Link" msgid "Full" -msgstr "Tam" +msgstr "" #: desk/page/setup_wizard/setup_wizard.js:464 templates/signup.html:4 msgid "Full Name" @@ -13101,31 +13645,32 @@ msgid "Full Name" msgstr "Tam Adı" #: printing/page/print/print.js:67 +#: public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" -msgstr "Tam Sayfa" +msgstr "" #. Label of a Check field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Full Width" -msgstr "Tam Genişlik" +msgstr "" #: public/js/frappe/views/reports/query_report.js:245 -#: public/js/frappe/widgets/widget_dialog.js:666 +#: public/js/frappe/widgets/widget_dialog.js:705 msgid "Function" -msgstr "Fonksiyon" +msgstr "" #. Label of a Select field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Function" -msgstr "Fonksiyon" +msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:673 +#: public/js/frappe/widgets/widget_dialog.js:712 msgid "Function Based On" -msgstr "Dayalı İşlev" +msgstr "" -#: __init__.py:835 +#: __init__.py:933 msgid "Function {0} is not whitelisted." msgstr "" @@ -13135,7 +13680,7 @@ msgstr "Ek kısımlar ancak 'Grup' tipi kısımlar altında oluşturulabilir" #: core/doctype/communication/communication.js:291 msgid "Fw: {0}" -msgstr "İlt: {0}" +msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: core/doctype/recorder/recorder.json @@ -13147,7 +13692,7 @@ msgstr "" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "GMail" -msgstr "GMail" +msgstr "" #. Option for the 'License Type' (Select) field in DocType 'Package' #: core/doctype/package/package.json @@ -13163,58 +13708,62 @@ msgstr "" #: public/js/frappe/views/gantt/gantt_view.js:10 msgid "Gantt" -msgstr "Gantt" +msgstr "" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Gantt" -msgstr "Gantt" +msgstr "" #. Name of a DocType #: contacts/doctype/gender/gender.json msgid "Gender" -msgstr "Cinsiyet" +msgstr "Cinsiyeti" #. Label of a Link field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Gender" -msgstr "Cinsiyet" +msgstr "Cinsiyeti" #. Label of a Data field in DocType 'Gender' #: contacts/doctype/gender/gender.json msgctxt "Gender" msgid "Gender" -msgstr "Cinsiyet" +msgstr "Cinsiyeti" #. Label of a Link field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Gender" -msgstr "Cinsiyet" +msgstr "Cinsiyeti" + +#: www/contact.html:29 +msgid "General" +msgstr "Genel" #. Title of an Onboarding Step #: custom/onboarding_step/report_builder/report_builder.json msgid "Generate Custom Reports" -msgstr "" +msgstr "Özel Raporlar Oluşturun" #. Label of a Button field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Generate Keys" -msgstr "Anahtar Oluştur" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:803 +#: public/js/frappe/views/reports/query_report.js:807 msgid "Generate New Report" -msgstr "Yeni Rapor Oluştur" +msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:366 +#: public/js/frappe/ui/toolbar/awesome_bar.js:368 msgid "Generate Random Password" msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:137 -#: public/js/frappe/utils/utils.js:1750 +#: public/js/frappe/ui/toolbar/toolbar.js:147 +#: public/js/frappe/utils/utils.js:1763 msgid "Generate Tracking URL" msgstr "" @@ -13222,23 +13771,23 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Geolocation" -msgstr "Coğrafi Konum" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Geolocation" -msgstr "Coğrafi Konum" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Geolocation" -msgstr "Coğrafi Konum" +msgstr "" #: email/doctype/notification/notification.js:170 msgid "Get Alerts for Today" -msgstr "Bugün için Uyarıları alın" +msgstr "" #: desk/page/backups/backups.js:19 msgid "Get Backup Encryption Key" @@ -13248,15 +13797,19 @@ msgstr "" #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Get Contacts" -msgstr "Kişileri Al" +msgstr "" -#: website/doctype/web_form/web_form.js:84 +#: website/doctype/web_form/web_form.js:93 msgid "Get Fields" -msgstr "Alanları Al" +msgstr "" + +#: printing/doctype/letter_head/letter_head.js:32 +msgid "Get Header and Footer wkhtmltopdf variables" +msgstr "" #: public/js/frappe/form/multi_select_dialog.js:85 msgid "Get Items" -msgstr "Ürünleri alın" +msgstr "Ürünleri Getir" #: integrations/doctype/connected_app/connected_app.js:6 msgid "Get OpenID Configuration" @@ -13284,59 +13837,63 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "Get your globally recognized avatar from Gravatar.com" -msgstr "Gravatar.com sizin dünya çapında tanınan avatar alın" +msgstr "" #. Label of a Data field in DocType 'Installed Application' #: core/doctype/installed_application/installed_application.json msgctxt "Installed Application" msgid "Git Branch" -msgstr "Git Şubesi" +msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "GitHub" -msgstr "GitHub" +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "Github flavoured markdown syntax" +msgstr "" #: social/doctype/energy_point_settings/energy_point_settings.js:7 #: social/doctype/energy_point_settings/energy_point_settings.js:14 msgid "Give Review Points" -msgstr "İnceleme Puanı Ver" +msgstr "" #. Name of a DocType #: desk/doctype/global_search_doctype/global_search_doctype.json msgid "Global Search DocType" -msgstr "Genel Arama Doküman Türü" +msgstr "" #: desk/doctype/global_search_settings/global_search_settings.js:24 msgid "Global Search Document Types Reset." -msgstr "Genel Arama Doküman Tipleri Sıfırlama." +msgstr "" #. Name of a DocType #: desk/doctype/global_search_settings/global_search_settings.json msgid "Global Search Settings" -msgstr "Global Arama Ayarları" +msgstr "" -#: public/js/frappe/ui/keyboard.js:118 +#: public/js/frappe/ui/keyboard.js:121 msgid "Global Shortcuts" -msgstr "Global Kısayollar" +msgstr "" #. Label of a Check field in DocType 'Email Unsubscribe' #: email/doctype/email_unsubscribe/email_unsubscribe.json msgctxt "Email Unsubscribe" msgid "Global Unsubscribe" -msgstr "Küresel aboneliğini" +msgstr "" #: desk/page/user_profile/user_profile_controller.js:68 #: public/js/frappe/form/toolbar.js:767 msgid "Go" -msgstr "Git" +msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:246 #: public/js/frappe/widgets/onboarding_widget.js:326 msgid "Go Back" -msgstr "Geri dön" +msgstr "" #: desk/doctype/notification_settings/notification_settings.js:17 msgid "Go to Notification Settings List" @@ -13346,7 +13903,7 @@ msgstr "" #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Go to Page" -msgstr "Sayfaya git" +msgstr "" #: public/js/workflow_builder/workflow_builder.bundle.js:41 msgid "Go to Workflow" @@ -13358,15 +13915,15 @@ msgstr "" #: public/js/frappe/form/form.js:144 msgid "Go to next record" -msgstr "Bir sonraki kayda git" +msgstr "" #: public/js/frappe/form/form.js:154 msgid "Go to previous record" -msgstr "Önceki kayda git" +msgstr "" -#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:52 +#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:53 msgid "Go to the document" -msgstr "Belgeye git" +msgstr "" #. Description of the 'Success URL' (Data) field in DocType 'Web Form' #: website/doctype/web_form/web_form.json @@ -13377,7 +13934,7 @@ msgstr "" #: core/doctype/doctype/doctype.js:54 #: custom/doctype/client_script/client_script.js:10 msgid "Go to {0}" -msgstr "{0} adresine git" +msgstr "" #: core/doctype/data_import/data_import.js:92 #: core/doctype/doctype/doctype.js:58 @@ -13385,11 +13942,11 @@ msgstr "{0} adresine git" #: custom/doctype/doctype_layout/doctype_layout.js:42 #: workflow/doctype/workflow/workflow.js:44 msgid "Go to {0} List" -msgstr "{0} Listeye Git" +msgstr "" #: core/doctype/page/page.js:11 msgid "Go to {0} Page" -msgstr "{0} Sayfaya git" +msgstr "" #: utils/goal.py:115 utils/goal.py:122 msgid "Goal" @@ -13400,13 +13957,13 @@ msgstr "Hedef" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Google" -msgstr "Google" +msgstr "" #. Label of a Data field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Google Analytics ID" -msgstr "Google Analytics Kimliği" +msgstr "" #. Label of a Check field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -13417,14 +13974,14 @@ msgstr "" #. Name of a DocType #: integrations/doctype/google_calendar/google_calendar.json msgid "Google Calendar" -msgstr "Google Takvim" +msgstr "" #. Label of a Section Break field in DocType 'Event' #. Label of a Link field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Google Calendar" -msgstr "Google Takvim" +msgstr "" #. Label of a Section Break field in DocType 'Google Calendar' #. Label of a Link in the Integrations Workspace @@ -13432,69 +13989,69 @@ msgstr "Google Takvim" #: integrations/workspace/integrations/integrations.json msgctxt "Google Calendar" msgid "Google Calendar" -msgstr "Google Takvim" +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:781 +#: integrations/doctype/google_calendar/google_calendar.py:776 msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:251 +#: integrations/doctype/google_calendar/google_calendar.py:252 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." -msgstr "Google Takvim - {0}, hata kodu {1} için Takvim oluşturulamadı." +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:575 +#: integrations/doctype/google_calendar/google_calendar.py:572 msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." -msgstr "Google Takvim - {0} Etkinliği Google Takvim’den silinemedi, hata kodu {1}." +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:288 +#: integrations/doctype/google_calendar/google_calendar.py:289 msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." -msgstr "Google Takvim - {0} hata kodu Google Takvim’den etkinlik alınamadı." +msgstr "" -#: integrations/doctype/google_contacts/google_contacts.py:229 +#: integrations/doctype/google_contacts/google_contacts.py:232 msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." -msgstr "Google Takvim - {0} Google Rehber’e kişi eklenemedi, hata kodu {1}." +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:458 +#: integrations/doctype/google_calendar/google_calendar.py:455 msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." -msgstr "Google Takvim - {0} Google Takvim’e etkinlik eklenemedi, hata kodu {1}." +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:542 +#: integrations/doctype/google_calendar/google_calendar.py:539 msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." -msgstr "Google Takvim - Google Takvim’deki {0} etkinliği güncellenemedi, hata kodu {1}." +msgstr "" #. Label of a Data field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Google Calendar Event ID" -msgstr "Google Takvim Etkinlik Kimliği" +msgstr "" #. Label of a Data field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Google Calendar ID" -msgstr "Google Takvim Kimliği" +msgstr "" #. Label of a Data field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" msgid "Google Calendar ID" -msgstr "Google Takvim Kimliği" +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:166 +#: integrations/doctype/google_calendar/google_calendar.py:167 msgid "Google Calendar has been configured." -msgstr "Google Takvim yapılandırıldı." +msgstr "" #. Name of a DocType #: integrations/doctype/google_contacts/google_contacts.json msgid "Google Contacts" -msgstr "Google Kişileri" +msgstr "" #. Label of a Section Break field in DocType 'Contact' #. Label of a Link field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Google Contacts" -msgstr "Google Kişileri" +msgstr "" #. Label of a Section Break field in DocType 'Google Contacts' #. Label of a Link in the Integrations Workspace @@ -13502,26 +14059,26 @@ msgstr "Google Kişileri" #: integrations/workspace/integrations/integrations.json msgctxt "Google Contacts" msgid "Google Contacts" -msgstr "Google Kişileri" +msgstr "" -#: integrations/doctype/google_contacts/google_contacts.py:136 +#: integrations/doctype/google_contacts/google_contacts.py:137 msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." -msgstr "Google Kişileri - {0} Google Rehberindeki kişiler senkronize edilemedi, hata kodu {1}." +msgstr "" -#: integrations/doctype/google_contacts/google_contacts.py:291 +#: integrations/doctype/google_contacts/google_contacts.py:294 msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." -msgstr "Google Kişileri - {0} Google Kişileri'nde kişi güncellenemedi, hata kodu {1}." +msgstr "" #. Label of a Data field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Google Contacts Id" -msgstr "Google Kişiler Kimliği" +msgstr "" #. Name of a DocType #: integrations/doctype/google_drive/google_drive.json msgid "Google Drive" -msgstr "Google Drive" +msgstr "" #. Label of a Section Break field in DocType 'Google Drive' #. Label of a Link in the Integrations Workspace @@ -13529,23 +14086,23 @@ msgstr "Google Drive" #: integrations/workspace/integrations/integrations.json msgctxt "Google Drive" msgid "Google Drive" -msgstr "Google Drive" +msgstr "" -#: integrations/doctype/google_drive/google_drive.py:118 +#: integrations/doctype/google_drive/google_drive.py:117 msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}" -msgstr "Google Drive - Google Drive'da klasör oluşturulamadı - Hata Kodu {0}" +msgstr "" -#: integrations/doctype/google_drive/google_drive.py:134 +#: integrations/doctype/google_drive/google_drive.py:132 msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}" -msgstr "Google Drive - Google Drive'da klasör bulunamadı - Hata Kodu {0}" +msgstr "" -#: integrations/doctype/google_drive/google_drive.py:196 +#: integrations/doctype/google_drive/google_drive.py:193 msgid "Google Drive - Could not locate - {0}" -msgstr "Google Drive - Bulunamadı - {0}" +msgstr "" -#: integrations/doctype/google_drive/google_drive.py:207 +#: integrations/doctype/google_drive/google_drive.py:204 msgid "Google Drive Backup Successful." -msgstr "Google Drive Yedekleme Başarılı." +msgstr "" #. Label of a Section Break field in DocType 'Google Settings' #: integrations/doctype/google_settings/google_settings.json @@ -13563,13 +14120,13 @@ msgstr "" #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Google Font" -msgstr "Google Yazı Tipi" +msgstr "" #. Label of a Data field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Google Font" -msgstr "Google Yazı Tipi" +msgstr "" #. Label of a Data field in DocType 'Event' #: desk/doctype/event/event.json @@ -13580,42 +14137,43 @@ msgstr "" #. Label of a Card Break in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgid "Google Services" -msgstr "Google Hizmetleri" +msgstr "" #. Name of a DocType #: integrations/doctype/google_settings/google_settings.json msgid "Google Settings" -msgstr "Google Ayarları" +msgstr "" #. Label of a Link in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgctxt "Google Settings" msgid "Google Settings" -msgstr "Google Ayarları" +msgstr "" -#: utils/csvutils.py:199 +#: utils/csvutils.py:201 msgid "Google Sheets URL is invalid or not publicly accessible." -msgstr "Google E-Tablolar URL'si geçersiz veya herkese açık değil." +msgstr "" -#: utils/csvutils.py:204 +#: utils/csvutils.py:206 msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." -msgstr "Google E-Tablolar URL'si 'gid = {sayı}' ile bitmelidir. URL'yi tarayıcının adres çubuğundan kopyalayıp yapıştırın ve tekrar deneyin." +msgstr "" #. Label of a HTML field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Google Snippet Preview" -msgstr "Google Snippet Önizlemesi" +msgstr "" #. Label of a Select field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "Grant Type" -msgstr "Hibe Tipi" +msgstr "" #: public/js/frappe/form/dashboard.js:34 +#: public/js/frappe/form/templates/form_dashboard.html:10 msgid "Graph" -msgstr "" +msgstr "Grafik" #. Option for the 'Color' (Select) field in DocType 'DocType State' #: core/doctype/doctype_state/doctype_state.json @@ -13633,15 +14191,15 @@ msgstr "" #: core/doctype/doctype_state/doctype_state.json msgctxt "DocType State" msgid "Green" -msgstr "" +msgstr "Yeşil" #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Green" -msgstr "" +msgstr "Yeşil" -#: public/js/frappe/ui/keyboard.js:123 +#: public/js/frappe/ui/keyboard.js:126 msgid "Grid Shortcuts" msgstr "" @@ -13677,21 +14235,21 @@ msgstr "Gruplama Ölçütü" #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Group By Based On" -msgstr "Göre Grupla" +msgstr "Gruplandırma Referansı" #. Label of a Select field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Group By Type" -msgstr "Türe Göre Grupla" +msgstr "Türe Göre Gruplandır" -#: desk/doctype/dashboard_chart/dashboard_chart.py:408 +#: desk/doctype/dashboard_chart/dashboard_chart.py:398 msgid "Group By field is required to create a dashboard chart" -msgstr "Gösterge tablosu grafiği oluşturmak için Gruplama Alanı gereklidir" +msgstr "" #: public/js/frappe/views/treeview.js:401 msgid "Group Node" -msgstr "Grup Düğüm" +msgstr "Grup Düğümü" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -13699,7 +14257,7 @@ msgctxt "LDAP Settings" msgid "Group Object Class" msgstr "" -#: public/js/frappe/ui/group_by/group_by.js:415 +#: public/js/frappe/ui/group_by/group_by.js:413 msgid "Grouped by {0}" msgstr "" @@ -13713,53 +14271,54 @@ msgstr "" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "HH:mm" -msgstr "SS: dd" +msgstr "" #. Option for the 'Time Format' (Select) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "HH:mm:ss" -msgstr "SS: dd: ss" +msgstr "" -#: printing/doctype/print_format/print_format.py:93 +#: printing/doctype/print_format/print_format.py:90 +#: website/doctype/web_page/web_page.js:92 msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "HTML" -msgstr "HTML" +msgstr "" #. Label of a Section Break field in DocType 'Custom HTML Block' #: desk/doctype/custom_html_block/custom_html_block.json msgctxt "Custom HTML Block" msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -13767,67 +14326,71 @@ msgstr "HTML" #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "HTML" -msgstr "HTML" +msgstr "" #. Label of a Code field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "HTML Editor" -msgstr "HTML Editör" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "HTML Editor" -msgstr "HTML Editör" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "HTML Editor" -msgstr "HTML Editör" +msgstr "" #. Label of a HTML Editor field in DocType 'Access Log' #: core/doctype/access_log/access_log.json msgctxt "Access Log" msgid "HTML Page" -msgstr "HTML Sayfası" +msgstr "" #. Description of the 'Header' (HTML Editor) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "HTML for header section. Optional" -msgstr "Başlık bölüm için HTML. Opsiyonel" +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "HTML with jinja support" +msgstr "" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' #: desk/doctype/dashboard_chart_link/dashboard_chart_link.json @@ -13841,15 +14404,21 @@ msgctxt "Auto Email Report" msgid "Half Yearly" msgstr "Yarım Yıllık" +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Half Yearly" +msgstr "Yarım Yıllık" + #: public/js/frappe/utils/common.js:402 msgid "Half-yearly" -msgstr "Yarı yıllık" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Half-yearly" -msgstr "Yarı yıllık" +msgstr "" #. Label of a Check field in DocType 'Communication' #: core/doctype/communication/communication.json @@ -13860,7 +14429,7 @@ msgstr "" #. Name of a DocType #: core/doctype/has_domain/has_domain.json msgid "Has Domain" -msgstr "Etki Alanı Var" +msgstr "" #. Label of a Check field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -13871,121 +14440,133 @@ msgstr "" #. Name of a DocType #: core/doctype/has_role/has_role.json msgid "Has Role" -msgstr "Rolü var" +msgstr "Rol" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Has Web View" -msgstr "Web Görünümü Has" +msgstr "Web Görünümü Var" #: templates/signup.html:19 msgid "Have an account? Login" -msgstr "Hesabın var mı? Oturum aç" +msgstr "Hesabınız Varsa Giriş Yapın" #. Label of a Section Break field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Header" -msgstr "Başlık" +msgstr "" #. Label of a Check field in DocType 'SMS Parameter' #: core/doctype/sms_parameter/sms_parameter.json msgctxt "SMS Parameter" msgid "Header" -msgstr "Başlık" +msgstr "" #. Label of a HTML Editor field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Header" -msgstr "Başlık" +msgstr "" #. Label of a HTML Editor field in DocType 'Website Slideshow' #: website/doctype/website_slideshow/website_slideshow.json msgctxt "Website Slideshow" msgid "Header" -msgstr "Başlık" +msgstr "" #. Label of a HTML Editor field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Header HTML" -msgstr "Başlık HTML" +msgstr "" -#: printing/doctype/letter_head/letter_head.py:60 +#: printing/doctype/letter_head/letter_head.py:63 msgid "Header HTML set from attachment {0}" -msgstr "{0} ekinden HTML başlık seti" +msgstr "" + +#. Label of a Code field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Header Script" +msgstr "" #. Label of a Section Break field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Header and Breadcrumbs" -msgstr "Üstbilgi ve İçerik Kırıntıları" +msgstr "" #. Label of a Tab Break field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Header, Robots" -msgstr "Başlık, Robotlar" +msgstr "" + +#: printing/doctype/letter_head/letter_head.js:30 +msgid "Header/Footer scripts can be used to add dynamic behaviours." +msgstr "" #. Label of a Table field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Headers" -msgstr "Başlıkları" +msgstr "" #. Label of a Code field in DocType 'Webhook Request Log' #: integrations/doctype/webhook_request_log/webhook_request_log.json msgctxt "Webhook Request Log" msgid "Headers" -msgstr "Başlıkları" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:602 msgid "Heading" -msgstr "başlık" +msgstr "Başlık" #. Label of a Data field in DocType 'Contact Us Settings' #: website/doctype/contact_us_settings/contact_us_settings.json msgctxt "Contact Us Settings" msgid "Heading" -msgstr "başlık" +msgstr "Başlık" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Heading" -msgstr "başlık" +msgstr "Başlık" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Heading" -msgstr "başlık" +msgstr "Başlık" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Heading" -msgstr "başlık" +msgstr "Başlık" #. Label of a Data field in DocType 'Website Slideshow Item' #: website/doctype/website_slideshow_item/website_slideshow_item.json msgctxt "Website Slideshow Item" msgid "Heading" -msgstr "başlık" +msgstr "Başlık" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Heatmap" -msgstr "Sıcaklık haritası" +msgstr "Isı Haritası" #: templates/emails/new_user.html:2 msgid "Hello" msgstr "" -#: public/js/frappe/form/workflow.js:23 public/js/frappe/utils/help.js:27 +#: public/js/frappe/form/templates/form_sidebar.html:40 +#: public/js/frappe/form/workflow.js:23 +#: public/js/frappe/ui/toolbar/navbar.html:86 public/js/frappe/utils/help.js:27 msgid "Help" msgstr "Yardım" @@ -14021,29 +14602,33 @@ msgstr "Yardım Makaleleri" #. Name of a DocType #: website/doctype/help_category/help_category.json msgid "Help Category" -msgstr "Yardım Kategorisi" +msgstr "" #. Label of a Link in the Website Workspace #: website/workspace/website/website.json msgctxt "Help Category" msgid "Help Category" -msgstr "Yardım Kategorisi" +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:83 +msgid "Help Dropdown" +msgstr "" #. Label of a Table field in DocType 'Navbar Settings' #: core/doctype/navbar_settings/navbar_settings.json msgctxt "Navbar Settings" msgid "Help Dropdown" -msgstr "Yardım Açılır Menüsü" +msgstr "" #. Label of a HTML field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Help HTML" -msgstr "Yardım HTML'si" +msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:149 msgid "Help on Search" -msgstr "Arama Yardımı" +msgstr "" #. Description of the 'Content' (Text Editor) field in DocType 'Note' #: desk/doctype/note/note.json @@ -14055,13 +14640,13 @@ msgstr "" #: website/doctype/help_article/help_article.json msgctxt "Help Article" msgid "Helpful" -msgstr "" +msgstr "Faydalı" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Helvetica" -msgstr "Helvetica" +msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -14069,13 +14654,17 @@ msgctxt "Print Settings" msgid "Helvetica Neue" msgstr "" -#: public/js/frappe/utils/utils.js:1747 +#: public/js/frappe/utils/utils.js:1760 msgid "Here's your tracking URL" msgstr "" #: www/qrcode.html:9 msgid "Hi {0}" -msgstr "Merhaba {0}" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_field.html:3 +msgid "Hidden" +msgstr "Gizli" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -14137,9 +14726,10 @@ msgctxt "Form Tour Step" msgid "Hidden Fields" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:814 +#: public/js/frappe/views/workspace/workspace.js:825 #: public/js/frappe/widgets/base_widget.js:46 #: public/js/frappe/widgets/base_widget.js:176 +#: templates/includes/login/login.js:83 msgid "Hide" msgstr "Gizle" @@ -14153,25 +14743,25 @@ msgstr "Gizle" #: website/doctype/web_page_block/web_page_block.json msgctxt "Web Page Block" msgid "Hide Block" -msgstr "Bloğu Gizle" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Hide Border" -msgstr "Kenarlığı Gizle" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Hide Border" -msgstr "Kenarlığı Gizle" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Hide Border" -msgstr "Kenarlığı Gizle" +msgstr "" #. Label of a Check field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -14183,43 +14773,43 @@ msgstr "" #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Hide CTA" -msgstr "CTA'yı gizle" +msgstr "" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Hide Copy" -msgstr "Kopya gizle" +msgstr "Kopyayı Gizle" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Hide Copy" -msgstr "Kopya gizle" +msgstr "Kopyayı Gizle" #. Label of a Check field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Hide Custom DocTypes and Reports" -msgstr "Özel Belge Türlerini ve Raporları Gizle" +msgstr "Özel DocType ve Raporları Gizle" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Hide Days" -msgstr "Günleri Gizle" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Hide Days" -msgstr "Günleri Gizle" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Hide Days" -msgstr "Günleri Gizle" +msgstr "" #: core/doctype/user_permission/user_permission_list.js:96 msgid "Hide Descendants" @@ -14239,12 +14829,12 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Hide Login" -msgstr "Oturum Açmayı Gizle" +msgstr "Kullanıcı Girişini Gizle" #: public/js/form_builder/form_builder.bundle.js:43 #: public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Hide Preview" -msgstr "" +msgstr "Önizlemeyi Gizle" #. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -14254,7 +14844,7 @@ msgstr "" #: public/js/frappe/list/list_filter.js:87 msgid "Hide Saved" -msgstr "" +msgstr "Kaydedilenleri Gizle" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -14284,17 +14874,17 @@ msgstr "" #: website/doctype/portal_settings/portal_settings.json msgctxt "Portal Settings" msgid "Hide Standard Menu" -msgstr "Standart Menü gizle" +msgstr "Standart Menüyü Gizle" -#: public/js/frappe/list/list_view.js:1566 +#: public/js/frappe/list/list_view.js:1612 msgid "Hide Tags" -msgstr "" +msgstr "Etiketleri Gizle" -#: public/js/frappe/views/calendar/calendar.js:184 +#: public/js/frappe/views/calendar/calendar.js:185 msgid "Hide Weekends" -msgstr "Haftasonlarını Gizle" +msgstr "Hafta Sonlarını Gizle" -#: public/js/frappe/views/workspace/workspace.js:815 +#: public/js/frappe/views/workspace/workspace.js:826 msgid "Hide Workspace" msgstr "" @@ -14307,13 +14897,13 @@ msgstr "" #: public/js/frappe/form/layout.js:260 msgid "Hide details" -msgstr "Gizle Detayları" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Hide footer in auto email reports" -msgstr "Otomatik e-posta raporlarında altbilgiyi gizle" +msgstr "" #. Label of a Check field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -14335,21 +14925,21 @@ msgstr "Yüksek" #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Higher priority rule will be applied first" -msgstr "Yüksek öncelikli kural ilk önce uygulanacak" +msgstr "" #. Label of a Text field in DocType 'Company History' #: website/doctype/company_history/company_history.json msgctxt "Company History" msgid "Highlight" -msgstr "Vurgulayın" +msgstr "" -#: www/update-password.html:271 +#: www/update-password.html:274 msgid "Hint: Include symbols, numbers and capital letters in the password" -msgstr "İpucu: Parolaya semboller, sayılar ve büyük harfler ekleyin" +msgstr "" -#: core/doctype/file/utils.py:31 public/js/frappe/views/file/file_view.js:67 +#: core/doctype/file/utils.py:28 public/js/frappe/views/file/file_view.js:67 #: public/js/frappe/views/file/file_view.js:88 -#: public/js/frappe/views/pageview.js:149 templates/doc.html:19 +#: public/js/frappe/views/pageview.js:153 templates/doc.html:19 #: templates/includes/navbar/navbar.html:9 #: website/doctype/blog_post/blog_post.py:153 #: website/doctype/blog_post/blog_post.py:265 @@ -14369,32 +14959,32 @@ msgstr "Ana Sayfa" #: core/doctype/role/role.json msgctxt "Role" msgid "Home Page" -msgstr "Ana Sayfa" +msgstr "" #. Label of a Data field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Home Page" -msgstr "Ana Sayfa" +msgstr "" #. Label of a Code field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Home Settings" -msgstr "Ev ayarları" +msgstr "" -#: core/doctype/file/test_file.py:299 core/doctype/file/test_file.py:301 -#: core/doctype/file/test_file.py:365 +#: core/doctype/file/test_file.py:303 core/doctype/file/test_file.py:305 +#: core/doctype/file/test_file.py:369 msgid "Home/Test Folder 1" -msgstr "Ana Sayfa / Test Klasörü 1" +msgstr "" -#: core/doctype/file/test_file.py:354 +#: core/doctype/file/test_file.py:358 msgid "Home/Test Folder 1/Test Folder 3" -msgstr "Ana Sayfa / Test Klasörü 1 / Test Klasör 3" +msgstr "" -#: core/doctype/file/test_file.py:310 +#: core/doctype/file/test_file.py:314 msgid "Home/Test Folder 2" -msgstr "Ana Sayfa / Test Klasörü 2" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json @@ -14418,41 +15008,40 @@ msgstr "Saatlik" #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Hourly Long" -msgstr "Saatlik Uzun" +msgstr "" #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Hourly Long" -msgstr "Saatlik Uzun" +msgstr "" #. Description of the 'Password Reset Link Generation Limit' (Int) field in #. DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Hourly rate limit for generating password reset links" -msgstr "Şifre sıfırlama bağlantıları oluşturmak için saatlik oran sınırı" +msgstr "" #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: geo/doctype/currency/currency.json msgctxt "Currency" msgid "How should this currency be formatted? If not set, will use system defaults" -msgstr "Bu para birimi nasıl biçimlendirilmelidir? Ayarlanmamışsa, sistem varsayılanı kullanacaktır." +msgstr "" -#: core/doctype/data_import/importer.py:1120 -#: core/doctype/data_import/importer.py:1126 -#: core/doctype/data_import/importer.py:1192 -#: core/doctype/data_import/importer.py:1195 desk/report/todo/todo.py:36 -#: model/__init__.py:137 model/meta.py:45 -#: public/js/frappe/data_import/data_exporter.js:326 -#: public/js/frappe/data_import/data_exporter.js:341 -#: public/js/frappe/list/list_view.js:355 -#: public/js/frappe/list/list_view.js:419 public/js/frappe/model/meta.js:197 +#: core/doctype/data_import/importer.py:1115 +#: core/doctype/data_import/importer.py:1121 +#: core/doctype/data_import/importer.py:1186 +#: core/doctype/data_import/importer.py:1189 desk/report/todo/todo.py:36 +#: model/meta.py:45 public/js/frappe/data_import/data_exporter.js:329 +#: public/js/frappe/data_import/data_exporter.js:344 +#: public/js/frappe/list/list_view.js:356 +#: public/js/frappe/list/list_view.js:420 public/js/frappe/model/meta.js:197 #: public/js/frappe/model/model.js:112 msgid "ID" msgstr "ID" -#: desk/reportview.py:418 public/js/frappe/views/reports/report_view.js:920 +#: desk/reportview.py:435 public/js/frappe/views/reports/report_view.js:917 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -14461,7 +15050,7 @@ msgstr "ID" #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "ID (name) of the entity whose property is to be set" -msgstr "Özelliği ayarlanmalıdır varlık kimliği (adı)" +msgstr "" #. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' #: website/doctype/web_page_block/web_page_block.json @@ -14504,120 +15093,124 @@ msgctxt "Comment" msgid "IP Address" msgstr "IP adresi" -#: public/js/frappe/views/workspace/workspace.js:632 -#: public/js/frappe/views/workspace/workspace.js:960 -#: public/js/frappe/views/workspace/workspace.js:1205 +#: public/js/frappe/views/workspace/workspace.js:643 +#: public/js/frappe/views/workspace/workspace.js:971 +#: public/js/frappe/views/workspace/workspace.js:1216 msgid "Icon" -msgstr "ikon" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Icon" -msgstr "ikon" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Icon" -msgstr "ikon" +msgstr "" #. Label of a Data field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "Icon" -msgstr "ikon" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Icon" -msgstr "ikon" +msgstr "" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Icon" -msgstr "ikon" +msgstr "" #. Label of a Data field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Icon" -msgstr "ikon" +msgstr "" #. Label of a Select field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "Icon" -msgstr "ikon" +msgstr "" #. Label of a Icon field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Icon" -msgstr "ikon" +msgstr "" #. Label of a Data field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Icon" -msgstr "ikon" +msgstr "" #. Label of a Data field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Icon" -msgstr "ikon" +msgstr "" #. Description of the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "Icon will appear on the button" -msgstr "Simge düğmesi görünecektir" +msgstr "" #. Label of a Section Break field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Identity Details" -msgstr "Kimlik Ayrıntıları" +msgstr "" #. Label of a Int field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "Idx" -msgstr "Dzn" +msgstr "" #. Description of the 'Apply Strict User Permissions' (Check) field in DocType #. 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" -msgstr "Sık Kullanılan Kullanıcı İzni Uygula onaylıysa ve Bir Kullanıcı için bir DocType için Kullanıcı İzinleri tanımlandıysa, bağlantının değeri boş olan tüm belgeler o Kullanıcıya gösterilmez" +msgstr "" #. Description of the 'Don't Override Status' (Check) field in DocType #. 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "If Checked workflow status will not override status in list view" -msgstr "İşaretli iş akışı durumu liste görünümünde durumunu geçersiz kılmaz Eğer" +msgstr "" #. Description of the 'Don't Override Status' (Check) field in DocType #. 'Workflow Document State' #: workflow/doctype/workflow_document_state/workflow_document_state.json msgctxt "Workflow Document State" msgid "If Checked workflow status will not override status in list view" -msgstr "İşaretli iş akışı durumu liste görünümünde durumunu geçersiz kılmaz Eğer" +msgstr "" -#: core/doctype/doctype/doctype.py:1706 +#: core/doctype/doctype/doctype.py:1702 public/js/frappe/roles_editor.js:66 msgid "If Owner" -msgstr "Sahibi ise" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:25 +msgid "If a Role does not have access at Level 0, then higher levels are meaningless." +msgstr "" #. Description of the 'Is Active' (Check) field in DocType 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "If checked, all other workflows become inactive." -msgstr "Eğer işaretli ise, diğer tüm iş akışları inaktif hale gelir." +msgstr "" #. Description of the 'Show Absolute Values' (Check) field in DocType 'Print #. Format' @@ -14631,104 +15224,110 @@ msgstr "" #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "If checked, users will not see the Confirm Access dialog." -msgstr "kontrol, kullanıcılar Onayla Erişim iletişimi bir daha görmezsiniz." +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Role' #: core/doctype/role/role.json msgctxt "Role" msgid "If disabled, this role will be removed from all users." -msgstr "devre dışı ise, bu rol tüm kullanıcılar kaldırılır." +msgstr "" #. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth #. Enabled' (Check) field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" -msgstr "Etkinleştirildiğinde, kullanıcı İki Faktör Kimlik Doğrulaması kullanarak herhangi bir IP Adresinden giriş yapabilir, bu, Sistem Ayarları'ndaki tüm kullanıcılar için de ayarlanabilir." +msgstr "" #. Description of the 'Bypass restricted IP Address check If Two Factor Auth #. Enabled' (Check) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" -msgstr "Etkinleştirilirse, tüm kullanıcılar Two Factor Auth kullanarak herhangi bir IP adresinden giriş yapabilirler. Bu, yalnızca Kullanıcı Sayfasındaki belirli kullanıcılar için de ayarlanabilir" +msgstr "" #. Description of the 'Track Changes' (Check) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "If enabled, changes to the document are tracked and shown in timeline" -msgstr "Etkinleştirilirse, belgede yapılan değişiklikler izlenir ve zaman çizelgesinde gösterilir." +msgstr "" #. Description of the 'Track Views' (Check) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "If enabled, document views are tracked, this can happen multiple times" -msgstr "Etkinleştirilirse, belge görünümleri izlenir, bu birkaç kez olabilir" +msgstr "" #. Description of the 'Track Seen' (Check) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "If enabled, the document is marked as seen, the first time a user opens it" -msgstr "Etkinleştirilirse, belge, kullanıcı ilk kez açtığında göründüğü gibi işaretlenir" +msgstr "" #. Description of the 'Send System Notification' (Check) field in DocType #. 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." -msgstr "Etkinleştirilirse, bildirim, gezinme çubuğunun sağ üst köşesindeki bildirimler açılır menüsünde görünecektir." +msgstr "" #. Description of the 'Enable Password Policy' (Check) field in DocType 'System #. Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong." -msgstr "Etkinleştirilirse, şifre kuvveti Minimum Şifre Puanı değerine dayanarak zorlanır. 2'lik bir değer orta derecede güçlü ve 4'ü çok güçlü." +msgstr "" #. Description of the 'Bypass Two Factor Auth for users who login from #. restricted IP Address' (Check) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" -msgstr "Etkinleştirilmişse, Kısıtlı IP Adresi'nden giriş yapan kullanıcılar, İki Faktör Auth için istenmez" +msgstr "" #. Description of the 'Notify Users On Every Login' (Check) field in DocType #. 'Note' #: desk/doctype/note/note.json msgctxt "Note" msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." -msgstr "Etkinleştirilirse, kullanıcıların her eriştiklerinde bilgilendirilirler. Etkinleştirilmezse, kullanıcılar yalnızca bir kez bilgilendirilir." +msgstr "" + +#. Description of the 'Default Workspace' (Link) field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "If non standard port (e.g. 587)" -msgstr "standart olmayan bağlantı noktası (örneğin 587)" +msgstr "" #. Description of the 'Port' (Data) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." -msgstr "Standart olmayan port ise (örn. 587). Google Cloud’ta 2525 numaralı bağlantı noktasını deneyin." +msgstr "" #. Description of the 'Port' (Data) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" -msgstr "Standart olmayan bağlantı noktası ise (örneğin, POP3: 995/110, IMAP: 993/143)" +msgstr "" #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" -msgstr "Standart olmayan bağlantı noktası ise (örneğin, POP3: 995/110, IMAP: 993/143)" +msgstr "" #. Description of the 'Currency Precision' (Select) field in DocType 'System #. Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "If not set, the currency precision will depend on number format" -msgstr "Ayarlanmazsa, para birimi hassaslığı sayı formatına bağlı olacaktır" +msgstr "" #. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json @@ -14746,7 +15345,11 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" -msgstr "Eğer bir kullanıcı için herhangi bir Rol seçildiyse, kullanıcı \"Sistem Kullanıcısı\" olur. \"Sistem Kullanıcısı\" masaüstüne erişim hakkına sahiptir." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:38 +msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." +msgstr "" #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom #. Field' @@ -14773,27 +15376,27 @@ msgstr "" #: core/doctype/custom_docperm/custom_docperm.json msgctxt "Custom DocPerm" msgid "If user is the owner" -msgstr "Kullanıcı sahibi ise" +msgstr "" #. Label of a Check field in DocType 'DocPerm' #: core/doctype/docperm/docperm.json msgctxt "DocPerm" msgid "If user is the owner" -msgstr "Kullanıcı sahibi ise" +msgstr "" -#: core/doctype/data_export/exporter.py:206 +#: core/doctype/data_export/exporter.py:204 msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." -msgstr "Eğer güncelleme yapıyorsanız, \"Üzerine yaz\" seçiniz başka varolan satırlar silinmeyecektir." +msgstr "" -#: core/doctype/data_export/exporter.py:190 +#: core/doctype/data_export/exporter.py:188 msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." -msgstr "Yeni kayıtlar yüklüyorsanız varsa, \"Serisi adlandırma\", zorunlu olur." +msgstr "" -#: core/doctype/data_export/exporter.py:187 +#: core/doctype/data_export/exporter.py:186 msgid "If you are uploading new records, leave the \"name\" (ID) column blank." -msgstr "Yeni kayıtlar yüklüyorsanız, \"isim\" (ID) sütunu boş bırakın." +msgstr "" -#: utils/password.py:200 +#: utils/password.py:197 msgid "If you have recently restored the site you may need to copy the site config contaning original Encryption Key." msgstr "" @@ -14805,85 +15408,85 @@ msgstr "" #: website/doctype/top_bar_item/top_bar_item.json msgctxt "Top Bar Item" msgid "If you set this, this Item will come in a drop-down under the selected parent." -msgstr "Bu ayarlarsanız, bu Ürün seçilen ebeveyn altında açılan gelecektir." +msgstr "" #: templates/emails/administrator_logged_in.html:3 msgid "If you think this is unauthorized, please change the Administrator password." -msgstr "Bu yetkisiz olduğunu düşünüyorsanız, Yönetici parolasını değiştirin." +msgstr "" #. Description of the 'Source Text' (Code) field in DocType 'Translation' #: core/doctype/translation/translation.json msgctxt "Translation" msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." -msgstr "Veri HTML ise, etiketleri ile tam HTML kodunu kopyalayıp yapıştırın lütfen." +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Ignore User Permissions" -msgstr "Kullanıcı İzinlerini Yoksay" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Ignore User Permissions" -msgstr "Kullanıcı İzinlerini Yoksay" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Ignore User Permissions" -msgstr "Kullanıcı İzinlerini Yoksay" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Ignore XSS Filter" -msgstr "XSS Filtresi görmezden" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Ignore XSS Filter" -msgstr "XSS Filtresi görmezden" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Ignore XSS Filter" -msgstr "XSS Filtresi görmezden" +msgstr "" #. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email #. Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Ignore attachments over this size" -msgstr "Bu boyutu üzerinde ekleri görmezden" +msgstr "" #. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email #. Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Ignore attachments over this size" -msgstr "Bu boyutu üzerinde ekleri görmezden" +msgstr "" #. Label of a Table field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Ignored Apps" -msgstr "Yoksayılan Uygulamalar" +msgstr "" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:349 +#: integrations/doctype/dropbox_settings/dropbox_settings.py:348 msgid "Illegal Access Token. Please try again" -msgstr "Yasadışı Erişim Jetonu. Lütfen tekrar deneyin" +msgstr "" -#: model/workflow.py:143 +#: model/workflow.py:139 msgid "Illegal Document Status for {0}" -msgstr "{0} için Geçersiz Belge Durumu" +msgstr "" -#: model/db_query.py:451 model/db_query.py:454 model/db_query.py:1128 +#: model/db_query.py:440 model/db_query.py:443 model/db_query.py:1106 msgid "Illegal SQL Query" -msgstr "Geçersiz SQL Sorgusu" +msgstr "" #: utils/jinja.py:95 msgid "Illegal template" @@ -14950,13 +15553,13 @@ msgstr "Resim" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Image Field" -msgstr "Resim Alanı" +msgstr "" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Image Field" -msgstr "Resim Alanı" +msgstr "" #. Label of a Float field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json @@ -14968,7 +15571,7 @@ msgstr "" #: website/doctype/about_us_team_member/about_us_team_member.json msgctxt "About Us Team Member" msgid "Image Link" -msgstr "Resim Bağlantısı" +msgstr "" #. Label of a Float field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json @@ -14976,15 +15579,15 @@ msgctxt "Letter Head" msgid "Image Width" msgstr "" -#: core/doctype/doctype/doctype.py:1457 +#: core/doctype/doctype/doctype.py:1455 msgid "Image field must be a valid fieldname" -msgstr "Resim Alamı geçerli bir alan adı olmalıdır" +msgstr "" -#: core/doctype/doctype/doctype.py:1459 +#: core/doctype/doctype/doctype.py:1457 msgid "Image field must be of type Attach Image" -msgstr "Resim Alanı \"Resim Ekle\" cinsinden bir alan olmalıdır" +msgstr "" -#: core/doctype/file/utils.py:134 +#: core/doctype/file/utils.py:136 msgid "Image link '{0}' is not valid" msgstr "" @@ -14994,9 +15597,31 @@ msgstr "" #: public/js/frappe/views/image/image_view.js:13 msgid "Images" -msgstr "Görüntüler" +msgstr "" -#: core/doctype/log_settings/log_settings.py:56 +#: core/doctype/user/user.js:356 +msgid "Impersonate" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: core/doctype/activity_log/activity_log.json +msgctxt "Activity Log" +msgid "Impersonate" +msgstr "" + +#: core/doctype/user/user.js:383 +msgid "Impersonate as {0}" +msgstr "" + +#: public/js/frappe/form/footer/version_timeline_content_builder.js:233 +msgid "Impersonated by {0}" +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:21 +msgid "Impersonating {0}" +msgstr "" + +#: core/doctype/log_settings/log_settings.py:57 msgid "Implement `clear_old_logs` method to enable auto error clearing." msgstr "" @@ -15004,29 +15629,29 @@ msgstr "" #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "Implicit" -msgstr "üstü kapalı" +msgstr "" -#: core/doctype/recorder/recorder_list.js:21 +#: core/doctype/recorder/recorder_list.js:16 #: email/doctype/email_group/email_group.js:31 msgid "Import" -msgstr "İçeri Aktar" +msgstr "İçe Aktar" -#: public/js/frappe/list/list_view.js:1628 +#: public/js/frappe/list/list_view.js:1674 msgctxt "Button in list view menu" msgid "Import" -msgstr "İçeri Aktar" +msgstr "İçe Aktar" #. Label of a Check field in DocType 'Custom DocPerm' #: core/doctype/custom_docperm/custom_docperm.json msgctxt "Custom DocPerm" msgid "Import" -msgstr "İçeri Aktar" +msgstr "İçe Aktar" #. Label of a Check field in DocType 'DocPerm' #: core/doctype/docperm/docperm.json msgctxt "DocPerm" msgid "Import" -msgstr "İçeri Aktar" +msgstr "İçe Aktar" #. Label of a Link in the Tools Workspace #. Label of a shortcut in the Tools Workspace @@ -15037,19 +15662,19 @@ msgstr "Verileri İçe Aktar" #: email/doctype/email_group/email_group.js:14 msgid "Import Email From" -msgstr "E-postayı İçe Aktar" +msgstr "" #. Label of a Attach field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Import File" -msgstr "Önemli dosya" +msgstr "" #. Label of a Section Break field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Import File Errors and Warnings" -msgstr "Dosya Hatalarını ve Uyarılarını İçe Aktar" +msgstr "" #. Label of a Section Break field in DocType 'Data Import' #: core/doctype/data_import/data_import.json @@ -15061,79 +15686,79 @@ msgstr "Günlüğü İçe Aktar" #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Import Log Preview" -msgstr "Günlük Önizlemesini İçe Aktar" +msgstr "" #. Label of a HTML field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Import Preview" -msgstr "Önizlemeyi İçe Aktar" +msgstr "" #: core/doctype/data_import/data_import.js:41 msgid "Import Progress" -msgstr "İçe Aktarım İlerlemesi" +msgstr "" #: email/doctype/email_group/email_group.js:8 #: email/doctype/email_group/email_group.js:30 msgid "Import Subscribers" -msgstr "Aboneleri İçe Aktar" +msgstr "" #. Label of a Select field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Import Type" -msgstr "İthalat türü" +msgstr "" #. Label of a HTML field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Import Warnings" -msgstr "Uyarıları İçe Aktar" +msgstr "" #: public/js/frappe/views/file/file_view.js:117 msgid "Import Zip" -msgstr "Zip Al" +msgstr "" #. Label of a Data field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Import from Google Sheets" -msgstr "Google E-Tablolar'dan içe aktarın" +msgstr "" -#: core/doctype/data_import/importer.py:598 +#: core/doctype/data_import/importer.py:593 msgid "Import template should be of type .csv, .xlsx or .xls" -msgstr "İçe aktarma şablonu .csv, .xlsx veya .xls türünde olmalıdır" +msgstr "" -#: core/doctype/data_import/importer.py:467 +#: core/doctype/data_import/importer.py:463 msgid "Import template should contain a Header and atleast one row." -msgstr "İçe aktarma şablonu bir Başlık ve en az bir satır içermelidir." +msgstr "" -#: core/doctype/data_import/data_import.js:170 +#: core/doctype/data_import/data_import.js:165 msgid "Import timed out, please re-try." msgstr "" -#: core/doctype/data_import/data_import.py:61 +#: core/doctype/data_import/data_import.py:60 msgid "Importing {0} is not allowed." msgstr "" #: integrations/doctype/google_contacts/google_contacts.js:19 msgid "Importing {0} of {1}" -msgstr "{1} içinden {0} içe aktar" +msgstr "" #: core/doctype/data_import/data_import.js:35 msgid "Importing {0} of {1}, {2}" -msgstr "{1}, {2} içinden {0} içe aktarılıyor" +msgstr "" #: public/js/frappe/ui/filters/filter.js:20 msgid "In" -msgstr "IN" +msgstr "" #. Description of the 'Force User to Reset Password' (Int) field in DocType #. 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "In Days" -msgstr "Günlerde" +msgstr "" #. Description of the Onboarding Step 'Setup Limited Access for a User' #: custom/onboarding_step/role_permissions/role_permissions.json @@ -15144,35 +15769,35 @@ msgstr "" #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "In Filter" -msgstr "Filtre" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "In Filter" -msgstr "Filtre" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "In Global Search" -msgstr "Küresel Ara" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "In Global Search" -msgstr "Küresel Ara" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "In Global Search" -msgstr "Küresel Ara" +msgstr "" #: core/doctype/doctype/doctype.js:95 msgid "In Grid View" -msgstr "Grid Görünüm" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json @@ -15182,49 +15807,49 @@ msgstr "" #: core/doctype/doctype/doctype.js:96 msgid "In List View" -msgstr "Liste Görünümü" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "In List View" -msgstr "Liste Görünümü" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "In List View" -msgstr "Liste Görünümü" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "In List View" -msgstr "Liste Görünümü" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "In Preview" -msgstr "Önizlemede" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "In Preview" -msgstr "Önizlemede" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "In Preview" -msgstr "Önizlemede" +msgstr "" #: core/doctype/data_import/data_import.js:42 msgid "In Progress" msgstr "Devam ediyor" -#: database/database.py:233 +#: database/database.py:240 msgid "In Read Only Mode" msgstr "" @@ -15232,19 +15857,19 @@ msgstr "" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "In Reply To" -msgstr "Cevap olarak" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "In Standard Filter" -msgstr "Standart Filtre" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "In Standard Filter" -msgstr "Standart Filtre" +msgstr "" #. Description of the Onboarding Step 'Generate Custom Reports' #: custom/onboarding_step/report_builder/report_builder.json @@ -15255,18 +15880,18 @@ msgstr "" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "In points. Default is 9." -msgstr "Puan. Standart 9 olduğunu." +msgstr "" #. Description of the 'Allow Login After Fail' (Int) field in DocType 'System #. Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "In seconds" -msgstr "Saniyeler içinde" +msgstr "" -#: core/doctype/recorder/recorder_list.js:107 +#: core/doctype/recorder/recorder_list.js:209 msgid "Inactive" -msgstr "Etkisiz" +msgstr "Pasif" #: public/js/frappe/ui/field_group.js:131 msgid "Inavlid Values" @@ -15274,19 +15899,19 @@ msgstr "" #: email/doctype/email_account/email_account_list.js:19 msgid "Inbox" -msgstr "Gelen kutusu" +msgstr "" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Inbox" -msgstr "Gelen kutusu" +msgstr "" #. Name of a role #: core/doctype/communication/communication.json #: email/doctype/email_account/email_account.json msgid "Inbox User" -msgstr "Gelen Kutusu Kullanıcısı" +msgstr "" #. Label of a Check field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -15298,35 +15923,35 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Include Search in Top Bar" -msgstr "Top Bar ara dahil et" +msgstr "" #: website/doctype/website_theme/website_theme.js:61 msgid "Include Theme from Apps" -msgstr "Uygulamalardan Temayı Dahil Et" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Include Web View Link in Email" -msgstr "E-postayla belge Web Görünümü bağlantısını gönder" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1488 +#: public/js/frappe/views/reports/query_report.js:1505 msgid "Include filters" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1480 +#: public/js/frappe/views/reports/query_report.js:1497 msgid "Include indentation" -msgstr "Girinti dahil et" +msgstr "" #: public/js/frappe/form/controls/password.js:107 msgid "Include symbols, numbers and capital letters in the password" -msgstr "Parolaya sembolleri, sayıları ve büyük harfleri ekleyin" +msgstr "" #. Label of a Section Break field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Incoming (POP/IMAP) Settings" -msgstr "Gelen (POP/IMAP) Ayarları" +msgstr "" #. Label of a Data field in DocType 'Email Account' #: email/doctype/email_account/email_account.json @@ -15348,69 +15973,69 @@ msgstr "" #: email/doctype/email_domain/email_domain.py:32 msgid "Incoming email account not correct" -msgstr "Gelen e-posta hesabı doğru değil" +msgstr "" -#: model/virtual_doctype.py:81 model/virtual_doctype.py:94 +#: model/virtual_doctype.py:79 model/virtual_doctype.py:92 msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: auth.py:236 +#: auth.py:232 msgid "Incomplete login details" -msgstr "Eksik oturum açma bilgileri" +msgstr "" -#: email/smtp.py:103 +#: email/smtp.py:104 msgid "Incorrect Configuration" -msgstr "Yanlış Yapılandırma" +msgstr "" -#: utils/csvutils.py:207 +#: utils/csvutils.py:209 msgid "Incorrect URL" -msgstr "Yanlış URL" +msgstr "" -#: utils/password.py:90 +#: utils/password.py:89 msgid "Incorrect User or Password" -msgstr "Yanlış Kullanıcı veya Şifre" +msgstr "" -#: twofactor.py:177 twofactor.py:189 +#: twofactor.py:176 twofactor.py:188 msgid "Incorrect Verification code" -msgstr "Yanlış doğrulama kodu" - -#: model/document.py:1352 -msgid "Incorrect value in row {0}: {1} must be {2} {3}" -msgstr "Yanlış değer satırda {0}: {1} olmalı {2} {3}" +msgstr "" #: model/document.py:1356 -msgid "Incorrect value: {0} must be {1} {2}" -msgstr "Yanlış değeri: {0} olmalı {1} {2}" +msgid "Incorrect value in row {0}: {1} must be {2} {3}" +msgstr "" -#: model/__init__.py:139 model/meta.py:48 public/js/frappe/model/meta.js:200 +#: model/document.py:1360 +msgid "Incorrect value: {0} must be {1} {2}" +msgstr "" + +#: model/meta.py:48 public/js/frappe/model/meta.js:200 #: public/js/frappe/model/model.js:114 -#: public/js/frappe/views/reports/report_view.js:941 +#: public/js/frappe/views/reports/report_view.js:938 msgid "Index" -msgstr "Indeks" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Index" -msgstr "Indeks" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Index" -msgstr "Indeks" +msgstr "" #. Label of a Int field in DocType 'Recorder Query' #: core/doctype/recorder_query/recorder_query.json msgctxt "Recorder Query" msgid "Index" -msgstr "Indeks" +msgstr "" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Index Web Pages for Search" -msgstr "Arama için Web Sayfalarını İndeksle" +msgstr "" #. Label of a Data field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -15428,17 +16053,17 @@ msgstr "" #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Indicator" -msgstr "Gösterge" +msgstr "" #. Label of a Select field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Indicator Color" -msgstr "" +msgstr "Gösterge Rengi" -#: public/js/frappe/views/workspace/workspace.js:639 -#: public/js/frappe/views/workspace/workspace.js:967 -#: public/js/frappe/views/workspace/workspace.js:1211 +#: public/js/frappe/views/workspace/workspace.js:650 +#: public/js/frappe/views/workspace/workspace.js:978 +#: public/js/frappe/views/workspace/workspace.js:1222 msgid "Indicator color" msgstr "" @@ -15446,63 +16071,71 @@ msgstr "" #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Info" -msgstr "Bilgi" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Info" -msgstr "Bilgi" +msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "Info" -msgstr "Bilgi" +msgstr "" #: core/doctype/data_export/exporter.py:144 msgid "Info:" -msgstr "Bilgi:" +msgstr "" #. Label of a Select field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Initial Sync Count" -msgstr "İlk Eşitleme Sayısı" +msgstr "" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "InnoDB" -msgstr "InnoDB" +msgstr "" #: core/doctype/data_import/data_import_list.js:39 msgid "Insert" -msgstr "Ekle" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1712 +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Above" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1729 msgid "Insert After" -msgstr "Sonra Ekle" +msgstr "" #. Label of a Select field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Insert After" -msgstr "Sonra Ekle" +msgstr "" #: custom/doctype/custom_field/custom_field.py:249 msgid "Insert After cannot be set as {0}" -msgstr "Olarak ayarlanamaz sonra yerleştirin {0}" +msgstr "" #: custom/doctype/custom_field/custom_field.py:242 msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" -msgstr "alan '{0}' Özel Alan belirtilen sonra yerleştirin '{1}' etiketi ile '{2}', yok" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:364 +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Below" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:359 msgid "Insert Column Before {0}" -msgstr "{0} önündeki Sütun Ekle" +msgstr "" -#: public/js/frappe/form/controls/markdown_editor.js:81 +#: public/js/frappe/form/controls/markdown_editor.js:82 msgid "Insert Image in Markdown" msgstr "" @@ -15510,56 +16143,67 @@ msgstr "" #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Insert New Records" -msgstr "Yeni Kayıt Ekle" +msgstr "" #. Label of a Check field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Insert Style" -msgstr "Stil ekleme" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:646 -#: public/js/frappe/ui/toolbar/search_utils.js:647 +#: public/js/frappe/ui/toolbar/search_utils.js:662 +#: public/js/frappe/ui/toolbar/search_utils.js:663 msgid "Install {0} from Marketplace" msgstr "" #. Name of a DocType #: core/doctype/installed_application/installed_application.json msgid "Installed Application" -msgstr "Yüklü Uygulama" +msgstr "" #. Name of a DocType #: core/doctype/installed_applications/installed_applications.json msgid "Installed Applications" -msgstr "Yüklü Uygulamalar" +msgstr "" #. Label of a Table field in DocType 'Installed Applications' #: core/doctype/installed_applications/installed_applications.json msgctxt "Installed Applications" msgid "Installed Applications" -msgstr "Yüklü Uygulamalar" +msgstr "" #: core/doctype/installed_applications/installed_applications.js:18 +#: public/js/frappe/ui/toolbar/about.js:8 msgid "Installed Apps" -msgstr "Kurulan Uygulamalar" +msgstr "" -#: permissions.py:826 +#. Label of a HTML field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Instructions" +msgstr "Talimatlar" + +#: templates/includes/login/login.js:262 +msgid "Instructions Emailed" +msgstr "" + +#: permissions.py:822 msgid "Insufficient Permission Level for {0}" msgstr "" -#: database/query.py:371 desk/form/load.py:40 model/document.py:234 +#: database/query.py:375 desk/form/load.py:40 model/document.py:237 msgid "Insufficient Permission for {0}" -msgstr "{0} için yetersiz izin" +msgstr "" -#: desk/reportview.py:322 +#: desk/reportview.py:339 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: desk/reportview.py:293 +#: desk/reportview.py:310 msgid "Insufficient Permissions for editing Report" msgstr "" -#: core/doctype/doctype/doctype.py:447 +#: core/doctype/doctype/doctype.py:444 msgid "Insufficient attachment limit" msgstr "" @@ -15567,72 +16211,72 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Int" -msgstr "Int" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Int" -msgstr "Int" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Int" -msgstr "Int" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #: core/doctype/report_column/report_column.json msgctxt "Report Column" msgid "Int" -msgstr "Int" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' #: core/doctype/report_filter/report_filter.json msgctxt "Report Filter" msgid "Int" -msgstr "Int" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Int" -msgstr "Int" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Int" -msgstr "Int" +msgstr "" #. Name of a DocType #: integrations/doctype/integration_request/integration_request.json msgid "Integration Request" -msgstr "Entegrasyon Talebi" +msgstr "" #. Name of a Workspace #: integrations/workspace/integrations/integrations.json msgid "Integrations" -msgstr "Entegrasyonlar" +msgstr "" #. Group in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "Integrations" -msgstr "Entegrasyonlar" +msgstr "" #. Label of a Tab Break field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Integrations" -msgstr "Entegrasyonlar" +msgstr "" #. Description of the 'Delivery Status' (Select) field in DocType #. 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Integrations can use this field to set email delivery status" -msgstr "Entegrasyonlar e-posta dağıtım durumunu ayarlamak için bu alanı kullanabilirsiniz" +msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -15640,21 +16284,34 @@ msgctxt "Print Settings" msgid "Inter" msgstr "" +#: desk/page/user_profile/user_profile_sidebar.html:37 +msgid "Interests" +msgstr "" + #. Label of a Small Text field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Interests" -msgstr "İlgi Alanları" +msgstr "" #. Option for the 'Level' (Select) field in DocType 'Help Article' #: website/doctype/help_article/help_article.json msgctxt "Help Article" msgid "Intermediate" -msgstr "Orta düzey" +msgstr "" #: public/js/frappe/request.js:232 msgid "Internal Server Error" -msgstr "İç Sunucu Hatası" +msgstr "" + +#. Description of a DocType +#: core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + +#: desk/page/user_profile/user_profile_sidebar.html:22 +msgid "Intro" +msgstr "" #. Label of a Data field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json @@ -15667,20 +16324,20 @@ msgstr "" #: website/doctype/about_us_settings/about_us_settings.json msgctxt "About Us Settings" msgid "Introduce your company to the website visitor." -msgstr "Web sitesi ziyaretçi için şirketinizi tanıtın" +msgstr "" #. Label of a Section Break field in DocType 'Contact Us Settings' #. Label of a Text Editor field in DocType 'Contact Us Settings' #: website/doctype/contact_us_settings/contact_us_settings.json msgctxt "Contact Us Settings" msgid "Introduction" -msgstr "Giriş" +msgstr "Tanıtım/Giriş" #. Label of a Text Editor field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Introduction" -msgstr "Giriş" +msgstr "Tanıtım/Giriş" #. Title of an Onboarding Step #: website/onboarding_step/introduction_to_website/introduction_to_website.json @@ -15692,7 +16349,7 @@ msgstr "" #: website/doctype/contact_us_settings/contact_us_settings.json msgctxt "Contact Us Settings" msgid "Introductory information for the Contact Us Page" -msgstr "İletişim Sayfası için gerekli bilgiler" +msgstr "" #. Label of a Data field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json @@ -15705,50 +16362,50 @@ msgstr "" #: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgctxt "OAuth Authorization Code" msgid "Invalid" -msgstr "Geçersiz" +msgstr "" -#: public/js/form_builder/utils.js:221 public/js/frappe/form/grid_row.js:748 +#: public/js/form_builder/utils.js:221 public/js/frappe/form/grid_row.js:769 #: public/js/frappe/form/layout.js:774 msgid "Invalid \"depends_on\" expression" -msgstr "Geçersiz 'depends_on' ifadesi" +msgstr "" #: public/js/frappe/views/reports/query_report.js:510 msgid "Invalid \"depends_on\" expression set in filter {0}" -msgstr "{0} filtresinde geçersiz 'bağımlı_on' ifadesi ayarlandı" +msgstr "" #: public/js/frappe/form/save.js:206 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" -#: utils/nestedset.py:181 +#: utils/nestedset.py:177 msgid "Invalid Action" msgstr "" #: utils/csvutils.py:35 msgid "Invalid CSV Format" -msgstr "Geçersiz CSV Biçimi" +msgstr "" -#: integrations/doctype/webhook/webhook.py:87 +#: integrations/doctype/webhook/webhook.py:90 msgid "Invalid Condition: {}" msgstr "" -#: email/smtp.py:132 +#: email/smtp.py:134 msgid "Invalid Credentials" msgstr "Geçersiz kimlik bilgileri" -#: utils/data.py:124 utils/data.py:285 +#: utils/data.py:125 utils/data.py:289 msgid "Invalid Date" -msgstr "Geçersiz tarih" +msgstr "" #: www/list.py:85 msgid "Invalid DocType" msgstr "" -#: database/query.py:95 +#: database/query.py:97 msgid "Invalid DocType: {0}" msgstr "" -#: core/doctype/doctype/doctype.py:1223 +#: core/doctype/doctype/doctype.py:1221 msgid "Invalid Fieldname" msgstr "" @@ -15756,73 +16413,77 @@ msgstr "" msgid "Invalid File URL" msgstr "" -#: public/js/form_builder/store.js:216 +#: public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" #: utils/dashboard.py:61 msgid "Invalid Filter Value" -msgstr "Geçersiz Filtre Değeri" +msgstr "" #: website/doctype/website_settings/website_settings.py:83 msgid "Invalid Home Page" -msgstr "Geçersiz Ana Sayfa" +msgstr "" #: utils/verified_command.py:48 www/update-password.html:151 msgid "Invalid Link" -msgstr "Geçersiz Bağlantı" +msgstr "" #: www/login.py:112 msgid "Invalid Login Token" -msgstr "Geçersiz Girişi Jetonu" +msgstr "" + +#: templates/includes/login/login.js:291 +msgid "Invalid Login. Try again." +msgstr "" #: email/receive.py:105 email/receive.py:142 msgid "Invalid Mail Server. Please rectify and try again." -msgstr "Geçersiz Mail Sunucusu. Düzeltmek ve tekrar deneyin." +msgstr "" -#: model/naming.py:91 +#: model/naming.py:94 msgid "Invalid Naming Series: {}" msgstr "" -#: core/doctype/rq_job/rq_job.py:122 +#: core/doctype/rq_job/rq_job.py:113 msgid "Invalid Operation" msgstr "" -#: core/doctype/doctype/doctype.py:1582 core/doctype/doctype/doctype.py:1591 +#: core/doctype/doctype/doctype.py:1578 core/doctype/doctype/doctype.py:1587 msgid "Invalid Option" -msgstr "Geçersiz Seçenek" +msgstr "" -#: email/smtp.py:102 +#: email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:182 +#: email/doctype/auto_email_report/auto_email_report.py:188 msgid "Invalid Output Format" -msgstr "Geçersiz Çıktı Biçimi" +msgstr "" -#: integrations/doctype/connected_app/connected_app.py:166 +#: integrations/doctype/connected_app/connected_app.py:167 msgid "Invalid Parameters." msgstr "" -#: core/doctype/user/user.py:1195 www/update-password.html:121 +#: core/doctype/user/user.py:1229 www/update-password.html:121 #: www/update-password.html:142 www/update-password.html:144 -#: www/update-password.html:246 +#: www/update-password.html:245 msgid "Invalid Password" -msgstr "geçersiz şifre" +msgstr "" #: utils/__init__.py:109 msgid "Invalid Phone Number" msgstr "" -#: auth.py:93 utils/oauth.py:184 utils/oauth.py:191 www/login.py:112 +#: auth.py:93 utils/oauth.py:179 utils/oauth.py:186 www/login.py:112 msgid "Invalid Request" -msgstr "Geçersiz İstek" +msgstr "" #: desk/search.py:26 msgid "Invalid Search Field {0}" -msgstr "Geçersiz Arama Alanı {0}" +msgstr "" -#: core/doctype/doctype/doctype.py:1165 +#: core/doctype/doctype/doctype.py:1163 msgid "Invalid Table Fieldname" msgstr "" @@ -15830,119 +16491,115 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: core/doctype/file/file.py:217 public/js/frappe/widgets/widget_dialog.js:565 -#: utils/csvutils.py:199 utils/csvutils.py:220 +#: core/doctype/file/file.py:217 public/js/frappe/widgets/widget_dialog.js:604 +#: utils/csvutils.py:201 utils/csvutils.py:222 msgid "Invalid URL" msgstr "Geçersiz URL" #: email/receive.py:150 msgid "Invalid User Name or Support Password. Please rectify and try again." -msgstr "Geçersiz Kullanıcı Adı veya ޞifre Destek. Lütfen Düzeltin ve tekrar deneyin." +msgstr "" -#: integrations/doctype/webhook/webhook.py:116 +#: integrations/doctype/webhook/webhook.py:119 msgid "Invalid Webhook Secret" msgstr "" -#: desk/reportview.py:150 +#: desk/reportview.py:167 msgid "Invalid aggregate function" msgstr "" -#: public/js/frappe/views/reports/report_view.js:373 +#: public/js/frappe/views/reports/report_view.js:368 msgid "Invalid column" -msgstr "Geçersiz sütun" +msgstr "" -#: model/document.py:841 model/document.py:855 +#: model/document.py:851 model/document.py:865 msgid "Invalid docstatus" msgstr "" #: public/js/frappe/utils/dashboard_utils.js:229 msgid "Invalid expression set in filter {0}" -msgstr "{0} filtresinde geçersiz ifade kümesi" +msgstr "" #: public/js/frappe/utils/dashboard_utils.js:219 msgid "Invalid expression set in filter {0} ({1})" -msgstr "{0} ({1}) filtresinde geçersiz ifade kümesi" +msgstr "" -#: utils/data.py:2128 +#: utils/data.py:2126 msgid "Invalid field name {0}" -msgstr "Geçersiz alan adı {0}" +msgstr "" #: core/doctype/doctype/doctype.py:1048 msgid "Invalid fieldname '{0}' in autoname" -msgstr "autoname geçersiz AlanAdı '{0}'" +msgstr "" #: client.py:344 msgid "Invalid file path: {0}" -msgstr "Geçersiz dosya yolu: {0}" +msgstr "" -#: database/query.py:173 public/js/frappe/ui/filters/filter_list.js:199 +#: database/query.py:173 public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" -msgstr "Geçersiz filtre: {0}" +msgstr "" -#: model/utils/__init__.py:69 -msgid "Invalid include path" -msgstr "Geçersiz yol ekle" - -#: desk/doctype/dashboard/dashboard.py:68 -#: desk/doctype/dashboard_chart/dashboard_chart.py:424 +#: desk/doctype/dashboard/dashboard.py:67 +#: desk/doctype/dashboard_chart/dashboard_chart.py:414 msgid "Invalid json added in the custom options: {0}" -msgstr "Özel seçeneklere geçersiz json eklendi: {0}" +msgstr "" -#: model/naming.py:445 +#: model/naming.py:466 msgid "Invalid name type (integer) for varchar name column" msgstr "" -#: model/naming.py:52 +#: model/naming.py:55 msgid "Invalid naming series {}: dot (.) missing" msgstr "" -#: core/doctype/data_import/importer.py:438 +#: core/doctype/data_import/importer.py:434 msgid "Invalid or corrupted content for import" -msgstr "İçe aktarma için geçersiz veya bozuk içerik" +msgstr "" #: website/doctype/website_settings/website_settings.py:139 msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: app.py:301 +#: app.py:305 msgid "Invalid request arguments" msgstr "" -#: integrations/doctype/connected_app/connected_app.py:172 +#: integrations/doctype/connected_app/connected_app.py:173 msgid "Invalid state." msgstr "" -#: core/doctype/data_import/importer.py:415 +#: core/doctype/data_import/importer.py:411 msgid "Invalid template file for import" -msgstr "İçe aktarma için geçersiz şablon dosyası" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:162 +#: integrations/doctype/ldap_settings/ldap_settings.py:164 #: integrations/doctype/ldap_settings/ldap_settings.py:335 msgid "Invalid username or password" -msgstr "Geçersiz kullanıcı adı veya şifre" +msgstr "" #: public/js/frappe/web_form/web_form.js:229 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: core/doctype/doctype/doctype.py:1515 +#: core/doctype/doctype/doctype.py:1513 msgid "Invalid {0} condition" -msgstr "Geçersiz {0} durumu" +msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "Inverse" -msgstr "Ters" +msgstr "" -#: contacts/doctype/contact/contact.js:25 +#: contacts/doctype/contact/contact.js:30 msgid "Invite as User" -msgstr "kullanıcı olarak Davet et" +msgstr "" #: public/js/frappe/ui/filters/filter.js:22 msgid "Is" -msgstr "Is" +msgstr "" #. Label of a Check field in DocType 'Workflow' #: workflow/doctype/workflow/workflow.json @@ -15954,7 +16611,7 @@ msgstr "Aktif mi" #: core/doctype/file/file.json msgctxt "File" msgid "Is Attachments Folder" -msgstr "Ekler Klasörü mü" +msgstr "" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -15968,39 +16625,39 @@ msgctxt "DocType" msgid "Is Calendar and Gantt" msgstr "" -#: core/doctype/doctype/doctype_list.js:34 +#: core/doctype/doctype/doctype_list.js:49 msgid "Is Child Table" -msgstr "Alt tablo mu" +msgstr "" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Is Child Table" -msgstr "Alt tablo mu" +msgstr "" #. Label of a Check field in DocType 'DocType Link' #: core/doctype/doctype_link/doctype_link.json msgctxt "DocType Link" msgid "Is Child Table" -msgstr "Alt tablo mu" +msgstr "" #. Label of a Check field in DocType 'Module Onboarding' #: desk/doctype/module_onboarding/module_onboarding.json msgctxt "Module Onboarding" msgid "Is Complete" -msgstr "Tamamlandı" +msgstr "" #. Label of a Check field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Is Complete" -msgstr "Tamamlandı" +msgstr "" #. Label of a Check field in DocType 'Email Flag Queue' #: email/doctype/email_flag_queue/email_flag_queue.json msgctxt "Email Flag Queue" msgid "Is Completed" -msgstr "Tamamlandı mı" +msgstr "" #. Label of a Check field in DocType 'Role' #: core/doctype/role/role.json @@ -16018,29 +16675,29 @@ msgstr "" #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Is Custom Field" -msgstr "Özel Alan mı" +msgstr "" #: core/doctype/user_permission/user_permission_list.js:69 msgid "Is Default" -msgstr "Standart mı" +msgstr "Varsayılan mı" #. Label of a Check field in DocType 'Address Template' #: contacts/doctype/address_template/address_template.json msgctxt "Address Template" msgid "Is Default" -msgstr "Standart mı" +msgstr "Varsayılan mı" #. Label of a Check field in DocType 'Dashboard' #: desk/doctype/dashboard/dashboard.json msgctxt "Dashboard" msgid "Is Default" -msgstr "Standart mı" +msgstr "Varsayılan mı" #. Label of a Check field in DocType 'User Permission' #: core/doctype/user_permission/user_permission.json msgctxt "User Permission" msgid "Is Default" -msgstr "Standart mı" +msgstr "Varsayılan mı" #. Label of a Check field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json @@ -16052,11 +16709,11 @@ msgstr "" #: core/doctype/file/file.json msgctxt "File" msgid "Is Folder" -msgstr "Klasör mü" +msgstr "" #: public/js/frappe/list/list_filter.js:43 msgid "Is Global" -msgstr "Genel mi" +msgstr "" #. Label of a Check field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -16068,71 +16725,71 @@ msgstr "" #: core/doctype/file/file.json msgctxt "File" msgid "Is Home Folder" -msgstr "Ana Klasör mü" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Is Mandatory Field" -msgstr "Zorunlu Alan mi" +msgstr "" #. Label of a Check field in DocType 'Workflow Document State' #: workflow/doctype/workflow_document_state/workflow_document_state.json msgctxt "Workflow Document State" msgid "Is Optional State" -msgstr "İsteğe Bağlı Durum" +msgstr "" #. Label of a Check field in DocType 'Contact Email' #: contacts/doctype/contact_email/contact_email.json msgctxt "Contact Email" msgid "Is Primary" -msgstr "Birincil mi" +msgstr "" #. Label of a Check field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Is Primary Contact" -msgstr "Birincil İrtibat" +msgstr "" #. Label of a Check field in DocType 'Contact Phone' #: contacts/doctype/contact_phone/contact_phone.json msgctxt "Contact Phone" msgid "Is Primary Mobile" -msgstr "Birincil Cep mi" +msgstr "" #. Label of a Check field in DocType 'Contact Phone' #: contacts/doctype/contact_phone/contact_phone.json msgctxt "Contact Phone" msgid "Is Primary Phone" -msgstr "Birincil Telefon mu" +msgstr "" #. Label of a Check field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "Is Private" -msgstr "Özel mi" +msgstr "" #. Label of a Check field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Is Public" -msgstr "Herkese Açık" +msgstr "" #. Label of a Check field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Is Public" -msgstr "Herkese Açık" +msgstr "" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Is Published Field" -msgstr "Alan Yayınlandı mı" +msgstr "" -#: core/doctype/doctype/doctype.py:1466 +#: core/doctype/doctype/doctype.py:1464 msgid "Is Published Field must be a valid fieldname" -msgstr "Yayınlandı Alan geçerli bir alan adı olmalıdır" +msgstr "" #. Label of a Check field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json @@ -16146,97 +16803,97 @@ msgctxt "Integration Request" msgid "Is Remote Request?" msgstr "" -#: core/doctype/doctype/doctype_list.js:48 +#: core/doctype/doctype/doctype_list.js:64 msgid "Is Single" -msgstr "Tek mi" +msgstr "" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Is Single" -msgstr "Tek mi" +msgstr "" #. Label of a Check field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Is Single" -msgstr "Tek mi" +msgstr "" #. Label of a Check field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Is Skipped" -msgstr "Atlandı" +msgstr "" #. Label of a Check field in DocType 'Email Rule' #: email/doctype/email_rule/email_rule.json msgctxt "Email Rule" msgid "Is Spam" -msgstr "Spam mı" +msgstr "" #. Label of a Check field in DocType 'Dashboard' #: desk/doctype/dashboard/dashboard.json msgctxt "Dashboard" msgid "Is Standard" -msgstr "Standart mı" +msgstr "" #. Label of a Check field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Is Standard" -msgstr "Standart mı" +msgstr "" #. Label of a Check field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Is Standard" -msgstr "Standart mı" +msgstr "" #. Label of a Check field in DocType 'Navbar Item' #: core/doctype/navbar_item/navbar_item.json msgctxt "Navbar Item" msgid "Is Standard" -msgstr "Standart mı" +msgstr "" #. Label of a Check field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Is Standard" -msgstr "Standart mı" +msgstr "" #. Label of a Check field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Is Standard" -msgstr "Standart mı" +msgstr "" #. Label of a Select field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Is Standard" -msgstr "Standart mı" +msgstr "" #. Label of a Check field in DocType 'User Type' #: core/doctype/user_type/user_type.json msgctxt "User Type" msgid "Is Standard" -msgstr "Standart mı" +msgstr "" #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Is Standard" -msgstr "Standart mı" +msgstr "" -#: core/doctype/doctype/doctype_list.js:25 +#: core/doctype/doctype/doctype_list.js:39 msgid "Is Submittable" -msgstr "Gönderilebilir mi" +msgstr "" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Is Submittable" -msgstr "Gönderilebilir mi" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -16260,7 +16917,7 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Is Table" -msgstr "Tablo mu" +msgstr "" #. Label of a Check field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -16272,13 +16929,13 @@ msgstr "" #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Is Tree" -msgstr "Ağaç mı" +msgstr "" #. Label of a Data field in DocType 'Web Page View' #: website/doctype/web_page_view/web_page_view.json msgctxt "Web Page View" msgid "Is Unique" -msgstr "Benzersiz" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -16298,23 +16955,23 @@ msgctxt "DocType" msgid "Is Virtual" msgstr "" -#: core/doctype/file/utils.py:155 utils/file_manager.py:315 +#: core/doctype/file/utils.py:157 utils/file_manager.py:311 msgid "It is risky to delete this file: {0}. Please contact your System Manager." -msgstr "Bu dosyayı silmek için riskli: {0}. Sistem Yöneticisi irtibata geçiniz." +msgstr "" #. Label of a Data field in DocType 'Navbar Item' #: core/doctype/navbar_item/navbar_item.json msgctxt "Navbar Item" msgid "Item Label" -msgstr "Öğe Etiketi" +msgstr "" #. Label of a Select field in DocType 'Navbar Item' #: core/doctype/navbar_item/navbar_item.json msgctxt "Navbar Item" msgid "Item Type" -msgstr "Öğe türü" +msgstr "" -#: utils/nestedset.py:234 +#: utils/nestedset.py:228 msgid "Item cannot be added to its own descendants" msgstr "" @@ -16322,7 +16979,7 @@ msgstr "" #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "JS" -msgstr "JS" +msgstr "" #. Label of a HTML field in DocType 'Custom HTML Block' #: desk/doctype/custom_html_block/custom_html_block.json @@ -16334,31 +16991,31 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "JSON" -msgstr "JSON" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "JSON" -msgstr "JSON" +msgstr "" #. Label of a Code field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "JSON" -msgstr "JSON" +msgstr "" #. Option for the 'Request Structure' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "JSON" -msgstr "JSON" +msgstr "" #. Label of a Code field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "JSON Request Body" -msgstr "JSON İstek Organı" +msgstr "" #: templates/signup.html:5 msgid "Jane Doe" @@ -16368,49 +17025,49 @@ msgstr "" #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "JavaScript" -msgstr "Javascript" +msgstr "" #. Description of the 'Javascript' (Code) field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" -msgstr "JavaScript Format: frappe.query_reports ['ReportName'] = {}" +msgstr "" #. Label of a Section Break field in DocType 'Custom HTML Block' #: desk/doctype/custom_html_block/custom_html_block.json msgctxt "Custom HTML Block" msgid "Javascript" -msgstr "JavaScript" +msgstr "" #. Label of a Code field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Javascript" -msgstr "JavaScript" +msgstr "" #. Label of a Code field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Javascript" -msgstr "JavaScript" +msgstr "" #. Label of a Code field in DocType 'Website Script' #: website/doctype/website_script/website_script.json msgctxt "Website Script" msgid "Javascript" -msgstr "JavaScript" +msgstr "" #: www/login.html:71 msgid "Javascript is disabled on your browser" -msgstr "Tarayıcınızda Javascript devre dışı" +msgstr "" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Jinja" -msgstr "Jinja" +msgstr "" -#. Label of a Link field in DocType 'Prepared Report' +#. Label of a Data field in DocType 'Prepared Report' #: core/doctype/prepared_report/prepared_report.json msgctxt "Prepared Report" msgid "Job ID" @@ -16450,17 +17107,17 @@ msgstr "" msgid "Job Stopped Successfully" msgstr "" -#: core/doctype/rq_job/rq_job.py:122 +#: core/doctype/rq_job/rq_job.py:113 msgid "Job is not running." msgstr "" -#: desk/doctype/event/event.js:51 +#: desk/doctype/event/event.js:55 msgid "Join video conference with {0}" msgstr "" #: public/js/frappe/form/toolbar.js:355 public/js/frappe/form/toolbar.js:757 msgid "Jump to field" -msgstr "Alana atla" +msgstr "" #: public/js/frappe/utils/number_systems.js:17 #: public/js/frappe/utils/number_systems.js:31 @@ -16473,92 +17130,102 @@ msgstr "" #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Kanban" -msgstr "Kanban" +msgstr "" #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Kanban" -msgstr "Kanban" +msgstr "" #. Name of a DocType #: desk/doctype/kanban_board/kanban_board.json msgid "Kanban Board" -msgstr "KanBoard" +msgstr "Kanban Kurulu" #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Kanban Board" -msgstr "KanBoard" +msgstr "Kanban Kurulu" #. Label of a Link field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Kanban Board" -msgstr "KanBoard" +msgstr "Kanban Kurulu" #. Name of a DocType #: desk/doctype/kanban_board_column/kanban_board_column.json msgid "Kanban Board Column" -msgstr "Kanboard Sütun" +msgstr "" #: public/js/frappe/views/kanban/kanban_view.js:385 msgid "Kanban Board Name" -msgstr "Kanboard Adı" +msgstr "" #. Label of a Data field in DocType 'Kanban Board' #: desk/doctype/kanban_board/kanban_board.json msgctxt "Kanban Board" msgid "Kanban Board Name" -msgstr "Kanboard Adı" +msgstr "" #: public/js/frappe/views/kanban/kanban_view.js:262 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" +#. Description of a DocType +#: core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + #. Label of a Data field in DocType 'DefaultValue' #: core/doctype/defaultvalue/defaultvalue.json msgctxt "DefaultValue" msgid "Key" -msgstr "Anahtar" +msgstr "" #. Label of a Data field in DocType 'Document Share Key' #: core/doctype/document_share_key/document_share_key.json msgctxt "Document Share Key" msgid "Key" -msgstr "Anahtar" +msgstr "" #. Label of a Data field in DocType 'Query Parameters' #: integrations/doctype/query_parameters/query_parameters.json msgctxt "Query Parameters" msgid "Key" -msgstr "Anahtar" +msgstr "" #. Label of a Data field in DocType 'Webhook Data' #: integrations/doctype/webhook_data/webhook_data.json msgctxt "Webhook Data" msgid "Key" -msgstr "Anahtar" +msgstr "" #. Label of a Small Text field in DocType 'Webhook Header' #: integrations/doctype/webhook_header/webhook_header.json msgctxt "Webhook Header" msgid "Key" -msgstr "Anahtar" +msgstr "" #. Label of a Data field in DocType 'Website Meta Tag' #: website/doctype/website_meta_tag/website_meta_tag.json msgctxt "Website Meta Tag" msgid "Key" -msgstr "Anahtar" +msgstr "" #. Label of a standard help item #. Type: Action -#: hooks.py public/js/frappe/ui/keyboard.js:126 +#: hooks.py public/js/frappe/ui/keyboard.js:129 msgid "Keyboard Shortcuts" -msgstr "Klavye Kısayolları" +msgstr "" #: public/js/frappe/utils/number_systems.js:37 msgctxt "Number system" @@ -16567,19 +17234,21 @@ msgstr "" #. Label of a Card Break in the Website Workspace #: website/doctype/help_article/help_article.py:80 +#: website/doctype/help_article/templates/help_article_list.html:2 +#: website/doctype/help_article/templates/help_article_list.html:11 #: website/workspace/website/website.json msgid "Knowledge Base" -msgstr "Bilgi Bankası" +msgstr "" #. Name of a role #: website/doctype/help_article/help_article.json msgid "Knowledge Base Contributor" -msgstr "Bilgi Bankası Katılımcısı" +msgstr "" #. Name of a role #: website/doctype/help_article/help_article.json msgid "Knowledge Base Editor" -msgstr "Bilgi Bankası Editörü" +msgstr "" #: public/js/frappe/utils/number_systems.js:27 #: public/js/frappe/utils/number_systems.js:49 @@ -16603,37 +17272,37 @@ msgstr "" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Email Field" -msgstr "LDAP E-posta Alan" +msgstr "" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP First Name Field" -msgstr "LDAP Ad Alanı" +msgstr "" #. Label of a Data field in DocType 'LDAP Group Mapping' #: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgctxt "LDAP Group Mapping" msgid "LDAP Group" -msgstr "LDAP Grubu" +msgstr "" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Group Field" -msgstr "LDAP Grup Alanı" +msgstr "" #. Name of a DocType #: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "LDAP Group Mapping" -msgstr "LDAP Grup Eşlemesi" +msgstr "" #. Label of a Section Break field in DocType 'LDAP Settings' #. Label of a Table field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Group Mappings" -msgstr "LDAP Grup Eşlemeleri" +msgstr "" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -16645,37 +17314,37 @@ msgstr "" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Last Name Field" -msgstr "LDAP Soyadı Alanı" +msgstr "" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Middle Name Field" -msgstr "LDAP Orta Ad Alanı" +msgstr "" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Mobile Field" -msgstr "LDAP Mobil Alanı" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:160 +#: integrations/doctype/ldap_settings/ldap_settings.py:162 msgid "LDAP Not Installed" -msgstr "LDAP Yüklü Değil" +msgstr "" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Phone Field" -msgstr "LDAP Telefon Alanı" +msgstr "" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Search String" -msgstr "LDAP Arama Dizesi" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:127 +#: integrations/doctype/ldap_settings/ldap_settings.py:129 msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" msgstr "" @@ -16689,7 +17358,7 @@ msgstr "" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Security" -msgstr "LDAP Güvenliği" +msgstr "" #. Label of a Section Break field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -16701,35 +17370,35 @@ msgstr "" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Server Url" -msgstr "LDAP Sunucusu URL" +msgstr "" #. Name of a DocType #: integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Settings" -msgstr "LDAP Ayarları" +msgstr "" #. Label of a Link in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgctxt "LDAP Settings" msgid "LDAP Settings" -msgstr "LDAP Ayarları" +msgstr "" #. Label of a Section Break field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP User Creation and Mapping" -msgstr "LDAP Kullanıcı Oluşturma ve Haritalama" +msgstr "" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "LDAP Username Field" -msgstr "LDAP Kullanıcı Adı Alan" +msgstr "" #: integrations/doctype/ldap_settings/ldap_settings.py:308 -#: integrations/doctype/ldap_settings/ldap_settings.py:427 +#: integrations/doctype/ldap_settings/ldap_settings.py:425 msgid "LDAP is not enabled." -msgstr "LDAP etkin değil." +msgstr "" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -16743,13 +17412,15 @@ msgctxt "LDAP Settings" msgid "LDAP search path for Users" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:99 +#: integrations/doctype/ldap_settings/ldap_settings.py:101 msgid "LDAP settings incorrect. validation response was: {0}" msgstr "" #: printing/page/print_format_builder/print_format_builder.js:474 -#: public/js/frappe/widgets/widget_dialog.js:606 -#: public/js/frappe/widgets/widget_dialog.js:639 +#: public/js/frappe/widgets/widget_dialog.js:255 +#: public/js/frappe/widgets/widget_dialog.js:645 +#: public/js/frappe/widgets/widget_dialog.js:678 +#: templates/form_grid/fields.html:37 msgid "Label" msgstr "Etiket" @@ -16877,30 +17548,31 @@ msgstr "Etiket" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Label Help" -msgstr "Etiket Yardım" +msgstr "" #. Label of a Section Break field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Label and Type" -msgstr "Etiket ve Tipi" +msgstr "" -#: custom/doctype/custom_field/custom_field.py:141 +#: custom/doctype/custom_field/custom_field.py:143 msgid "Label is mandatory" -msgstr "Etiket zorunludur" +msgstr "" #. Label of a Section Break field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Landing Page" -msgstr "Açılış Sayfası" +msgstr "" #: public/js/frappe/form/print_utils.js:28 msgid "Landscape" -msgstr "peyzaj" +msgstr "Landscape" #. Name of a DocType #: core/doctype/language/language.json printing/page/print/print.js:104 +#: public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Dil" @@ -16926,31 +17598,31 @@ msgstr "Dil" #: core/doctype/language/language.json msgctxt "Language" msgid "Language Code" -msgstr "Dil Kodu" +msgstr "" #. Label of a Data field in DocType 'Language' #: core/doctype/language/language.json msgctxt "Language" msgid "Language Name" -msgstr "Dil Adı" +msgstr "" #. Label of a Datetime field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Last Active" -msgstr "Son Aktif" +msgstr "" #. Label of a Datetime field in DocType 'Google Drive' #: integrations/doctype/google_drive/google_drive.json msgctxt "Google Drive" msgid "Last Backup On" -msgstr "Son Yedekleme Açık" +msgstr "" #. Label of a Datetime field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Last Execution" -msgstr "Son Yürütme" +msgstr "" #. Label of a Datetime field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json @@ -16962,30 +17634,34 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "Last IP" -msgstr "Son IP" +msgstr "" #. Label of a Text field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Last Known Versions" -msgstr "Son Bilinen Sürümleri" +msgstr "" #. Label of a Read Only field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Last Login" -msgstr "Son Giriş" +msgstr "" + +#: email/doctype/notification/notification.js:31 +msgid "Last Modified Date" +msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:242 #: public/js/frappe/views/dashboard/dashboard_view.js:479 msgid "Last Modified On" -msgstr "Son Değiştirilme" +msgstr "" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Last Month" -msgstr "Geçen Ay" +msgstr "" #: www/complete_signup.html:19 msgid "Last Name" @@ -17007,19 +17683,19 @@ msgstr "Soyadı" #: core/doctype/user/user.json msgctxt "User" msgid "Last Password Reset Date" -msgstr "Son Şifre Sıfırlama Tarihi" +msgstr "" #. Label of a Date field in DocType 'Energy Point Settings' #: social/doctype/energy_point_settings/energy_point_settings.json msgctxt "Energy Point Settings" msgid "Last Point Allocation Date" -msgstr "Son Nokta Tahsis Tarihi" +msgstr "" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Last Quarter" -msgstr "Son Çeyrek" +msgstr "" #. Label of a Datetime field in DocType 'User' #: core/doctype/user/user.json @@ -17031,45 +17707,45 @@ msgstr "" #: integrations/doctype/google_contacts/google_contacts.json msgctxt "Google Contacts" msgid "Last Sync On" -msgstr "Son Senkronizasyon Açık" +msgstr "" #. Label of a Datetime field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Last Synced On" -msgstr "Son Senkronize Açık" +msgstr "" -#: model/__init__.py:145 model/meta.py:50 public/js/frappe/model/meta.js:202 +#: model/meta.py:50 public/js/frappe/model/meta.js:202 #: public/js/frappe/model/model.js:120 msgid "Last Updated By" -msgstr "Son Güncelleyen" +msgstr "" -#: model/__init__.py:141 model/meta.py:49 public/js/frappe/model/meta.js:201 +#: model/meta.py:49 public/js/frappe/model/meta.js:201 #: public/js/frappe/model/model.js:116 msgid "Last Updated On" -msgstr "Son Güncelleme Tarihi" +msgstr "" #. Label of a Link field in DocType 'Assignment Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Last User" -msgstr "Son Kullanıcı" +msgstr "" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Last Week" -msgstr "Geçen Hafta" +msgstr "" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Last Year" -msgstr "Geçen Yıl" +msgstr "" #: public/js/frappe/widgets/chart_widget.js:698 msgid "Last synced {0}" -msgstr "Son eşitleme {0}" +msgstr "" #: custom/doctype/customize_form/customize_form.js:186 msgid "Layout Reset" @@ -17080,8 +17756,9 @@ msgid "Layout will be reset to standard layout, are you sure you want to do this msgstr "" #: desk/page/leaderboard/leaderboard.js:15 +#: desk/page/user_profile/user_profile_sidebar.html:55 msgid "Leaderboard" -msgstr "Liderlik Tablosu" +msgstr "" #. Label of an action in the Onboarding Step 'Customize Print Formats' #: custom/onboarding_step/print_format/print_format.json @@ -17116,41 +17793,41 @@ msgstr "" #: desk/doctype/event/event.json msgctxt "Event" msgid "Leave blank to repeat always" -msgstr "Her zaman tekrarlamak için boş bırakın" +msgstr "" -#: core/doctype/communication/mixins.py:206 -#: email/doctype/email_account/email_account.py:624 +#: core/doctype/communication/mixins.py:207 +#: email/doctype/email_account/email_account.py:654 msgid "Leave this conversation" -msgstr "Bu konuşmayı bırakın" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Ledger" -msgstr "" +msgstr "Defteri Kebir" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Left" -msgstr "Bırak" +msgstr "Ayrıldı" #. Option for the 'Align' (Select) field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Left" -msgstr "Bırak" +msgstr "Ayrıldı" #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Left" -msgstr "Bırak" +msgstr "Ayrıldı" #: printing/page/print_format_builder/print_format_builder.js:483 msgctxt "alignment" msgid "Left" -msgstr "Bırak" +msgstr "Ayrıldı" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -17164,41 +17841,45 @@ msgctxt "Form Tour Step" msgid "Left Center" msgstr "" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:59 +#: email/doctype/email_unsubscribe/email_unsubscribe.py:58 msgid "Left this conversation" -msgstr "Bu konuşmayı Sol" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Legal" -msgstr "" +msgstr "Yasal" #. Label of a Int field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Length" -msgstr "Uzunluk" +msgstr "" #. Label of a Int field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Length" -msgstr "Uzunluk" +msgstr "" #. Label of a Int field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Length" -msgstr "Uzunluk" +msgstr "" #: public/js/frappe/ui/chart.js:11 msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: database/schema.py:133 +#: database/schema.py:132 msgid "Length of {0} should be between 1 and 1000" -msgstr "{0} uzunluğu 1 ile 1000 arasında olmalıdır" +msgstr "" + +#: public/js/frappe/widgets/chart_widget.js:674 +msgid "Less" +msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:439 msgid "Let us continue with the onboarding" @@ -17207,16 +17888,16 @@ msgstr "" #: public/js/frappe/views/workspace/blocks/onboarding.js:94 #: public/js/frappe/widgets/onboarding_widget.js:602 msgid "Let's Get Started" -msgstr "Başlayalım" +msgstr "" #. Title of the Module Onboarding 'Website' #: website/module_onboarding/website/website.json msgid "Let's Set Up Your Website." msgstr "" -#: utils/password_strength.py:113 +#: utils/password_strength.py:111 msgid "Let's avoid repeated words and characters" -msgstr "tekrarlanan kelimeleri ve karakterleri önlemek edelim" +msgstr "" #: desk/page/setup_wizard/setup_wizard.js:459 msgid "Let's set up your account" @@ -17227,18 +17908,19 @@ msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:380 #: public/js/frappe/widgets/onboarding_widget.js:419 msgid "Let's take you back to onboarding" -msgstr "Sizi işe alıma geri götürelim" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Letter" -msgstr "Mektup" +msgstr "" #. Name of a DocType #: printing/doctype/letter_head/letter_head.json #: printing/page/print/print.js:127 public/js/frappe/form/print_utils.js:18 -#: public/js/frappe/list/bulk_operations.js:43 +#: public/js/frappe/form/templates/print_layout.html:16 +#: public/js/frappe/list/bulk_operations.js:51 msgid "Letter Head" msgstr "Antetli Kağıt" @@ -17252,21 +17934,25 @@ msgstr "Antetli Kağıt" #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Letter Head Based On" -msgstr "Mektup Başlığına göre" +msgstr "" #. Label of a Section Break field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Letter Head Image" -msgstr "Antet Resmi" +msgstr "" #. Label of a Data field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Letter Head Name" -msgstr "Antet Adı" +msgstr "" -#: printing/doctype/letter_head/letter_head.py:45 +#: printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "" + +#: printing/doctype/letter_head/letter_head.py:48 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -17275,9 +17961,10 @@ msgstr "" #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Letter Head in HTML" -msgstr "HTML Mektup Başlığı" +msgstr "" #: core/page/permission_manager/permission_manager.js:213 +#: public/js/frappe/roles_editor.js:66 msgid "Level" msgstr "Seviye" @@ -17299,21 +17986,21 @@ msgctxt "Help Article" msgid "Level" msgstr "Seviye" -#: core/page/permission_manager/permission_manager.js:450 +#: core/page/permission_manager/permission_manager.js:461 msgid "Level 0 is for document level permissions, higher levels for field level permissions." -msgstr "Düzey 0, belge düzeyindeki izinler içindir, alan düzeyindeki izinler için daha yüksek düzeylerdir." +msgstr "" #. Label of a Data field in DocType 'Review Level' #: social/doctype/review_level/review_level.json msgctxt "Review Level" msgid "Level Name" -msgstr "Seviye Adı" +msgstr "" #. Label of a Markdown Editor field in DocType 'Package' #: core/doctype/package/package.json msgctxt "Package" msgid "License" -msgstr "Lisans" +msgstr "" #. Label of a Select field in DocType 'Package' #: core/doctype/package/package.json @@ -17343,7 +18030,7 @@ msgstr "" #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Light Color" -msgstr "Açık renk" +msgstr "" #: public/js/frappe/ui/theme_switcher.js:60 msgid "Light Theme" @@ -17351,19 +18038,19 @@ msgstr "" #: public/js/frappe/ui/filters/filter.js:18 msgid "Like" -msgstr "Benzer" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Like" -msgstr "Benzer" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Like" -msgstr "Benzer" +msgstr "" #. Label of a Int field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json @@ -17383,12 +18070,12 @@ msgstr "" #: desk/like.py:91 msgid "Liked" -msgstr "Beğendim" +msgstr "" -#: model/__init__.py:149 model/meta.py:53 public/js/frappe/model/meta.js:205 +#: model/meta.py:53 public/js/frappe/model/meta.js:205 #: public/js/frappe/model/model.js:124 msgid "Liked By" -msgstr "Beğenen" +msgstr "" #. Label of a Int field in DocType 'Help Article' #: website/doctype/help_article/help_article.json @@ -17400,85 +18087,85 @@ msgstr "Beğeniler" #: desk/doctype/bulk_update/bulk_update.json msgctxt "Bulk Update" msgid "Limit" -msgstr "Limit" +msgstr "" #. Label of a Check field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json msgctxt "Dropbox Settings" msgid "Limit Number of DB Backups" -msgstr "DB Yedeklemelerinin Sınırı Sayısı" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Line" -msgstr "Hat" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Link" -msgstr "bağlantı" +msgstr "Bağlantı" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Link" -msgstr "bağlantı" +msgstr "Bağlantı" #. Label of a Small Text field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "Link" -msgstr "bağlantı" +msgstr "Bağlantı" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Link" -msgstr "bağlantı" +msgstr "Bağlantı" #. Label of a Data field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Link" -msgstr "bağlantı" +msgstr "Bağlantı" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #: core/doctype/report_column/report_column.json msgctxt "Report Column" msgid "Link" -msgstr "bağlantı" +msgstr "Bağlantı" #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' #: core/doctype/report_filter/report_filter.json msgctxt "Report Filter" msgid "Link" -msgstr "bağlantı" +msgstr "Bağlantı" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Link" -msgstr "bağlantı" +msgstr "Bağlantı" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Link" -msgstr "bağlantı" +msgstr "Bağlantı" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Link" -msgstr "bağlantı" +msgstr "Bağlantı" #. Label of a Tab Break field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Link Cards" -msgstr "Bağlantı Kartları" +msgstr "" #. Label of a Int field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json @@ -17496,36 +18183,42 @@ msgstr "" #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Link DocType" -msgstr "Bağlantı DocType" +msgstr "" #. Label of a Link field in DocType 'Communication Link' #: core/doctype/communication_link/communication_link.json msgctxt "Communication Link" msgid "Link DocType" -msgstr "Bağlantı DocType" +msgstr "" #. Label of a Link field in DocType 'DocType Link' #: core/doctype/doctype_link/doctype_link.json msgctxt "DocType Link" msgid "Link DocType" -msgstr "Bağlantı DocType" +msgstr "" #. Label of a Link field in DocType 'Dynamic Link' #: core/doctype/dynamic_link/dynamic_link.json msgctxt "Dynamic Link" msgid "Link Document Type" -msgstr "Belge Türü Bağlantısı" +msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:403 -#: workflow/doctype/workflow_action/workflow_action.py:202 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:402 +#: workflow/doctype/workflow_action/workflow_action.py:197 msgid "Link Expired" -msgstr "Bağlantı Süresi Doldu" +msgstr "" + +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Link Field Results Limit" +msgstr "" #. Label of a Data field in DocType 'DocType Link' #: core/doctype/doctype_link/doctype_link.json msgctxt "DocType Link" msgid "Link Fieldname" -msgstr "Alan Adı Bağlantısı" +msgstr "" #. Label of a JSON field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -17555,43 +18248,47 @@ msgstr "" #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Link Name" -msgstr "Bağlantı Adı" +msgstr "" #. Label of a Dynamic Link field in DocType 'Communication Link' #: core/doctype/communication_link/communication_link.json msgctxt "Communication Link" msgid "Link Name" -msgstr "Bağlantı Adı" +msgstr "" #. Label of a Dynamic Link field in DocType 'Dynamic Link' #: core/doctype/dynamic_link/dynamic_link.json msgctxt "Dynamic Link" msgid "Link Name" -msgstr "Bağlantı Adı" +msgstr "" #. Label of a Read Only field in DocType 'Communication Link' #: core/doctype/communication_link/communication_link.json msgctxt "Communication Link" msgid "Link Title" -msgstr "Bağlantı Başlığı" +msgstr "" #. Label of a Read Only field in DocType 'Dynamic Link' #: core/doctype/dynamic_link/dynamic_link.json msgctxt "Dynamic Link" msgid "Link Title" -msgstr "Bağlantı Başlığı" +msgstr "" #. Label of a Dynamic Link field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Link To" -msgstr "Bağla" +msgstr "" #. Label of a Dynamic Link field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Link To" -msgstr "Bağla" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:358 +msgid "Link To in Row" +msgstr "" #. Label of a Select field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json @@ -17599,6 +18296,10 @@ msgctxt "Workspace Link" msgid "Link Type" msgstr "" +#: public/js/frappe/widgets/widget_dialog.js:354 +msgid "Link Type in Row" +msgstr "" + #: website/doctype/about_us_settings/about_us_settings.js:6 msgid "Link for About Us Page is \"/about\"." msgstr "" @@ -17607,89 +18308,89 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" -msgstr "Web sitesi ana sayfası olan bağlantı. Standart Bağlantılar (ana sayfa, giriş, ürünler, blog, hakkında, iletişim)" +msgstr "" #. Description of the 'URL' (Data) field in DocType 'Top Bar Item' #: website/doctype/top_bar_item/top_bar_item.json msgctxt "Top Bar Item" msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." -msgstr "Açmak istediğiniz sayfaya bağlantı. Eğer bir grup ebeveyn yapmak istiyorsanız boş bırakın." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Linked" -msgstr "Bağlantılı" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Linked" -msgstr "Bağlantılı" +msgstr "" #. Label of a Section Break field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Linked Documents" -msgstr "Bağlantılı Belgeler" +msgstr "Bağlı Belgeler" #: public/js/frappe/form/linked_with.js:23 msgid "Linked With" -msgstr "İle Bağlantılı" +msgstr "" #: contacts/doctype/address/address.js:39 -#: contacts/doctype/contact/contact.js:82 public/js/frappe/form/toolbar.js:366 +#: contacts/doctype/contact/contact.js:87 public/js/frappe/form/toolbar.js:366 msgid "Links" -msgstr "Bağlantılar" +msgstr "" #. Label of a Table field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "Links" -msgstr "Bağlantılar" +msgstr "" #. Label of a Table field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Links" -msgstr "Bağlantılar" +msgstr "" #. Label of a Table field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Links" -msgstr "Bağlantılar" +msgstr "" #. Label of a Table field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Links" -msgstr "Bağlantılar" +msgstr "" #. Label of a Table field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Links" -msgstr "Bağlantılar" +msgstr "" #. Option for the 'Apply To' (Select) field in DocType 'Client Script' #: custom/doctype/client_script/client_script.json msgctxt "Client Script" msgid "List" -msgstr "Liste" +msgstr "" #. Option for the 'View' (Select) field in DocType 'Form Tour' #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "List" -msgstr "Liste" +msgstr "" #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "List" -msgstr "Liste" +msgstr "" #. Label of a Section Break field in DocType 'DocField' #: core/doctype/docfield/docfield.json @@ -17706,7 +18407,7 @@ msgstr "" #. Name of a DocType #: desk/doctype/list_filter/list_filter.json msgid "List Filter" -msgstr "Liste Filtresi" +msgstr "" #. Label of a HTML field in DocType 'Web Form' #: website/doctype/web_form/web_form.json @@ -17714,51 +18415,56 @@ msgctxt "Web Form" msgid "List Setting Message" msgstr "" -#: public/js/frappe/list/list_view.js:1708 +#: public/js/frappe/list/list_view.js:1754 msgctxt "Button in list view menu" msgid "List Settings" -msgstr "Liste Ayarları" +msgstr "" #. Label of a Section Break field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "List Settings" -msgstr "Liste Ayarları" +msgstr "" #. Label of a Section Break field in DocType 'Role' #: core/doctype/role/role.json msgctxt "Role" msgid "List Settings" -msgstr "Liste Ayarları" +msgstr "" #. Label of a Section Break field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "List Settings" -msgstr "Liste Ayarları" +msgstr "" #. Name of a DocType #: desk/doctype/list_view_settings/list_view_settings.json msgid "List View Settings" -msgstr "Liste Görünümü Ayarları" +msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:161 msgid "List a document type" -msgstr "Bir belge türü Liste" +msgstr "" #. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" -msgstr "[{: _ ( 'İşler'), 'rota': 'işler' 'etiketi'}] olarak Listesi" +msgstr "" #. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" -msgstr "[{: _ ( 'İşler'), 'rota': 'işler' 'etiketi'}] olarak Listesi" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:526 +#. Description of a DocType +#: core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:542 msgid "Lists" msgstr "" @@ -17766,11 +18472,13 @@ msgstr "" #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Load Balancing" -msgstr "Yük Dengeleme" +msgstr "" +#: public/js/frappe/list/base_list.js:378 #: website/doctype/blog_post/templates/blog_post_list.html:50 +#: website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" -msgstr "Daha fazla yükle" +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:214 msgctxt "Form timeline" @@ -17778,19 +18486,37 @@ msgid "Load More Communications" msgstr "" #: core/page/permission_manager/permission_manager.js:165 -#: public/js/frappe/list/base_list.js:465 +#: public/js/frappe/form/controls/multicheck.js:13 +#: public/js/frappe/form/linked_with.js:13 +#: public/js/frappe/list/base_list.js:490 +#: public/js/frappe/list/list_view.js:333 public/js/frappe/ui/listing.html:16 +#: public/js/frappe/views/reports/query_report.js:1015 msgid "Loading" -msgstr "Yükleniyor" +msgstr "" -#: core/doctype/data_import/data_import.js:262 +#: public/js/frappe/widgets/widget_dialog.js:107 +msgid "Loading Filters..." +msgstr "" + +#: core/doctype/data_import/data_import.js:257 msgid "Loading import file..." -msgstr "İçe aktarılan dosya yükleniyor ..." +msgstr "" #: desk/page/user_profile/user_profile_controller.js:20 msgid "Loading user profile" msgstr "" +#: public/js/frappe/ui/toolbar/about.js:8 +msgid "Loading versions..." +msgstr "" + #: public/js/frappe/form/sidebar/share.js:51 +#: public/js/frappe/list/list_sidebar.js:216 +#: public/js/frappe/list/list_sidebar_group_by.js:125 +#: public/js/frappe/views/kanban/kanban_board.html:11 +#: public/js/frappe/widgets/chart_widget.js:50 +#: public/js/frappe/widgets/number_card_widget.js:174 +#: public/js/frappe/widgets/quick_list_widget.js:126 msgid "Loading..." msgstr "Yükleniyor..." @@ -17804,13 +18530,13 @@ msgstr "Konum" #: core/doctype/package_import/package_import.json msgctxt "Package Import" msgid "Log" -msgstr "Log" +msgstr "" #. Label of a Section Break field in DocType 'Access Log' #: core/doctype/access_log/access_log.json msgctxt "Access Log" msgid "Log Data" -msgstr "Log Verisi" +msgstr "" #. Label of a Link field in DocType 'Logs To Clear' #: core/doctype/logs_to_clear/logs_to_clear.json @@ -17831,67 +18557,67 @@ msgstr "" #. Name of a DocType #: core/doctype/log_setting_user/log_setting_user.json msgid "Log Setting User" -msgstr "Günlük Ayarı Kullanıcısı" +msgstr "" #. Name of a DocType -#: core/doctype/log_settings/log_settings.json +#: core/doctype/log_settings/log_settings.json public/js/frappe/logtypes.js:20 msgid "Log Settings" -msgstr "Günlük Ayarları" +msgstr "" #: www/app.py:21 msgid "Log in to access this page." -msgstr "Bu sayfaya erişmek için oturum açın." +msgstr "" #. Label of a standard navbar item #. Type: Action #: hooks.py website/doctype/website_settings/website_settings.py:182 msgid "Log out" -msgstr "Çıkış Yap" +msgstr "" #: handler.py:123 msgid "Logged Out" -msgstr "Çıkış yapıldı" +msgstr "" #: public/js/frappe/web_form/webform_script.js:16 #: templates/discussions/discussions_section.html:60 -#: templates/discussions/reply_section.html:43 +#: templates/discussions/reply_section.html:44 #: templates/includes/navbar/dropdown_login.html:15 #: templates/includes/navbar/navbar_login.html:24 #: website/page_renderers/not_permitted_page.py:22 www/login.html:42 msgid "Login" -msgstr "Oturum aç" +msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Login" -msgstr "Oturum aç" +msgstr "" #. Label of a Tab Break field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Login" -msgstr "Oturum aç" +msgstr "" #. Label of a Int field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Login After" -msgstr "Sonra Giriş Yap" +msgstr "" #. Label of a Int field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Login Before" -msgstr "Önce Giriş yap" +msgstr "" #: public/js/frappe/desk.js:235 msgid "Login Failed please try again" msgstr "" -#: email/doctype/email_account/email_account.py:134 +#: email/doctype/email_account/email_account.py:141 msgid "Login Id is required" -msgstr "Giriş Kimliği gerekli" +msgstr "" #. Label of a Section Break field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -17903,21 +18629,21 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Login Page" -msgstr "Login / Giriş Sayfası" +msgstr "" #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Login Required" -msgstr "Giriş Gerekli" +msgstr "" -#: www/login.py:137 +#: www/login.py:136 msgid "Login To {0}" msgstr "" -#: twofactor.py:265 +#: twofactor.py:260 msgid "Login Verification Code from {}" -msgstr "{} Adresinden Giriş Doğrulama Kodu" +msgstr "" #: www/login.html:97 msgid "Login With {0}" @@ -17925,23 +18651,27 @@ msgstr "" #: templates/emails/new_message.html:4 msgid "Login and view in Browser" -msgstr "Giriş yap ve Tarayıcıda görüntüle" +msgstr "" -#: website/doctype/web_form/web_form.js:358 +#: website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" -#: auth.py:322 auth.py:325 -msgid "Login not allowed at this time" -msgstr "Oturum şu anda izin verilmiyor" +#: templates/includes/login/login.js:70 +msgid "Login link sent to your email" +msgstr "" -#: twofactor.py:165 +#: auth.py:316 auth.py:319 +msgid "Login not allowed at this time" +msgstr "" + +#: twofactor.py:164 msgid "Login session expired, refresh page to retry" -msgstr "Oturum açma oturumu doldu, tekrar denemek için sayfayı yenile" +msgstr "" #: templates/includes/comments/comments.html:110 msgid "Login to comment" -msgstr "Yorum için giriş" +msgstr "" #: templates/includes/comments/comments.html:6 msgid "Login to start a new discussion" @@ -17957,7 +18687,7 @@ msgstr "" #: www/login.html:46 msgid "Login with LDAP" -msgstr "LDAP ile giriş" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -17971,7 +18701,7 @@ msgctxt "System Settings" msgid "Login with email link expiry (in minutes)" msgstr "" -#: auth.py:131 +#: auth.py:129 msgid "Login with username and password is not allowed." msgstr "" @@ -17979,40 +18709,40 @@ msgstr "" #: core/doctype/navbar_settings/navbar_settings.json msgctxt "Navbar Settings" msgid "Logo Width" -msgstr "Logo Genişliği" +msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Logout" -msgstr "Çıkış" +msgstr "" -#: core/doctype/user/user.js:179 +#: core/doctype/user/user.js:183 msgid "Logout All Sessions" -msgstr "Tüm Oturumları Kapat" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Logout All Sessions on Password Reset" -msgstr "Parola Sıfırlamayla Tüm Oturumları Kapat" +msgstr "" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Logout From All Devices After Changing Password" -msgstr "Parolayı Değiştirdikten Sonra Tüm Cihazlardan Çıkış Yapın" +msgstr "" #. Label of a Card Break in the Users Workspace #: core/workspace/users/users.json msgid "Logs" -msgstr "Loglar" +msgstr "" #. Group in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "Logs" -msgstr "Loglar" +msgstr "" #. Name of a DocType #: core/doctype/logs_to_clear/logs_to_clear.json @@ -18029,28 +18759,32 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Long Text" -msgstr "Uzun Metin" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Long Text" -msgstr "Uzun Metin" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Long Text" -msgstr "Uzun Metin" +msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:322 msgid "Looks like you didn't change the value" -msgstr "Görünüşe göre değeri değiştirmemişsin" +msgstr "" #: www/third_party_apps.html:57 msgid "Looks like you haven’t added any third party apps." msgstr "" +#: public/js/frappe/ui/notifications/notifications.js:308 +msgid "Looks like you haven’t received any notifications." +msgstr "" + #: public/js/frappe/form/sidebar/assign_to.js:190 msgid "Low" msgstr "Düşük" @@ -18076,19 +18810,19 @@ msgstr "" #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Main Section" -msgstr "Ana Bölüm" +msgstr "" #. Label of a HTML Editor field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Main Section (HTML)" -msgstr "Ana Bölüm (HTML)" +msgstr "" #. Label of a Markdown Editor field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Main Section (Markdown)" -msgstr "Ana Bölüm (Markdown)" +msgstr "" #. Name of a role #: contacts/doctype/contact/contact.json @@ -18098,7 +18832,7 @@ msgstr "Bakım Yöneticisi" #. Name of a role #: contacts/doctype/address/address.json contacts/doctype/contact/contact.json msgid "Maintenance User" -msgstr "Bakım Kullanıcısı" +msgstr "Bakımcı Kullanıcı" #. Label of a Int field in DocType 'Package Release' #: core/doctype/package_release/package_release.json @@ -18110,7 +18844,7 @@ msgstr "" #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Make \"name\" searchable in Global Search" -msgstr "Küresel Ara arama yapılabilsin 'ad'" +msgstr "" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -18131,17 +18865,17 @@ msgctxt "System Settings" msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" msgstr "" -#: utils/password_strength.py:94 +#: utils/password_strength.py:92 msgid "Make use of longer keyboard patterns" -msgstr "uzun klavye desen yararlanın" +msgstr "" #: public/js/frappe/form/multi_select_dialog.js:86 msgid "Make {0}" -msgstr "{0} yap" +msgstr "" #: website/doctype/web_page/web_page.js:77 msgid "Makes the page public" -msgstr "Sayfayı herkese açık hale getirir" +msgstr "" #: www/me.html:50 msgid "Manage third party apps" @@ -18185,19 +18919,19 @@ msgstr "Zorunlu" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Mandatory Depends On" -msgstr "Zorunlu" +msgstr "" #. Label of a Code field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Mandatory Depends On" -msgstr "Zorunlu" +msgstr "" #. Label of a Code field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Mandatory Depends On" -msgstr "Zorunlu" +msgstr "" #. Label of a Code field in DocType 'DocField' #: core/doctype/docfield/docfield.json @@ -18205,25 +18939,25 @@ msgctxt "DocField" msgid "Mandatory Depends On (JS)" msgstr "" -#: website/doctype/web_form/web_form.py:412 +#: website/doctype/web_form/web_form.py:411 msgid "Mandatory Information missing:" -msgstr "Eksik zorunlu bilgiler:" +msgstr "" #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 msgid "Mandatory field: set role for" -msgstr "Zorunlu alan: için belirlenen rolü" +msgstr "" #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 msgid "Mandatory field: {0}" -msgstr "Zorunlu alan: {0}" +msgstr "" #: public/js/frappe/form/save.js:167 msgid "Mandatory fields required in table {0}, Row {1}" -msgstr "tablo {0} gerekli zorunlu alanlar, Satır {1}" +msgstr "" #: public/js/frappe/form/save.js:172 msgid "Mandatory fields required in {0}" -msgstr "Gerekli zorunlu alanlar {0}" +msgstr "" #: public/js/frappe/web_form/web_form.js:234 msgctxt "Error message in web form" @@ -18232,7 +18966,7 @@ msgstr "" #: core/doctype/data_export/exporter.py:142 msgid "Mandatory:" -msgstr "Zorunlu:" +msgstr "" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -18243,17 +18977,21 @@ msgstr "" #: public/js/frappe/data_import/import_preview.js:190 #: public/js/frappe/data_import/import_preview.js:302 msgid "Map Columns" -msgstr "Harita Sütunları" +msgstr "" + +#: public/js/frappe/data_import/import_preview.js:290 +msgid "Map columns from {0} to fields in {1}" +msgstr "" #. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Map route parameters into form variables. Example /project/<name>" -msgstr "Rota parametrelerini form değişkenlerine eşleyin. Örnek /project/<name>" +msgstr "" -#: core/doctype/data_import/importer.py:877 +#: core/doctype/data_import/importer.py:874 msgid "Mapping column {0} to field {1}" -msgstr "{0} sütunu {1} alanına eşleniyor" +msgstr "" #. Label of a Float field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json @@ -18284,72 +19022,76 @@ msgid "Mark all as read" msgstr "" #: core/doctype/communication/communication.js:78 -#: core/doctype/communication/communication_list.js:21 +#: core/doctype/communication/communication_list.js:19 msgid "Mark as Read" -msgstr "Okundu olarak işaretle" +msgstr "" #: core/doctype/communication/communication.js:95 msgid "Mark as Spam" -msgstr "Spam olarak işaretle" +msgstr "" #: core/doctype/communication/communication.js:78 -#: core/doctype/communication/communication_list.js:24 +#: core/doctype/communication/communication_list.js:22 msgid "Mark as Unread" -msgstr "Okunmamış olarak işaretle" +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "Markdown" +msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Markdown" -msgstr "Tümünü İşaretle" +msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Markdown" -msgstr "Tümünü İşaretle" +msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Markdown" -msgstr "Tümünü İşaretle" +msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Markdown" -msgstr "Tümünü İşaretle" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Markdown Editor" -msgstr "Markdown Editör" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Markdown Editor" -msgstr "Markdown Editör" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Markdown Editor" -msgstr "Markdown Editör" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Markdown Editor" -msgstr "Markdown Editör" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Marked As Spam" -msgstr "Spam olarak işaretlenen" +msgstr "" #. Name of a DocType #: website/doctype/marketing_campaign/marketing_campaign.json @@ -18360,25 +19102,25 @@ msgstr "" #: desk/doctype/bulk_update/bulk_update.json msgctxt "Bulk Update" msgid "Max 500 records at a time" -msgstr "Bir seferde maksimum 500 kayıt" +msgstr "" #. Label of a Int field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Max Attachment Size (in MB)" -msgstr "(MB) Maksimum Ek Boyutu" +msgstr "" #. Label of a Int field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Max Attachments" -msgstr "Max Eklentiler" +msgstr "" #. Label of a Int field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Max Attachments" -msgstr "Max Eklentiler" +msgstr "" #. Label of a Int field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -18396,13 +19138,13 @@ msgstr "" #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Max Length" -msgstr "Maksimum uzunluk" +msgstr "" #. Label of a Int field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Max Value" -msgstr "Max Değeri" +msgstr "" #. Label of a Int field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -18410,15 +19152,15 @@ msgctxt "System Settings" msgid "Max auto email report per user" msgstr "" -#: core/doctype/doctype/doctype.py:1293 +#: core/doctype/doctype/doctype.py:1291 msgid "Max width for type Currency is 100px in row {0}" -msgstr "Para için maksimum genişlik 100px verilen satır {0}" +msgstr "" #. Option for the 'Function' (Select) field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Maximum" -msgstr "Maksimum" +msgstr "" #: core/doctype/file/file.py:317 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." @@ -18428,13 +19170,13 @@ msgstr "" #: desk/doctype/list_view_settings/list_view_settings.json msgctxt "List View Settings" msgid "Maximum Number of Fields" -msgstr "Maksimum Alan Sayısı" +msgstr "" #. Label of a Int field in DocType 'Energy Point Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "Maximum Points" -msgstr "Maksimum Puan" +msgstr "" #: public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." @@ -18444,21 +19186,24 @@ msgstr "" #. Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" -msgid "" -"Maximum points allowed after multiplying points with the multiplier value\n" +msgid "Maximum points allowed after multiplying points with the multiplier value\n" "(Note: For no limit leave this field empty or set 0)" msgstr "" -#: model/rename_doc.py:675 +#: model/rename_doc.py:667 msgid "Maximum {0} rows allowed" -msgstr "Maksimum {0} satıra izin verildi" +msgstr "" #: public/js/frappe/list/list_sidebar_group_by.js:221 msgid "Me" -msgstr "Ben mi" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:14 +msgid "Meaning of Submit, Cancel, Amend" +msgstr "" #: public/js/frappe/form/sidebar/assign_to.js:194 -#: public/js/frappe/utils/utils.js:1719 +#: public/js/frappe/utils/utils.js:1722 #: website/report/website_analytics/website_analytics.js:40 msgid "Medium" msgstr "Orta" @@ -18479,13 +19224,13 @@ msgstr "Orta" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Meeting" -msgstr "toplantı" +msgstr "" #. Option for the 'Event Category' (Select) field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Meeting" -msgstr "toplantı" +msgstr "" #. Label of a Data field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json @@ -18497,122 +19242,123 @@ msgstr "" #: email/doctype/email_group/email_group.json msgctxt "Email Group" msgid "Members" -msgstr "" +msgstr "Üyeler" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Mention" -msgstr "Anma" +msgstr "" #. Label of a Check field in DocType 'Notification Settings' #: desk/doctype/notification_settings/notification_settings.json msgctxt "Notification Settings" msgid "Mentions" -msgstr "Mansiyonlar" +msgstr "" -#: public/js/frappe/ui/page.js:155 +#: public/js/frappe/ui/page.html:40 public/js/frappe/ui/page.js:155 msgid "Menu" -msgstr "Menü" +msgstr "" -#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:719 +#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:724 msgid "Merge with existing" -msgstr "Mevcut Birleştirme" +msgstr "Varolan ile Birleştir" -#: utils/nestedset.py:310 +#: utils/nestedset.py:304 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" -msgstr "Birleştirme Grup-Grup veya Yaprak Düğüm-to-Yaprak Düğüm arasında mümkündür" +msgstr "" +#: core/doctype/data_import/data_import.js:489 #: public/js/frappe/ui/messages.js:175 -#: public/js/frappe/views/communication.js:110 www/message.html:3 +#: public/js/frappe/views/communication.js:114 www/message.html:3 #: www/message.html:25 msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a Text Editor field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a Section Break field in DocType 'Auto Email Report' #. Label of a Text Editor field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a Text field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a Text Editor field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" -#: __init__.py:527 public/js/frappe/ui/messages.js:267 +#: __init__.py:617 public/js/frappe/ui/messages.js:265 msgctxt "Default title of the message dialog" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a Code field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a Text Editor field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a Section Break field in DocType 'Notification' #. Label of a Code field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a Text Editor field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a Small Text field in DocType 'SMS Log' #: core/doctype/sms_log/sms_log.json msgctxt "SMS Log" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a Data field in DocType 'Success Action' #: core/doctype/success_action/success_action.json msgctxt "Success Action" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a Text field in DocType 'Workflow Document State' #: workflow/doctype/workflow_document_state/workflow_document_state.json msgctxt "Workflow Document State" msgid "Message" -msgstr "İleti" +msgstr "Mesaj" #. Label of a HTML Editor field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Message (HTML)" -msgstr "Mesaj (HTML)" +msgstr "" #. Label of a Markdown Editor field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Message (Markdown)" -msgstr "Mesaj (Markdown)" +msgstr "" #. Label of a HTML field in DocType 'Notification' #: email/doctype/notification/notification.json @@ -18624,19 +19370,19 @@ msgstr "Mesaj Örnekleri" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Message ID" -msgstr "Mesaj kimliği" +msgstr "" #. Label of a Small Text field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Message ID" -msgstr "Mesaj kimliği" +msgstr "" #. Label of a Data field in DocType 'SMS Settings' #: core/doctype/sms_settings/sms_settings.json msgctxt "SMS Settings" msgid "Message Parameter" -msgstr "Mesaj Parametresi" +msgstr "" #. Label of a Select field in DocType 'Notification' #: email/doctype/notification/notification.json @@ -18644,17 +19390,17 @@ msgctxt "Notification" msgid "Message Type" msgstr "" -#: public/js/frappe/views/communication.js:841 +#: public/js/frappe/views/communication.js:933 msgid "Message clipped" -msgstr "Mesaj kırpıldı" +msgstr "" -#: email/doctype/email_account/email_account.py:299 +#: email/doctype/email_account/email_account.py:317 msgid "Message from server: {0}" -msgstr "Sunucudan mesaj: {0}" +msgstr "" #: automation/doctype/auto_repeat/auto_repeat.js:102 msgid "Message not setup" -msgstr "Mesaj ayarlanmıyor" +msgstr "" #. Description of the 'Success Message' (Text) field in DocType 'Web Form' #: website/doctype/web_form/web_form.json @@ -18666,7 +19412,7 @@ msgstr "" #: email/doctype/unhandled_email/unhandled_email.json msgctxt "Unhandled Email" msgid "Message-id" -msgstr "İleti kimliği" +msgstr "" #. Label of a Code field in DocType 'Data Import Log' #: core/doctype/data_import_log/data_import_log.json @@ -18682,73 +19428,73 @@ msgstr "" #: website/doctype/web_page/web_page.js:124 msgid "Meta Description" -msgstr "Meta Açıklaması" +msgstr "" #. Label of a Small Text field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Meta Description" -msgstr "Meta Açıklaması" +msgstr "" #. Label of a Small Text field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Meta Description" -msgstr "Meta Açıklaması" +msgstr "" #: website/doctype/web_page/web_page.js:131 msgid "Meta Image" -msgstr "Meta Görüntü" +msgstr "" #. Label of a Attach Image field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Meta Image" -msgstr "Meta Görüntü" +msgstr "" #. Label of a Attach Image field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Meta Image" -msgstr "Meta Görüntü" +msgstr "" #. Label of a Section Break field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Meta Tags" -msgstr "Meta etiketleri" +msgstr "" #. Label of a Section Break field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Meta Tags" -msgstr "Meta etiketleri" +msgstr "" #. Label of a Table field in DocType 'Website Route Meta' #: website/doctype/website_route_meta/website_route_meta.json msgctxt "Website Route Meta" msgid "Meta Tags" -msgstr "Meta etiketleri" +msgstr "" #: website/doctype/web_page/web_page.js:117 msgid "Meta Title" -msgstr "Meta Başlığı" +msgstr "" #. Label of a Data field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Meta Title" -msgstr "Meta Başlığı" +msgstr "" #. Label of a Data field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Meta Title" -msgstr "Meta Başlığı" +msgstr "" #: website/doctype/web_page/web_page.js:110 msgid "Meta title for SEO" -msgstr "SEO için meta başlık" +msgstr "" #. Label of a Data field in DocType 'Access Log' #: core/doctype/access_log/access_log.json @@ -18786,7 +19532,7 @@ msgctxt "Scheduled Job Type" msgid "Method" msgstr "Yöntem" -#: desk/doctype/number_card/number_card.py:69 +#: desk/doctype/number_card/number_card.py:70 msgid "Method is required to create a number card" msgstr "" @@ -18800,47 +19546,47 @@ msgstr "" #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Middle Name" -msgstr "İkinci ad" +msgstr "İkinci Adı" #. Label of a Data field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Middle Name" -msgstr "İkinci ad" +msgstr "İkinci Adı" #. Name of a DocType #: automation/doctype/milestone/milestone.json msgid "Milestone" -msgstr "Aşama" +msgstr "" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "Milestone" msgid "Milestone" -msgstr "Aşama" +msgstr "" #. Name of a DocType #: automation/doctype/milestone_tracker/milestone_tracker.json msgid "Milestone Tracker" -msgstr "Kilometre Taşı İzleyici" +msgstr "" #. Label of a Link field in DocType 'Milestone' #: automation/doctype/milestone/milestone.json msgctxt "Milestone" msgid "Milestone Tracker" -msgstr "Kilometre Taşı İzleyici" +msgstr "" #. Option for the 'Function' (Select) field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Minimum" -msgstr "Minimum" +msgstr "" #. Label of a Select field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Minimum Password Score" -msgstr "Minimum Şifre Puanı" +msgstr "" #. Label of a Int field in DocType 'Package Release' #: core/doctype/package_release/package_release.json @@ -18848,10 +19594,10 @@ msgctxt "Package Release" msgid "Minor" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:100 -#: integrations/doctype/ldap_settings/ldap_settings.py:105 -#: integrations/doctype/ldap_settings/ldap_settings.py:114 -#: integrations/doctype/ldap_settings/ldap_settings.py:122 +#: integrations/doctype/ldap_settings/ldap_settings.py:102 +#: integrations/doctype/ldap_settings/ldap_settings.py:107 +#: integrations/doctype/ldap_settings/ldap_settings.py:116 +#: integrations/doctype/ldap_settings/ldap_settings.py:124 #: integrations/doctype/ldap_settings/ldap_settings.py:332 msgid "Misconfigured" msgstr "" @@ -18860,19 +19606,19 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: core/doctype/doctype/doctype.py:1477 +#: core/doctype/doctype/doctype.py:1475 msgid "Missing Field" msgstr "" #: public/js/frappe/form/save.js:178 msgid "Missing Fields" -msgstr "Eksik Alanları" +msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:123 +#: email/doctype/auto_email_report/auto_email_report.py:129 msgid "Missing Filters Required" msgstr "" -#: desk/form/assign_to.py:105 +#: desk/form/assign_to.py:107 msgid "Missing Permission" msgstr "" @@ -18881,7 +19627,7 @@ msgid "Missing Value" msgstr "" #: public/js/frappe/ui/field_group.js:118 -#: public/js/frappe/widgets/widget_dialog.js:330 +#: public/js/frappe/widgets/widget_dialog.js:369 #: public/js/workflow_builder/store.js:97 #: workflow/doctype/workflow/workflow.js:71 msgid "Missing Values Required" @@ -18889,24 +19635,24 @@ msgstr "Gerekli Eksik Değerler" #: www/login.py:96 msgid "Mobile" -msgstr "" +msgstr "Cep Telefonu" -#: tests/test_translate.py:86 tests/test_translate.py:89 -#: tests/test_translate.py:91 tests/test_translate.py:94 +#: tests/test_translate.py:85 tests/test_translate.py:88 +#: tests/test_translate.py:90 tests/test_translate.py:93 msgid "Mobile No" -msgstr "Mobil No" +msgstr "Cep No" #. Label of a Data field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Mobile No" -msgstr "Mobil No" +msgstr "Cep No" #. Label of a Data field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Mobile No" -msgstr "Mobil No" +msgstr "Cep No" #. Label of a Check field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -18922,119 +19668,119 @@ msgstr "" #: core/report/transaction_log_report/transaction_log_report.py:106 #: social/doctype/energy_point_rule/energy_point_rule.js:43 msgid "Modified By" -msgstr "Tarafından tasarlandı" +msgstr "" -#: core/doctype/doctype/doctype_list.js:17 +#: core/doctype/doctype/doctype_list.js:30 msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Data field in DocType 'Block Module' #: core/doctype/block_module/block_module.json msgctxt "Block Module" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Dashboard' #: desk/doctype/dashboard/dashboard.json msgctxt "Dashboard" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Dashboard Chart Source' #: desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgctxt "Dashboard Chart Source" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Module Onboarding' #: desk/doctype/module_onboarding/module_onboarding.json msgctxt "Module Onboarding" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Page' #: core/doctype/page/page.json msgctxt "Page" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Print Format Field Template' #: printing/doctype/print_format_field_template/print_format_field_template.json msgctxt "Print Format Field Template" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'User Type Module' #: core/doctype/user_type_module/user_type_module.json msgctxt "User Type Module" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Web Template' #: website/doctype/web_template/web_template.json msgctxt "Web Template" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Module" -msgstr "Modül" +msgstr "" #. Label of a Link field in DocType 'Client Script' #: custom/doctype/client_script/client_script.json @@ -19069,19 +19815,19 @@ msgstr "" #. Name of a DocType #: core/doctype/module_def/module_def.json msgid "Module Def" -msgstr "Modül Tanımları" +msgstr "" #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Module Def" msgid "Module Def" -msgstr "Modül Tanımları" +msgstr "" #. Linked DocType in Package's connections #: core/doctype/package/package.json msgctxt "Package" msgid "Module Def" -msgstr "Modül Tanımları" +msgstr "" #. Label of a HTML field in DocType 'Module Profile' #: core/doctype/module_profile/module_profile.json @@ -19093,41 +19839,41 @@ msgstr "" #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "Module Name" -msgstr "Modül Adı" +msgstr "" #. Label of a Data field in DocType 'Module Def' #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Module Name" -msgstr "Modül Adı" +msgstr "" #. Name of a DocType #: desk/doctype/module_onboarding/module_onboarding.json msgid "Module Onboarding" -msgstr "Modül İlk Katılımı" +msgstr "" #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Module Onboarding" msgid "Module Onboarding" -msgstr "Modül İlk Katılımı" +msgstr "" #. Name of a DocType #: core/doctype/module_profile/module_profile.json msgid "Module Profile" -msgstr "Modül Profili" +msgstr "" #. Label of a Link in the Users Workspace #: core/workspace/users/users.json msgctxt "Module Profile" msgid "Module Profile" -msgstr "Modül Profili" +msgstr "" #. Label of a Link field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Module Profile" -msgstr "Modül Profili" +msgstr "" #. Label of a Data field in DocType 'Module Profile' #: core/doctype/module_profile/module_profile.json @@ -19135,34 +19881,34 @@ msgctxt "Module Profile" msgid "Module Profile Name" msgstr "" -#: desk/doctype/module_onboarding/module_onboarding.py:68 +#: desk/doctype/module_onboarding/module_onboarding.py:69 msgid "Module onboarding progress reset" msgstr "" #: custom/doctype/customize_form/customize_form.js:208 msgid "Module to Export" -msgstr "Modül İhracat" +msgstr "" -#: modules/utils.py:261 +#: modules/utils.py:255 msgid "Module {} not found" msgstr "" #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Modules" -msgstr "Modüller" +msgstr "" #. Group in Package's connections #: core/doctype/package/package.json msgctxt "Package" msgid "Modules" -msgstr "Modüller" +msgstr "" #. Label of a HTML field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Modules HTML" -msgstr "Modüller HTML" +msgstr "" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #: automation/doctype/assignment_rule_day/assignment_rule_day.json @@ -19199,9 +19945,9 @@ msgstr "Pazartesi" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Monospace" -msgstr "Monospace" +msgstr "" -#: public/js/frappe/views/calendar/calendar.js:268 +#: public/js/frappe/views/calendar/calendar.js:269 msgid "Month" msgstr "Ay" @@ -19271,17 +20017,24 @@ msgstr "Aylık" #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Monthly Long" -msgstr "Aylık Uzun" +msgstr "" #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Monthly Long" -msgstr "Aylık Uzun" +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:402 +msgid "Monthly Rank" +msgstr "" #: public/js/frappe/form/link_selector.js:39 #: public/js/frappe/form/multi_select_dialog.js:43 #: public/js/frappe/form/multi_select_dialog.js:70 +#: public/js/frappe/ui/toolbar/search.js:285 +#: public/js/frappe/ui/toolbar/search.js:300 +#: public/js/frappe/widgets/chart_widget.js:674 #: templates/includes/list/list.html:23 #: templates/includes/search_template.html:13 msgid "More" @@ -19291,59 +20044,60 @@ msgstr "Daha fazla" #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "More Information" -msgstr "Daha fazla bilgi" +msgstr "Daha Fazla Bilgi" #. Label of a Section Break field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "More Information" -msgstr "Daha fazla bilgi" +msgstr "Daha Fazla Bilgi" #. Label of a Section Break field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "More Information" -msgstr "Daha fazla bilgi" +msgstr "Daha Fazla Bilgi" #. Label of a Tab Break field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "More Information" -msgstr "Daha fazla bilgi" +msgstr "Daha Fazla Bilgi" #: website/doctype/help_article/templates/help_article.html:19 #: website/doctype/help_article/templates/help_article.html:33 msgid "More articles on {0}" -msgstr "Daha makaleler {0}" +msgstr "" #. Description of the 'Footer' (Text Editor) field in DocType 'About Us #. Settings' #: website/doctype/about_us_settings/about_us_settings.json msgctxt "About Us Settings" msgid "More content for the bottom of the page." -msgstr "Sayfanın altında daha fazla içerik." +msgstr "" #: public/js/frappe/ui/sort_selector.js:193 msgid "Most Used" -msgstr "En çok kullanılan" +msgstr "" -#: utils/password.py:65 +#: utils/password.py:64 msgid "Most probably your password is too long." msgstr "" #: core/doctype/communication/communication.js:86 #: core/doctype/communication/communication.js:194 #: core/doctype/communication/communication.js:212 +#: public/js/frappe/form/grid_row_form.js:42 msgid "Move" -msgstr "Hareket" +msgstr "Taşı" #: public/js/frappe/form/grid_row.js:189 msgid "Move To" -msgstr "Taşı" +msgstr "" #: core/doctype/communication/communication.js:104 msgid "Move To Trash" -msgstr "Çöp kutusuna taşıyın" +msgstr "" #: public/js/frappe/form/form.js:176 msgid "Move cursor to above row" @@ -19363,7 +20117,7 @@ msgstr "" #: public/js/frappe/form/grid_row.js:165 msgid "Move to Row Number" -msgstr "Satır Numarasına Taşı" +msgstr "" #. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -19378,22 +20132,22 @@ msgctxt "Form Tour Step" msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround" msgstr "" -#: utils/nestedset.py:334 +#: utils/nestedset.py:328 msgid "Multiple root nodes not allowed." -msgstr "Çoklu kök düğümler izin verilmiyor." +msgstr "" #. Label of a Select field in DocType 'Energy Point Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "Multiplier Field" -msgstr "Çarpan Alanı" +msgstr "" #. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data #. Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Must be a publicly accessible Google Sheets URL" -msgstr "Herkes tarafından erişilebilen bir Google E-Tablolar URL'si olmalıdır" +msgstr "" #. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP #. Settings' @@ -19406,52 +20160,52 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Must be of type \"Attach Image\"" -msgstr "\"Resim Ekle\" türünden bir alan olmalıdır" +msgstr "" #. Description of the 'Image Field' (Data) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Must be of type \"Attach Image\"" -msgstr "\"Resim Ekle\" türünden bir alan olmalıdır" +msgstr "" -#: desk/query_report.py:202 +#: desk/query_report.py:200 msgid "Must have report permission to access this report." -msgstr "Bu rapora erişmek için rapor izni olması gerekir." +msgstr "" #: core/doctype/report/report.py:148 msgid "Must specify a Query to run" -msgstr "Çalıştırmak için bir sorgu belirtmek gerekir" +msgstr "" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Mute Sounds" -msgstr "Sesleri Sessize Al" +msgstr "" #: templates/includes/web_sidebar.html:41 -#: website/doctype/web_form/web_form.py:401 +#: website/doctype/web_form/web_form.py:400 #: website/doctype/website_settings/website_settings.py:181 www/list.py:21 #: www/me.html:4 www/me.html:8 www/update_password.py:10 msgid "My Account" -msgstr "Hesabım" +msgstr "" #. Label of a standard navbar item #. Type: Route #: hooks.py msgid "My Profile" -msgstr "Profilim" +msgstr "" #. Label of a standard navbar item #. Type: Action #: hooks.py msgid "My Settings" -msgstr "Ayarlarım" +msgstr "" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "MyISAM" -msgstr "MyISAM" +msgstr "" #: 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." @@ -19470,79 +20224,82 @@ msgstr "" #: public/js/frappe/views/file/file_view.js:97 #: website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" -msgstr "İsim" +msgstr "Adı" #. Label of a Data field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Name" -msgstr "İsim" +msgstr "Adı" #. Label of a Data field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Name" -msgstr "İsim" +msgstr "Adı" #. Label of a Data field in DocType 'Slack Webhook URL' #: integrations/doctype/slack_webhook_url/slack_webhook_url.json msgctxt "Slack Webhook URL" msgid "Name" -msgstr "İsim" +msgstr "Adı" #. Label of a Data field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Name" -msgstr "İsim" +msgstr "Adı" + +#: integrations/doctype/webhook/webhook.js:29 +msgid "Name (Doc Name)" +msgstr "" #: desk/utils.py:22 msgid "Name already taken, please set a new name" msgstr "" -#: model/naming.py:460 +#: model/naming.py:480 msgid "Name cannot contain special characters like {0}" -msgstr "Ad, {0} gibi özel karakterler içeremez" +msgstr "" #: 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 "Eğer bu alan ile bağlantılı olmak istiyorum Document Type (Belge Türü) adı. örneğin Müşteri" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:117 msgid "Name of the new Print Format" -msgstr "Yeni Baskı Biçimi Adı" +msgstr "" -#: model/naming.py:454 +#: model/naming.py:475 msgid "Name of {0} cannot be {1}" -msgstr "{0} adı olamaz {1}" +msgstr "" -#: utils/password_strength.py:178 +#: utils/password_strength.py:174 msgid "Names and surnames by themselves are easy to guess." -msgstr "kendileri tarafından ad ve soyadları tahmin etmek kolaydır." +msgstr "" #. Label of a Section Break field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Naming" -msgstr "Adlandırma" +msgstr "" #. Label of a Section Break field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Naming" -msgstr "Adlandırma" +msgstr "" #. Label of a Section Break field in DocType 'Document Naming Rule' #: core/doctype/document_naming_rule/document_naming_rule.json msgctxt "Document Naming Rule" msgid "Naming" -msgstr "Adlandırma" +msgstr "" #. Description of the 'Auto Name' (Data) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" -msgid "" -"Naming Options:\n" +msgid "Naming Options:\n" "
  1. field:[fieldname] - By Field
  2. autoincrement - Uses Databases' Auto Increment feature
  3. naming_series: - By Naming Series (field called naming_series must be present)
  4. Prompt - Prompt user for a name
  5. [series] - Series by prefix (separated by a dot); for example PRE.#####
  6. \n" "
  7. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" @@ -19550,8 +20307,7 @@ msgstr "" #. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" -msgid "" -"Naming Options:\n" +msgid "Naming Options:\n" "
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" "
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" @@ -19572,67 +20328,67 @@ msgstr "" #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Naming Series" -msgstr "Seri Adlandırma" +msgstr "Adlandırma Serisi" -#: model/naming.py:243 +#: model/naming.py:244 msgid "Naming Series mandatory" -msgstr "Seri zorunlu adlandırma" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Web Template' #: website/doctype/web_template/web_template.json msgctxt "Web Template" msgid "Navbar" -msgstr "Navbar" +msgstr "" #. Label of a Section Break field in DocType 'Website Settings' #. Label of a Tab Break field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Navbar" -msgstr "Navbar" +msgstr "" #. Name of a DocType #: core/doctype/navbar_item/navbar_item.json msgid "Navbar Item" -msgstr "Navbar Öğesi" +msgstr "" #. Name of a DocType #: core/doctype/navbar_settings/navbar_settings.json msgid "Navbar Settings" -msgstr "Navbar Ayarları" +msgstr "" #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Navbar Settings" msgid "Navbar Settings" -msgstr "Navbar Ayarları" +msgstr "" #. Label of a Link field in DocType 'Website Settings' #. Label of a Section Break field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Navbar Template" -msgstr "Navbar Şablonu" +msgstr "" #. Label of a Code field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Navbar Template Values" -msgstr "Navbar Şablon Değerleri" +msgstr "" -#: public/js/frappe/ui/keyboard.js:211 +#: public/js/frappe/ui/keyboard.js:214 msgid "Navigate Home" -msgstr "Ana Sayfaya Git" +msgstr "" -#: public/js/frappe/list/list_view.js:1134 +#: public/js/frappe/list/list_view.js:1162 msgctxt "Description of a list view shortcut" msgid "Navigate list down" -msgstr "Listede aşağı git" +msgstr "" -#: public/js/frappe/list/list_view.js:1141 +#: public/js/frappe/list/list_view.js:1169 msgctxt "Description of a list view shortcut" msgid "Navigate list up" -msgstr "Listede gezin" +msgstr "" #: public/js/frappe/ui/page.js:168 msgid "Navigate to main content" @@ -19648,17 +20404,17 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: desk/doctype/workspace/workspace.py:343 +#: desk/doctype/workspace/workspace.py:341 msgid "Need Workspace Manager role to hide/unhide public workspaces" msgstr "" -#: model/document.py:607 +#: model/document.py:627 msgid "Negative Value" -msgstr "Olumsuz değer" +msgstr "" -#: utils/nestedset.py:95 +#: utils/nestedset.py:93 msgid "Nested set error. Please contact the Administrator." -msgstr "İç içe set hatası. Yönetici ile iletişim kurunuz." +msgstr "" #. Name of a DocType #: printing/doctype/network_printer_settings/network_printer_settings.json @@ -19694,15 +20450,31 @@ msgstr "Yeni" #: public/js/frappe/views/interaction.js:15 msgid "New Activity" -msgstr "Yeni Aktivite" +msgstr "" -#: templates/includes/comments/comments.py:64 +#: public/js/frappe/form/templates/address_list.html:42 +msgid "New Address" +msgstr "Yeni Adres" + +#: public/js/frappe/widgets/widget_dialog.js:58 +msgid "New Chart" +msgstr "" + +#: templates/includes/comments/comments.py:62 msgid "New Comment on {0}: {1}" -msgstr "{0} Üzerine Yeni Yorum: {1}" +msgstr "" -#: printing/page/print/print.js:288 printing/page/print/print.js:335 +#: public/js/frappe/form/templates/contact_list.html:90 +msgid "New Contact" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:70 +msgid "New Custom Block" +msgstr "" + +#: printing/page/print/print.js:295 printing/page/print/print.js:342 msgid "New Custom Print Format" -msgstr "Yeni Özel Baskı Biçimi" +msgstr "" #. Label of a Check field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -19712,74 +20484,99 @@ msgstr "" #: desk/doctype/notification_log/notification_log.py:158 msgid "New Document Shared {0}" -msgstr "Yeni Belge Paylaşıldı {0}" +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:26 #: public/js/frappe/views/communication.js:23 msgid "New Email" -msgstr "Yeni E-posta" +msgstr "" #: public/js/frappe/list/list_view_select.js:98 #: public/js/frappe/views/inbox/inbox_view.js:177 msgid "New Email Account" -msgstr "Yeni E-posta Hesabı" +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:45 msgid "New Event" -msgstr "Yeni Etkinlik" +msgstr "" #: public/js/frappe/views/file/file_view.js:94 msgid "New Folder" -msgstr "Yeni dosya" +msgstr "" #: public/js/frappe/views/kanban/kanban_view.js:341 msgid "New Kanban Board" -msgstr "Yeni Kanban Kurulu" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:62 +msgid "New Links" +msgstr "" #: desk/doctype/notification_log/notification_log.py:156 msgid "New Mention on {0}" -msgstr "{0} tarihinde Yeni Bahsedildi" +msgstr "" -#: www/contact.py:51 +#: www/contact.py:59 msgid "New Message from Website Contact Page" -msgstr "Web sitesi İletişim Sayfasından Yeni İleti" +msgstr "" -#: public/js/frappe/form/toolbar.js:206 public/js/frappe/model/model.js:727 +#: public/js/frappe/form/toolbar.js:206 public/js/frappe/model/model.js:732 msgid "New Name" -msgstr "Yeni Adı" +msgstr "" #. Label of a Read Only field in DocType 'Deleted Document' #: core/doctype/deleted_document/deleted_document.json msgctxt "Deleted Document" msgid "New Name" -msgstr "Yeni Adı" +msgstr "" #: email/doctype/email_group/email_group.js:67 msgid "New Newsletter" -msgstr "Yeni Haber" +msgstr "" #: desk/doctype/notification_log/notification_log.py:155 msgid "New Notification" -msgstr "Yeni Bildirim" +msgstr "" -#: core/doctype/user/user.js:167 www/update-password.html:19 +#: public/js/frappe/widgets/widget_dialog.js:64 +msgid "New Number Card" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:66 +msgid "New Onboarding" +msgstr "" + +#: core/doctype/user/user.js:171 www/update-password.html:19 msgid "New Password" -msgstr "Yeni Şifre" +msgstr "" -#: printing/page/print/print.js:260 printing/page/print/print.js:314 +#: printing/page/print/print.js:267 printing/page/print/print.js:321 #: printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" -msgstr "Yeni Baskı Biçimi Adı" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1310 +#: public/js/frappe/widgets/widget_dialog.js:68 +msgid "New Quick List" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:1307 msgid "New Report name" -msgstr "Yeni Rapor adı" +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:60 +msgid "New Shortcut" +msgstr "" + +#: core/doctype/version/version_view.html:14 +#: core/doctype/version/version_view.html:76 +msgid "New Value" +msgstr "" #: workflow/page/workflow_builder/workflow_builder.js:61 msgid "New Workflow Name" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1172 +#: public/js/frappe/views/workspace/workspace.js:1183 msgid "New Workspace" msgstr "" @@ -19787,9 +20584,9 @@ msgstr "" msgid "New password cannot be same as old password" msgstr "" -#: utils/change_log.py:306 +#: utils/change_log.py:320 msgid "New updates are available" -msgstr "Yeni güncellemeler mevcut" +msgstr "" #. Description of the 'Disable signups' (Check) field in DocType 'Website #. Settings' @@ -19803,42 +20600,43 @@ msgstr "" #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "New value to be set" -msgstr "Ayarlanacak Yeni değer" +msgstr "" -#: public/js/frappe/form/quick_entry.js:124 public/js/frappe/form/toolbar.js:36 +#: public/js/frappe/form/quick_entry.js:129 public/js/frappe/form/toolbar.js:36 #: public/js/frappe/form/toolbar.js:196 public/js/frappe/form/toolbar.js:209 #: public/js/frappe/form/toolbar.js:490 -#: public/js/frappe/ui/toolbar/search_utils.js:151 -#: public/js/frappe/ui/toolbar/search_utils.js:152 -#: public/js/frappe/ui/toolbar/search_utils.js:201 -#: public/js/frappe/ui/toolbar/search_utils.js:202 +#: public/js/frappe/ui/toolbar/search_utils.js:167 +#: public/js/frappe/ui/toolbar/search_utils.js:168 +#: public/js/frappe/ui/toolbar/search_utils.js:217 +#: public/js/frappe/ui/toolbar/search_utils.js:218 #: public/js/frappe/views/treeview.js:350 -#: website/doctype/web_form/web_form.py:310 +#: public/js/frappe/widgets/widget_dialog.js:72 +#: website/doctype/web_form/web_form.py:309 msgid "New {0}" -msgstr "Yeni {0}" +msgstr "" #: public/js/frappe/views/reports/query_report.js:392 msgid "New {0} Created" -msgstr "Yeni {0} Oluşturuldu" +msgstr "" #: public/js/frappe/views/reports/query_report.js:384 msgid "New {0} {1} added to Dashboard {2}" -msgstr "Gösterge Tablosuna yeni {0} {1} eklendi {2}" +msgstr "" -#: public/js/frappe/form/quick_entry.js:167 +#: public/js/frappe/form/quick_entry.js:172 #: public/js/frappe/views/reports/query_report.js:389 msgid "New {0} {1} created" -msgstr "Yeni {0} {1} oluşturuldu" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:373 +#: automation/doctype/auto_repeat/auto_repeat.py:374 msgid "New {0}: {1}" -msgstr "Yeni {0}: {1}" +msgstr "" -#: utils/change_log.py:298 +#: utils/change_log.py:312 msgid "New {} releases for the following apps are available" -msgstr "Aşağıdaki uygulamalar için yeni {} sürümler kullanıma sunuldu" +msgstr "" -#: core/doctype/user/user.py:764 +#: core/doctype/user/user.py:806 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -19847,13 +20645,13 @@ msgstr "" #: automation/workspace/tools/tools.json #: email/doctype/newsletter/newsletter.json msgid "Newsletter" -msgstr "Bülten" +msgstr "" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "Newsletter" msgid "Newsletter" -msgstr "Bülten" +msgstr "" #. Name of a DocType #: email/doctype/newsletter_attachment/newsletter_attachment.json @@ -19863,7 +20661,7 @@ msgstr "" #. Name of a DocType #: email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Newsletter Email Group" -msgstr "Bülten E-posta Grubu" +msgstr "" #. Name of a role #: email/doctype/email_group/email_group.json @@ -19871,11 +20669,11 @@ msgstr "Bülten E-posta Grubu" #: email/doctype/newsletter/newsletter.json #: website/doctype/marketing_campaign/marketing_campaign.json msgid "Newsletter Manager" -msgstr "Bülten Yöneticisi" +msgstr "" #: email/doctype/newsletter/newsletter.py:130 msgid "Newsletter has already been sent" -msgstr "Bülten zaten gönderildi" +msgstr "" #: email/doctype/newsletter/newsletter.py:149 msgid "Newsletter must be published to send webview link in email" @@ -19883,31 +20681,37 @@ msgstr "" #: email/doctype/newsletter/newsletter.py:137 msgid "Newsletter should have atleast one recipient" -msgstr "Bülten en az bir alıcıya sahip olmalı" +msgstr "" -#: email/doctype/newsletter/newsletter.py:392 +#: email/doctype/newsletter/newsletter.py:390 msgid "Newsletters" -msgstr "Haber Bültenleri" +msgstr "" -#: public/js/frappe/form/form_tour.js:316 +#: public/js/frappe/form/form_tour.js:318 +#: public/js/frappe/web_form/web_form.js:91 #: public/js/onboarding_tours/onboarding_tours.js:15 #: public/js/onboarding_tours/onboarding_tours.js:240 -#: templates/includes/slideshow.html:38 website/utils.py:247 +#: templates/includes/slideshow.html:38 website/utils.py:245 #: website/web_template/slideshow/slideshow.html:44 msgid "Next" -msgstr "İleri" +msgstr "Sonraki" + +#: public/js/frappe/ui/slides.js:359 +msgctxt "Go to next slide" +msgid "Next" +msgstr "Sonraki" #. Label of a Link field in DocType 'Workflow Document State' #: workflow/doctype/workflow_document_state/workflow_document_state.json msgctxt "Workflow Document State" msgid "Next Action Email Template" -msgstr "Sonraki Eylem E-posta Şablonu" +msgstr "" #. Label of a HTML field in DocType 'Success Action' #: core/doctype/success_action/success_action.json msgctxt "Success Action" msgid "Next Actions HTML" -msgstr "Sonraki İşlemler HTML" +msgstr "" #: public/js/frappe/form/toolbar.js:297 msgid "Next Document" @@ -19929,13 +20733,17 @@ msgstr "" #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Next Schedule Date" -msgstr "Sonraki Program Tarihi" +msgstr "" + +#: automation/doctype/auto_repeat/auto_repeat_schedule.html:6 +msgid "Next Scheduled Date" +msgstr "" #. Label of a Link field in DocType 'Workflow Transition' #: workflow/doctype/workflow_transition/workflow_transition.json msgctxt "Workflow Transition" msgid "Next State" -msgstr "Next State" +msgstr "" #. Label of a Code field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -19947,13 +20755,17 @@ msgstr "" #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" msgid "Next Sync Token" -msgstr "Sonraki Senkronizasyon Jetonu" +msgstr "" #. Label of a Password field in DocType 'Google Contacts' #: integrations/doctype/google_contacts/google_contacts.json msgctxt "Google Contacts" msgid "Next Sync Token" -msgstr "Sonraki Senkronizasyon Jetonu" +msgstr "" + +#: public/js/frappe/form/workflow.js:45 +msgid "Next actions" +msgstr "" #. Label of a Check field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -19961,101 +20773,117 @@ msgctxt "Form Tour Step" msgid "Next on Click" msgstr "" -#: integrations/doctype/webhook/webhook.py:137 +#: integrations/doctype/webhook/webhook.py:140 #: public/js/form_builder/utils.js:341 -#: public/js/frappe/form/controls/link.js:471 +#: public/js/frappe/form/controls/link.js:472 #: public/js/frappe/list/list_sidebar_group_by.js:223 -#: public/js/frappe/views/reports/query_report.js:1513 +#: public/js/frappe/views/reports/query_report.js:1530 #: website/doctype/help_article/templates/help_article.html:26 msgid "No" -msgstr "Hiç" +msgstr "Hayır" -#: public/js/frappe/ui/filters/filter.js:501 +#: public/js/frappe/ui/filters/filter.js:502 msgctxt "Checkbox is not checked" msgid "No" -msgstr "Hiç" +msgstr "Hayır" #: public/js/frappe/ui/messages.js:37 msgctxt "Dismiss confirmation dialog" msgid "No" -msgstr "Hiç" +msgstr "Hayır" #. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP #. Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "No" -msgstr "Hiç" +msgstr "Hayır" #. Option for the 'Standard' (Select) field in DocType 'Page' #: core/doctype/page/page.json msgctxt "Page" msgid "No" -msgstr "Hiç" +msgstr "Hayır" #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "No" -msgstr "Hiç" +msgstr "Hayır" #. Option for the 'Is Standard' (Select) field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "No" -msgstr "Hiç" +msgstr "Hayır" #: www/third_party_apps.html:54 msgid "No Active Sessions" -msgstr "Etkin Oturum Yok" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "No Copy" -msgstr "Kopya yok" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "No Copy" -msgstr "Kopya yok" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "No Copy" -msgstr "Kopya yok" +msgstr "" #: core/doctype/data_export/exporter.py:162 -#: email/doctype/auto_email_report/auto_email_report.py:263 +#: email/doctype/auto_email_report/auto_email_report.py:288 #: public/js/frappe/data_import/import_preview.js:142 +#: public/js/frappe/form/grid.js:63 #: public/js/frappe/form/multi_select_dialog.js:223 #: public/js/frappe/utils/datatable.js:10 +#: public/js/frappe/widgets/chart_widget.js:57 msgid "No Data" msgstr "Hiç Veri yok" +#: desk/page/user_profile/user_profile.html:11 +#: desk/page/user_profile/user_profile.html:22 +#: desk/page/user_profile/user_profile.html:33 +msgid "No Data to Show" +msgstr "" + +#: public/js/frappe/widgets/quick_list_widget.js:131 +msgid "No Data..." +msgstr "" + #: public/js/frappe/views/inbox/inbox_view.js:176 msgid "No Email Account" -msgstr "E-posta Yok Hesabı" +msgstr "" + +#: public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "" #: public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" -msgstr "hiçbir e-postalar" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:362 +#: integrations/doctype/ldap_settings/ldap_settings.py:360 msgid "No Entry for the User {0} found within LDAP!" -msgstr "LDAP içinde {0} Kullanıcısı için Giriş bulunamadı!" +msgstr "" #: public/js/frappe/widgets/chart_widget.js:366 msgid "No Filters Set" -msgstr "Filtre Ayarlanmamış" +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:356 +#: integrations/doctype/google_calendar/google_calendar.py:357 msgid "No Google Calendar Event to sync." -msgstr "Eşitlenecek Google Takvim Etkinliği yok." +msgstr "" -#: public/js/frappe/ui/capture.js:254 +#: public/js/frappe/ui/capture.js:262 msgid "No Images" msgstr "" @@ -20063,49 +20891,69 @@ msgstr "" msgid "No Items Found" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:364 +#: integrations/doctype/ldap_settings/ldap_settings.py:362 msgid "No LDAP User found for email: {0}" -msgstr "E-posta için LDAP Kullanıcısı bulunamadı: {0}" +msgstr "" -#: printing/page/print/print.js:675 printing/page/print/print.js:757 -#: public/js/frappe/list/bulk_operations.js:82 -#: public/js/frappe/list/bulk_operations.js:126 utils/weasyprint.py:54 +#: public/js/workflow_builder/store.js:51 +msgid "No Label" +msgstr "" + +#: printing/page/print/print.js:682 printing/page/print/print.js:764 +#: public/js/frappe/list/bulk_operations.js:90 +#: public/js/frappe/list/bulk_operations.js:140 utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: model/naming.py:436 +#: model/naming.py:457 msgid "No Name Specified for {0}" -msgstr "{0} için Ad Belirtilmedi" +msgstr "" -#: core/doctype/doctype/doctype.py:1684 +#: public/js/frappe/ui/notifications/notifications.js:308 +msgid "No New notifications" +msgstr "" + +#: core/doctype/doctype/doctype.py:1682 msgid "No Permissions Specified" -msgstr "Belirtilen İzin Yok" +msgstr "" #: core/page/permission_manager/permission_manager.js:192 msgid "No Permissions set for this criteria." -msgstr "No Permissions set for this criteria." +msgstr "" #: core/page/dashboard_view/dashboard_view.js:93 msgid "No Permitted Charts" -msgstr "İzin Verilen Grafik Yok" +msgstr "" #: core/page/dashboard_view/dashboard_view.js:92 msgid "No Permitted Charts on this Dashboard" -msgstr "Bu Kontrol Panelinde İzin Verilen Grafik Yok" +msgstr "" -#: printing/page/print/print.js:835 +#: printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "" + +#: printing/page/print/print.js:686 +msgid "No Preview Available" +msgstr "" + +#: printing/page/print/print.js:842 msgid "No Printer is Available." -msgstr "Yazıcı Yok." +msgstr "" + +#: core/doctype/rq_worker/rq_worker_list.js:3 +msgid "No RQ Workers connected. Try restarting the bench." +msgstr "" #: public/js/frappe/form/link_selector.js:135 msgid "No Results" -msgstr "Sonuç yok" +msgstr "" #: public/js/frappe/ui/toolbar/search.js:51 msgid "No Results found" msgstr "" -#: core/doctype/user/user.py:765 +#: core/doctype/user/user.py:807 msgid "No Roles Specified" msgstr "" @@ -20113,13 +20961,25 @@ msgstr "" msgid "No Select Field Found" msgstr "" -#: desk/reportview.py:565 +#: desk/reportview.py:584 msgid "No Tags" -msgstr "Etiket yok" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:428 +msgid "No Upcoming Events" +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:441 +msgid "No activities to show" +msgstr "" + +#: public/js/frappe/form/templates/address_list.html:37 +msgid "No address added yet." +msgstr "" #: email/doctype/notification/notification.js:180 msgid "No alerts for today" -msgstr "Bugün için uyarı yok" +msgstr "" #: email/doctype/newsletter/newsletter.js:34 msgid "No broken links found in the email content" @@ -20127,13 +20987,13 @@ msgstr "" #: public/js/frappe/form/save.js:38 msgid "No changes in document" -msgstr "Belgede değişiklik yok" +msgstr "" -#: model/rename_doc.py:370 +#: model/rename_doc.py:364 msgid "No changes made because old and new name are the same." msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1477 +#: public/js/frappe/views/workspace/workspace.js:1488 msgid "No changes made on the page" msgstr "" @@ -20141,130 +21001,171 @@ msgstr "" msgid "No changes to sync" msgstr "" -#: core/doctype/data_import/importer.py:286 +#: core/doctype/data_import/importer.py:282 msgid "No changes to update" msgstr "" -#: website/doctype/blog_post/blog_post.py:376 +#: website/doctype/blog_post/blog_post.py:372 msgid "No comments yet" -msgstr "Yorum yok" +msgstr "" #: templates/includes/comments/comments.html:4 msgid "No comments yet. " msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:426 -msgid "No contacts linked to document" -msgstr "Belgeye bağlı kişi yok" +#: public/js/frappe/form/templates/contact_list.html:85 +msgid "No contacts added yet." +msgstr "" -#: desk/query_report.py:335 +#: automation/doctype/auto_repeat/auto_repeat.py:427 +msgid "No contacts linked to document" +msgstr "" + +#: desk/query_report.py:331 msgid "No data to export" msgstr "Verilecek veri yok" -#: contacts/doctype/address/address.py:251 +#: contacts/doctype/address/address.py:249 msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." -msgstr "Varsayılan Adres Şablonu bulunamadı. Lütfen Kurulum> Yazdırma ve Markalama> Adres Şablonu'ndan yeni bir tane oluşturun." +msgstr "" #: public/js/frappe/ui/toolbar/search.js:71 msgid "No documents found tagged with {0}" -msgstr "{0} ile etiketlenmiş doküman bulunamadı" +msgstr "" #: public/js/frappe/views/inbox/inbox_view.js:21 msgid "No email account associated with the User. Please add an account under User > Email Inbox." -msgstr "Kullanıcı ile ilişkilendirilmiş e-posta hesabı yok. Lütfen Kullanıcı> E-posta Gelen Kutusu altına bir hesap ekleyin." +msgstr "" + +#: core/doctype/data_import/data_import.js:484 +msgid "No failed logs" +msgstr "" + +#: public/js/frappe/views/kanban/kanban_view.js:368 +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 "" #: utils/file_manager.py:143 msgid "No file attached" -msgstr "Ekli dosya yok" +msgstr "" -#: desk/form/utils.py:102 +#: public/js/frappe/list/list_sidebar_group_by.js:134 +msgid "No filters found" +msgstr "" + +#: public/js/frappe/ui/filters/filter_list.js:298 +msgid "No filters selected" +msgstr "Hiçbir filtre seçilmedi" + +#: desk/form/utils.py:101 msgid "No further records" -msgstr "Başka bir kayıt" +msgstr "" #: templates/includes/search_template.html:49 msgid "No matching records. Search something new" -msgstr "Eşleşen kayıtları. Yeni bir şey ara" +msgstr "" #: public/js/frappe/web_form/web_form_list.js:161 msgid "No more items to display" -msgstr "Görüntülenecek başka öğe yok" +msgstr "" #: utils/password_strength.py:45 msgid "No need for symbols, digits, or uppercase letters." -msgstr "semboller, rakamlar, ya da büyük harfler gerek yok." +msgstr "" -#: integrations/doctype/google_contacts/google_contacts.py:192 +#: integrations/doctype/google_contacts/google_contacts.py:195 msgid "No new Google Contacts synced." -msgstr "Yeni Google Kişisi senkronize edilmedi." +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:46 +msgid "No new notifications" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:415 msgid "No of Columns" -msgstr "Kolonların yok" +msgstr "" #. Label of a Int field in DocType 'SMS Log' #: core/doctype/sms_log/sms_log.json msgctxt "SMS Log" msgid "No of Requested SMS" -msgstr "" +msgstr "İstenen SMS Sayısı" #. Label of a Int field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "No of Rows (Max 500)" -msgstr "Satır Sayısı (Maks 500)" +msgstr "" #. Label of a Int field in DocType 'SMS Log' #: core/doctype/sms_log/sms_log.json msgctxt "SMS Log" msgid "No of Sent SMS" -msgstr "" +msgstr "Gönderilen SMS sayısı" -#: __init__.py:1027 client.py:109 client.py:151 +#: __init__.py:1121 client.py:109 client.py:151 msgid "No permission for {0}" -msgstr "No izni {0}" +msgstr "" #: public/js/frappe/form/form.js:1115 msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" -msgstr "Izniniz yok '{0}' {1}" +msgstr "" -#: model/db_query.py:943 +#: model/db_query.py:924 msgid "No permission to read {0}" -msgstr "Hiçbir izni okumak için {0}" +msgstr "" -#: share.py:224 +#: share.py:220 msgid "No permission to {0} {1} {2}" -msgstr "Izniniz yok {0} {1} {2}" +msgstr "" #: core/doctype/user_permission/user_permission_list.js:175 msgid "No records deleted" -msgstr "Silinen kayıt yok" +msgstr "" -#: contacts/report/addresses_and_contacts/addresses_and_contacts.py:121 +#: contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 msgid "No records present in {0}" -msgstr "{0} içinde hiç kayıt yok" +msgstr "" -#: public/js/frappe/data_import/data_exporter.js:221 +#: public/js/frappe/list/list_sidebar_stat.html:3 +msgid "No records tagged." +msgstr "" + +#: public/js/frappe/data_import/data_exporter.js:224 msgid "No records will be exported" -msgstr "Hiçbir kayıt dışa aktarılmayacak" +msgstr "" -#: www/printview.py:426 +#: www/printview.py:442 msgid "No template found at path: {0}" -msgstr "Yolda bulunamadı şablon: {0}" +msgstr "" + +#: public/js/frappe/form/controls/multiselect_list.js:246 +msgid "No values to show" +msgstr "" #: website/web_template/discussions/discussions.html:2 msgid "No {0}" msgstr "" -#: public/js/frappe/list/list_view.js:466 +#: public/js/frappe/list/list_view_select.js:157 +msgid "No {0} Found" +msgstr "" + +#: public/js/frappe/web_form/web_form_list.js:233 +msgid "No {0} found" +msgstr "" + +#: public/js/frappe/list/list_view.js:467 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" #: public/js/frappe/views/inbox/inbox_view.js:171 msgid "No {0} mail" -msgstr "Hiç {0} posta yok" +msgstr "" -#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:251 +#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:252 +msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -20272,19 +21173,19 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Non Negative" -msgstr "Negatif olmayan" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Non Negative" -msgstr "Negatif olmayan" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Non Negative" -msgstr "Negatif olmayan" +msgstr "" #. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup #. Settings' @@ -20295,7 +21196,7 @@ msgstr "Yok" #: public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" -msgstr "Hiçbiri: İş Akışı sonu" +msgstr "" #. Label of a Int field in DocType 'Recorder Query' #: core/doctype/recorder_query/recorder_query.json @@ -20309,25 +21210,30 @@ msgctxt "Recorder Query" msgid "Normalized Query" msgstr "" -#: core/doctype/user/user.py:972 utils/oauth.py:272 +#: core/doctype/user/user.py:1012 templates/includes/login/login.js:258 +#: utils/oauth.py:265 msgid "Not Allowed" -msgstr "İzin Değil" +msgstr "İzin verilmedi" + +#: templates/includes/login/login.js:260 +msgid "Not Allowed: Disabled User" +msgstr "" #: public/js/frappe/ui/filters/filter.js:36 msgid "Not Ancestors Of" -msgstr "Ataları değil" +msgstr "" #: public/js/frappe/ui/filters/filter.js:34 msgid "Not Descendants Of" -msgstr "Torunları değil" +msgstr "" #: public/js/frappe/ui/filters/filter.js:17 msgid "Not Equals" -msgstr "Eşit değil" +msgstr "" -#: app.py:363 www/404.html:3 +#: app.py:362 www/404.html:3 msgid "Not Found" -msgstr "Bulunamadı" +msgstr "" #. Label of a Int field in DocType 'Help Article' #: website/doctype/help_article/help_article.json @@ -20337,15 +21243,15 @@ msgstr "" #: public/js/frappe/ui/filters/filter.js:21 msgid "Not In" -msgstr "İçinde geçen değil" +msgstr "" #: public/js/frappe/ui/filters/filter.js:19 msgid "Not Like" -msgstr "Benzer değil" +msgstr "" #: public/js/frappe/form/linked_with.js:45 msgid "Not Linked to any record" -msgstr "Herhangi bir rekorla bağlantılı değil" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json @@ -20353,15 +21259,15 @@ msgctxt "DocField" msgid "Not Nullable" msgstr "" -#: __init__.py:921 app.py:354 desk/calendar.py:26 geo/utils.py:97 +#: __init__.py:1017 app.py:353 desk/calendar.py:26 geo/utils.py:97 #: public/js/frappe/web_form/webform_script.js:15 -#: website/doctype/web_form/web_form.py:603 -#: website/page_renderers/not_permitted_page.py:20 www/login.py:177 +#: website/doctype/web_form/web_form.py:602 +#: website/page_renderers/not_permitted_page.py:20 www/login.py:178 #: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37 msgid "Not Permitted" -msgstr "İzin verilmedi" +msgstr "İzin yok" -#: desk/query_report.py:513 +#: desk/query_report.py:506 msgid "Not Permitted to read {0}" msgstr "" @@ -20369,7 +21275,7 @@ msgstr "" #: website/doctype/web_form/web_form_list.js:7 #: website/doctype/web_page/web_page_list.js:7 msgid "Not Published" -msgstr "Yayınlandı değil" +msgstr "" #: public/js/frappe/form/toolbar.js:260 public/js/frappe/form/toolbar.js:740 #: public/js/frappe/model/indicator.js:28 @@ -20378,104 +21284,108 @@ msgstr "Yayınlandı değil" #: public/js/print_format_builder/print_format_builder.bundle.js:39 #: website/doctype/web_form/templates/web_form.html:75 msgid "Not Saved" -msgstr "Kaydedilmedi" +msgstr "" #: core/doctype/error_log/error_log_list.js:7 msgid "Not Seen" -msgstr "Görmedim" +msgstr "" #: email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" -msgstr "Gönderilmedi" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Not Sent" -msgstr "Gönderilmedi" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: email/doctype/email_queue_recipient/email_queue_recipient.json msgctxt "Email Queue Recipient" msgid "Not Sent" -msgstr "Gönderilmedi" +msgstr "" #: public/js/frappe/list/list_sidebar_group_by.js:219 msgid "Not Set" -msgstr "Ayarlanmadı" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:563 +#: public/js/frappe/ui/filters/filter.js:564 msgctxt "Field value is not set" msgid "Not Set" -msgstr "Ayarlanmadı" +msgstr "" #: utils/csvutils.py:77 msgid "Not a valid Comma Separated Value (CSV File)" -msgstr "Geçerli bir Virgülle Ayrılmış Değer (CSV Dosyası)" +msgstr "" -#: core/doctype/user/user.py:197 +#: core/doctype/user/user.py:234 msgid "Not a valid User Image." -msgstr "Geçerli bir Kullanıcı Resmi değil." +msgstr "" -#: model/workflow.py:118 +#: model/workflow.py:114 msgid "Not a valid Workflow Action" -msgstr "Geçerli bir İş Akışı Eylemi değil" +msgstr "" + +#: templates/includes/login/login.js:256 +msgid "Not a valid user" +msgstr "" #: workflow/doctype/workflow/workflow_list.js:7 msgid "Not active" -msgstr "Aktif Değil" +msgstr "Aktif değil" -#: permissions.py:367 +#: permissions.py:364 msgid "Not allowed for {0}: {1}" -msgstr "{0} için izin verilmiyor: {1}" +msgstr "" -#: email/doctype/notification/notification.py:388 +#: email/doctype/notification/notification.py:391 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" -msgstr "{0} belgesinin eklenmesine izin verilmiyor, lütfen Yazdırma Ayarlarında {0} İçin Yazdırmaya İzin Ver'i etkinleştirin" +msgstr "" -#: core/doctype/doctype/doctype.py:338 +#: core/doctype/doctype/doctype.py:334 msgid "Not allowed to create custom Virtual DocType." msgstr "" -#: www/printview.py:141 +#: www/printview.py:140 msgid "Not allowed to print cancelled documents" -msgstr "İptal edilmiş dokümanlar yazdırılamaz" +msgstr "" -#: www/printview.py:138 +#: www/printview.py:137 msgid "Not allowed to print draft documents" -msgstr "Taslak dokümanları yazdırma yetkiniz yok" +msgstr "" -#: permissions.py:213 +#: permissions.py:211 msgid "Not allowed via controller permission check" msgstr "" #: public/js/frappe/request.js:145 website/js/website.js:94 msgid "Not found" -msgstr "Bulunamadı" +msgstr "" -#: core/doctype/page/page.py:62 +#: core/doctype/page/page.py:63 msgid "Not in Developer Mode" -msgstr "Değil Geliştirici Modu" +msgstr "" -#: core/doctype/doctype/doctype.py:332 +#: core/doctype/doctype/doctype.py:329 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." -msgstr "Değil Geliştirici Modu! Site_config.json Set veya 'Özel' DOCTYPE yapmak." +msgstr "" #: api/v1.py:88 api/v1.py:93 -#: core/doctype/system_settings/system_settings.py:199 handler.py:109 +#: core/doctype/system_settings/system_settings.py:209 handler.py:109 #: public/js/frappe/request.js:157 public/js/frappe/request.js:167 #: public/js/frappe/request.js:172 #: public/js/frappe/views/kanban/kanban_board.bundle.js:68 -#: website/doctype/web_form/web_form.py:616 website/js/website.js:97 +#: website/doctype/web_form/web_form.py:615 website/js/website.js:97 msgid "Not permitted" msgstr "İzin verilmedi" -#: public/js/frappe/list/list_view.js:45 +#: public/js/frappe/list/list_view.js:46 msgid "Not permitted to view {0}" -msgstr "{0} görüntülenmesine izin verilmiyor" +msgstr "" #. Name of a DocType -#: automation/doctype/auto_repeat/auto_repeat.py:395 +#: automation/doctype/auto_repeat/auto_repeat.py:396 #: desk/doctype/note/note.json msgid "Note" msgstr "Not" @@ -20489,31 +21399,31 @@ msgstr "Not" #. Name of a DocType #: desk/doctype/note_seen_by/note_seen_by.json msgid "Note Seen By" -msgstr "By Görülme Not" +msgstr "" #: www/confirm_workflow_action.html:8 msgid "Note:" -msgstr "Not:" +msgstr "" #. Description of the 'Send Email for Successful Backup' (Check) field in #. DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json msgctxt "Dropbox Settings" msgid "Note: By default emails for failed backups are sent." -msgstr "Not: Varsayılan olarak, başarısız yedeklemeler için e-postalar gönderilir." +msgstr "" #. Description of the 'Send Email for Successful backup' (Check) field in #. DocType 'Google Drive' #: integrations/doctype/google_drive/google_drive.json msgctxt "Google Drive" msgid "Note: By default emails for failed backups are sent." -msgstr "Not: Varsayılan olarak, başarısız yedeklemeler için e-postalar gönderilir." +msgstr "" -#: public/js/frappe/utils/utils.js:775 +#: public/js/frappe/utils/utils.js:776 msgid "Note: Changing the Page Name will break previous URL to this page." -msgstr "Not: Sayfa Adını değiştirmek önceki URL'yi bu sayfaya ayıracaktır." +msgstr "" -#: core/doctype/user/user.js:25 +#: core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." msgstr "" @@ -20522,14 +21432,18 @@ msgstr "" #: website/doctype/website_slideshow/website_slideshow.json msgctxt "Website Slideshow" msgid "Note: For best results, images must be of the same size and width must be greater than height." -msgstr "Not: En iyi sonucu elde etmek için görüntüler aynı boyutta olmalı ve genişlik yükseklikten büyük olmalıdır." +msgstr "" #. Description of the 'Allow only one session per user' (Check) field in #. DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Note: Multiple sessions will be allowed in case of mobile device" -msgstr "Not: Birden fazla seans mobil cihazın durumunda izin verilecek" +msgstr "" + +#: core/doctype/user/user.js:371 +msgid "Note: This will be shared with user." +msgstr "" #: website/web_form/request_to_delete_data/request_to_delete_data.js:8 msgid "Note: Your request for account deletion will be fulfilled within {0} hours." @@ -20537,153 +21451,164 @@ msgstr "" #: core/doctype/data_export/exporter.py:183 msgid "Notes:" -msgstr "Notlar:" +msgstr "" #: public/js/frappe/form/undo_manager.js:43 msgid "Nothing left to redo" -msgstr "" +msgstr "Yeniden yapılacak hiçbir şey kalmadı" #: public/js/frappe/form/undo_manager.js:33 msgid "Nothing left to undo" msgstr "" -#: public/js/frappe/list/base_list.js:359 templates/includes/list/list.html:7 +#: public/js/frappe/list/base_list.js:362 +#: public/js/frappe/views/reports/query_report.js:104 +#: templates/includes/list/list.html:7 #: website/doctype/blog_post/templates/blog_post_list.html:41 +#: website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" -msgstr "Gösterilecek bir şey yok" +msgstr "" #: core/doctype/user_permission/user_permission_list.js:129 msgid "Nothing to update" -msgstr "Güncellenecek bir şey yok" +msgstr "" #. Name of a DocType #: core/doctype/communication/mixins.py:142 #: email/doctype/notification/notification.json msgid "Notification" -msgstr "Bildirim" +msgstr "" #. Label of a Section Break field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Notification" -msgstr "Bildirim" +msgstr "" #. Option for the 'Communication Type' (Select) field in DocType #. 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Notification" -msgstr "Bildirim" +msgstr "" #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Notification" -msgstr "Bildirim" +msgstr "" #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Notification" -msgstr "Bildirim" +msgstr "" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "Notification" msgid "Notification" -msgstr "Bildirim" +msgstr "" #. Label of a Section Break field in DocType 'S3 Backup Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgctxt "S3 Backup Settings" msgid "Notification" -msgstr "Bildirim" +msgstr "" #. Name of a DocType #: desk/doctype/notification_log/notification_log.json msgid "Notification Log" -msgstr "Bildirim Günlüğü" +msgstr "" #. Name of a DocType #: email/doctype/notification_recipient/notification_recipient.json msgid "Notification Recipient" -msgstr "Bildirim Alıcısı" +msgstr "" #. Name of a DocType #: desk/doctype/notification_settings/notification_settings.json #: public/js/frappe/ui/notifications/notifications.js:36 msgid "Notification Settings" -msgstr "Bildirim Ayarları" +msgstr "" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "Notification Settings" msgid "Notification Settings" -msgstr "Bildirim Ayarları" +msgstr "" #. Name of a DocType #: desk/doctype/notification_subscribed_document/notification_subscribed_document.json msgid "Notification Subscribed Document" -msgstr "Bildirim Abone Belgesi" +msgstr "" + +#: public/js/frappe/form/templates/timeline_message_box.html:7 +msgid "Notification sent to" +msgstr "" #: public/js/frappe/ui/notifications/notifications.js:49 #: public/js/frappe/ui/notifications/notifications.js:180 msgid "Notifications" -msgstr "Bildirimler" +msgstr "" #. Label of a Check field in DocType 'Role' #: core/doctype/role/role.json msgctxt "Role" msgid "Notifications" -msgstr "Bildirimler" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:292 +msgid "Notifications Disabled" +msgstr "" #. Description of the 'Default Outgoing' (Check) field in DocType 'Email #. Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Notifications and bulk mails will be sent from this outgoing server." -msgstr "Bildirimler ve toplu postalar bu giden sunucudan gönderilir." +msgstr "" #. Label of a Check field in DocType 'Note' #: desk/doctype/note/note.json msgctxt "Note" msgid "Notify Users On Every Login" -msgstr "Kullanıcıları Her Girişte Bildir" +msgstr "" #. Label of a Check field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Notify by Email" -msgstr "E-postayla Bildir" +msgstr "" #. Label of a Check field in DocType 'DocShare' #: core/doctype/docshare/docshare.json msgctxt "DocShare" msgid "Notify by email" -msgstr "E-postayla bildir" +msgstr "" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Notify if unreplied" -msgstr "Okunmayan eğer bildir" +msgstr "" #. Label of a Int field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Notify if unreplied for (in mins)" -msgstr "(Dakika olarak) için okunmayan eğer bildir" +msgstr "" #. Label of a Check field in DocType 'Note' #: desk/doctype/note/note.json msgctxt "Note" msgid "Notify users with a popup when they log in" -msgstr "oturum açtıklarında bir pop-up ile kullanıcılara bildir" +msgstr "" #: public/js/frappe/form/controls/datetime.js:25 #: public/js/frappe/form/controls/time.js:37 msgid "Now" -msgstr "Şimdi" +msgstr "" #. Label of a Data field in DocType 'Contact Phone' #: contacts/doctype/contact_phone/contact_phone.json @@ -20693,14 +21618,14 @@ msgstr "Numara" #. Name of a DocType #: desk/doctype/number_card/number_card.json -#: public/js/frappe/widgets/widget_dialog.js:591 +#: public/js/frappe/widgets/widget_dialog.js:630 msgid "Number Card" -msgstr "Numara Kartı" +msgstr "" #. Name of a DocType #: desk/doctype/number_card_link/number_card_link.json msgid "Number Card Link" -msgstr "Numara Kartı Bağlantısı" +msgstr "" #. Label of a Link field in DocType 'Workspace Number Card' #: desk/doctype/workspace_number_card/workspace_number_card.json @@ -20708,50 +21633,50 @@ msgctxt "Workspace Number Card" msgid "Number Card Name" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:621 +#: public/js/frappe/widgets/widget_dialog.js:660 msgid "Number Cards" -msgstr "Sayı Kartları" +msgstr "" #. Label of a Tab Break field in DocType 'Workspace' #. Label of a Table field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Number Cards" -msgstr "Sayı Kartları" +msgstr "" #. Label of a Select field in DocType 'Currency' #: geo/doctype/currency/currency.json msgctxt "Currency" msgid "Number Format" -msgstr "Sayı Biçimi" +msgstr "" #. Label of a Select field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Number Format" -msgstr "Sayı Biçimi" +msgstr "" #. Label of a Int field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Number of Backups" -msgstr "Yedeklemeler sayısı" +msgstr "" #. Label of a Int field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json msgctxt "Dropbox Settings" msgid "Number of DB Backups" -msgstr "DB Yedekleme Sayısı" +msgstr "" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:53 +#: integrations/doctype/dropbox_settings/dropbox_settings.py:54 msgid "Number of DB backups cannot be less than 1" -msgstr "DB yedeklerinin sayısı 1'den az olamaz" +msgstr "" #. Label of a Int field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Number of Groups" -msgstr "Grup Sayısı" +msgstr "" #. Label of a Int field in DocType 'Recorder' #: core/doctype/recorder/recorder.json @@ -20759,11 +21684,11 @@ msgctxt "Recorder" msgid "Number of Queries" msgstr "" -#: core/doctype/doctype/doctype.py:444 public/js/frappe/doctype/index.js:59 +#: core/doctype/doctype/doctype.py:441 public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: core/doctype/system_settings/system_settings.py:152 +#: core/doctype/system_settings/system_settings.py:162 msgid "Number of backups must be greater than zero." msgstr "" @@ -20771,19 +21696,19 @@ msgstr "" #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" -msgstr "bir kılavuz bir alan için sütun sayısı (bir ızgarada Toplam Sütunlar az 11 olmalıdır)" +msgstr "" #. Description of the 'Columns' (Int) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" -msgstr "Bir Liste Görünümü veya bir kılavuz bir alan için sütun sayısı (Toplam Sütunlar az 11 den olmalıdır)" +msgstr "" #. Description of the 'Columns' (Int) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" -msgstr "Bir Liste Görünümü veya bir kılavuz bir alan için sütun sayısı (Toplam Sütunlar az 11 den olmalıdır)" +msgstr "" #. Description of the 'Document Share Key Expiry (in Days)' (Int) field in #. DocType 'System Settings' @@ -20801,44 +21726,44 @@ msgstr "" #. Name of a DocType #: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "OAuth Authorization Code" -msgstr "OAuth Yetki Kodu" +msgstr "" #. Name of a DocType #: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "OAuth Bearer Token" -msgstr "OAuth Taşıyıcı Jetonu" +msgstr "" #. Name of a DocType #: integrations/doctype/oauth_client/oauth_client.json msgid "OAuth Client" -msgstr "OAuth İstemci" +msgstr "" #. Label of a Link in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgctxt "OAuth Client" msgid "OAuth Client" -msgstr "OAuth İstemci" +msgstr "" #. Label of a Section Break field in DocType 'Google Settings' #: integrations/doctype/google_settings/google_settings.json msgctxt "Google Settings" msgid "OAuth Client ID" -msgstr "OAuth Müşteri Kimliği" +msgstr "" -#: email/oauth.py:31 +#: email/oauth.py:30 msgid "OAuth Error" msgstr "" #. Name of a DocType #: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgid "OAuth Provider Settings" -msgstr "OAuth Sağlayıcı Ayarları" +msgstr "" #. Label of a Link in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgctxt "OAuth Provider Settings" msgid "OAuth Provider Settings" -msgstr "OAuth Sağlayıcı Ayarları" +msgstr "" #. Name of a DocType #: integrations/doctype/oauth_scope/oauth_scope.json @@ -20864,40 +21789,48 @@ msgstr "" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "OTP App" -msgstr "OTP Uygulaması" +msgstr "" #. Label of a Data field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "OTP Issuer Name" -msgstr "OTP İhraççı Adı" +msgstr "" -#: twofactor.py:468 +#: twofactor.py:461 msgid "OTP Secret Reset - {0}" msgstr "" -#: twofactor.py:487 +#: twofactor.py:480 msgid "OTP Secret has been reset. Re-registration will be required on next login." -msgstr "OTP Sırrı sıfırlandı. Bir sonraki oturum açışınızda yeniden kayıt gerekecek." +msgstr "" + +#: templates/includes/login/login.js:363 +msgid "OTP setup using OTP App was not completed. Please contact Administrator." +msgstr "" #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "Off" -msgstr "Kapalı" +msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "Office" -msgstr "Ofis" +msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Office 365" -msgstr "Ofis 365" +msgstr "" + +#: core/doctype/server_script/server_script.js:33 +msgid "Official Documentation" +msgstr "" #. Label of a Int field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -20913,7 +21846,7 @@ msgstr "" #: www/update-password.html:15 msgid "Old Password" -msgstr "Eski Şifre" +msgstr "" #: custom/doctype/custom_field/custom_field.py:362 msgid "Old and new fieldnames are same." @@ -20924,14 +21857,14 @@ msgstr "" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Older backups will be automatically deleted" -msgstr "Eski yedekleri otomatik olarak silinecektir" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgctxt "Personal Data Deletion Request" msgid "On Hold" -msgstr "" +msgstr "Beklemede" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json @@ -20939,12 +21872,28 @@ msgctxt "Server Script" msgid "On Payment Authorization" msgstr "" +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "On Payment Failed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: core/doctype/server_script/server_script.json +msgctxt "Server Script" +msgid "On Payment Paid" +msgstr "" + #. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "On checking this option, URL will be treated like a jinja template string" msgstr "" +#: public/js/frappe/views/communication.js:943 +msgid "On {0}, {1} wrote:" +msgstr "" + #. Label of a Check field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" @@ -20954,7 +21903,7 @@ msgstr "" #. Name of a DocType #: desk/doctype/onboarding_permission/onboarding_permission.json msgid "Onboarding Permission" -msgstr "İlk Katılım İzni" +msgstr "" #. Label of a Small Text field in DocType 'User' #: core/doctype/user/user.json @@ -20965,94 +21914,98 @@ msgstr "" #. Name of a DocType #: desk/doctype/onboarding_step/onboarding_step.json msgid "Onboarding Step" -msgstr "İlk Katılım Adımı" +msgstr "" #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Onboarding Step" -msgstr "İlk Katılım Adımı" +msgstr "" #. Name of a DocType #: desk/doctype/onboarding_step_map/onboarding_step_map.json msgid "Onboarding Step Map" -msgstr "İlk Katılım Adım Haritası" +msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:269 msgid "Onboarding complete" msgstr "" -#: core/doctype/doctype/doctype_list.js:28 +#: core/doctype/doctype/doctype_list.js:42 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." -msgstr "Gönderildikten sonra gönderilebilir belgeler değiştirilemez. Sadece İptal Edilebilir ve Değiştirilebilirler." +msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." -msgstr "Gönderildikten sonra gönderilebilir belgeler değiştirilemez. Sadece İptal Edilebilir ve Değiştirilebilirler." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:35 +msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." +msgstr "" #: www/complete_signup.html:7 msgid "One Last Step" -msgstr "Son Bir Adım" +msgstr "" -#: twofactor.py:283 +#: twofactor.py:278 msgid "One Time Password (OTP) Registration Code from {}" -msgstr "Bir Zamanlı Parola (OTP) Kayıt Kodu {}" +msgstr "" #: core/doctype/data_export/exporter.py:331 msgid "One of" -msgstr "Biri" +msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1312 +#: public/js/frappe/views/workspace/workspace.js:1323 msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving" msgstr "" #: client.py:213 msgid "Only 200 inserts allowed in one request" -msgstr "Sadece 200 ekler tek isteği izin" +msgstr "" -#: email/doctype/email_queue/email_queue.py:80 +#: email/doctype/email_queue/email_queue.py:81 msgid "Only Administrator can delete Email Queue" -msgstr "Sadece yönetici E-posta Kuyruğu silebilirsiniz" +msgstr "" -#: core/doctype/page/page.py:66 +#: core/doctype/page/page.py:67 msgid "Only Administrator can edit" -msgstr "Sadece yönetici düzenleyebilirsiniz" +msgstr "" -#: core/doctype/report/report.py:71 +#: core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." -msgstr "Sadece Yönetici standart bir rapor kaydedebilirsiniz. Yeniden adlandırın ve kaydedin." +msgstr "" -#: recorder.py:234 +#: recorder.py:309 msgid "Only Administrator is allowed to use Recorder" -msgstr "Kaydediciyi sadece Yönetici kullanabiliyor" +msgstr "" #. Label of a Link field in DocType 'Workflow Document State' #: workflow/doctype/workflow_document_state/workflow_document_state.json msgctxt "Workflow Document State" msgid "Only Allow Edit For" -msgstr "Only Allow Edit For" +msgstr "" -#: core/doctype/doctype/doctype.py:1561 +#: core/doctype/doctype/doctype.py:1557 msgid "Only Options allowed for Data field are:" -msgstr "Yalnızca Veri alanı için izin verilen Seçenekler şunlardır:" +msgstr "" #. Label of a Int field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Only Send Records Updated in Last X Hours" -msgstr "Yalnızca Son X Saatte Güncellenen Kayıtları Gönder" +msgstr "" #: desk/doctype/workspace/workspace.js:36 msgid "Only Workspace Manager can edit public workspaces" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:536 +#: public/js/frappe/views/workspace/workspace.js:547 msgid "Only Workspace Manager can sort or edit this page" msgstr "" -#: modules/utils.py:66 +#: modules/utils.py:64 msgid "Only allowed to export customizations in developer mode" msgstr "" @@ -21069,44 +22022,48 @@ msgctxt "Workspace Link" msgid "Only for" msgstr "" -#: core/doctype/data_export/exporter.py:194 +#: core/doctype/data_export/exporter.py:192 msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." -msgstr "Sadece zorunlu alanlar yeni kayıtlar için gereklidir. İsterseniz zorunlu olmayan sütunları silebilirsiniz." +msgstr "" -#: contacts/doctype/contact/contact.py:129 -#: contacts/doctype/contact/contact.py:153 +#: contacts/doctype/contact/contact.py:130 +#: contacts/doctype/contact/contact.py:154 msgid "Only one {0} can be set as primary." -msgstr "Yalnızca bir {0} birincil olarak ayarlanabilir." +msgstr "" -#: desk/reportview.py:319 +#: desk/reportview.py:336 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: desk/reportview.py:290 +#: desk/reportview.py:307 msgid "Only reports of type Report Builder can be edited" msgstr "" #: custom/doctype/customize_form/customize_form.py:124 msgid "Only standard DocTypes are allowed to be customized from Customize Form." -msgstr "Özelleştir Formundan yalnızca standart DocTypes özelleştirilebilir." +msgstr "" -#: desk/form/assign_to.py:181 +#: desk/form/assign_to.py:195 msgid "Only the assignee can complete this to-do." msgstr "" #: public/js/frappe/form/sidebar/review.js:54 msgid "Only users involved in the document are listed" -msgstr "Yalnızca belgeye katılan kullanıcılar listelenir" +msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:100 +#: email/doctype/auto_email_report/auto_email_report.py:106 msgid "Only {0} emailed reports are allowed per user." msgstr "" +#: templates/includes/login/login.js:292 +msgid "Oops! Something went wrong." +msgstr "" + #: core/doctype/deleted_document/deleted_document.js:7 msgid "Open" msgstr "Açık" -#: desk/doctype/todo/todo_list.js:20 +#: desk/doctype/todo/todo_list.js:14 msgctxt "Access" msgid "Open" msgstr "Açık" @@ -21142,70 +22099,79 @@ msgctxt "Workflow Action" msgid "Open" msgstr "Açık" -#: public/js/frappe/ui/keyboard.js:202 +#: public/js/frappe/ui/keyboard.js:205 msgid "Open Awesomebar" -msgstr "Awesomebar'ı açın" +msgstr "" + +#: public/js/frappe/form/templates/timeline_message_box.html:67 +msgid "Open Communication" +msgstr "" #: templates/emails/new_notification.html:10 msgid "Open Document" -msgstr "Belgeyi Aç" +msgstr "" #. Label of a Table MultiSelect field in DocType 'Notification Settings' #: desk/doctype/notification_settings/notification_settings.json msgctxt "Notification Settings" msgid "Open Documents" -msgstr "Açık Belgeler" +msgstr "" -#: public/js/frappe/ui/keyboard.js:237 +#: public/js/frappe/ui/keyboard.js:240 msgid "Open Help" -msgstr "Yardım'ı aç" +msgstr "" #. Label of a Button field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Open Reference Document" -msgstr "Referans Belgesini Aç" +msgstr "" -#: public/js/frappe/ui/keyboard.js:220 +#: public/js/frappe/ui/keyboard.js:223 msgid "Open Settings" -msgstr "Ayarları aç" +msgstr "" + +#: public/js/frappe/ui/toolbar/about.js:8 +msgid "Open Source Applications for the Web" +msgstr "" #. Label of a Check field in DocType 'Top Bar Item' #: website/doctype/top_bar_item/top_bar_item.json msgctxt "Top Bar Item" msgid "Open URL in a New Tab" -msgstr "URL'yi Yeni Bir Sekmede Aç" +msgstr "" #. Description of the 'Quick Entry' (Check) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Open a dialog with mandatory fields to create a new record quickly" -msgstr "Hızlı bir şekilde yeni bir kayıt oluşturmak için zorunlu alanlarla bir iletişim kutusu açın" +msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:176 msgid "Open a module or tool" -msgstr "Bir modül veya aracı aç" +msgstr "" -#: public/js/frappe/list/list_view.js:1187 +#: public/js/frappe/list/list_view.js:1215 msgctxt "Description of a list view shortcut" msgid "Open list item" -msgstr "Liste öğesini aç" +msgstr "" #: www/qrcode.html:13 msgid "Open your authentication app on your mobile phone." -msgstr "Kimlik doğrulama uygulamanızı cep telefonunuzdan açın." +msgstr "" -#: desk/doctype/todo/todo_list.js:23 -#: public/js/frappe/ui/toolbar/search_utils.js:261 -#: public/js/frappe/ui/toolbar/search_utils.js:262 -#: public/js/frappe/ui/toolbar/search_utils.js:273 -#: public/js/frappe/ui/toolbar/search_utils.js:283 -#: public/js/frappe/ui/toolbar/search_utils.js:292 -#: public/js/frappe/ui/toolbar/search_utils.js:310 -#: public/js/frappe/ui/toolbar/search_utils.js:311 +#: desk/doctype/todo/todo_list.js:17 +#: public/js/frappe/form/templates/form_links.html:18 +#: public/js/frappe/ui/toolbar/search_utils.js:277 +#: public/js/frappe/ui/toolbar/search_utils.js:278 +#: public/js/frappe/ui/toolbar/search_utils.js:289 +#: public/js/frappe/ui/toolbar/search_utils.js:299 +#: public/js/frappe/ui/toolbar/search_utils.js:308 +#: public/js/frappe/ui/toolbar/search_utils.js:326 +#: public/js/frappe/ui/toolbar/search_utils.js:327 #: social/doctype/energy_point_log/energy_point_log_list.js:23 msgid "Open {0}" -msgstr "{0} Aç" +msgstr "" #. Label of a Data field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json @@ -21223,7 +22189,7 @@ msgstr "" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Opened" -msgstr "Açılmış" +msgstr "" #. Label of a Select field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json @@ -21231,9 +22197,9 @@ msgctxt "Activity Log" msgid "Operation" msgstr "Operasyon" -#: utils/data.py:2063 +#: utils/data.py:2062 msgid "Operator must be one of {0}" -msgstr "Operatör {0} 'dan biri olmalı" +msgstr "" #: core/doctype/file/file.js:24 msgid "Optimize" @@ -21245,139 +22211,148 @@ msgstr "" #: custom/doctype/custom_field/custom_field.js:100 msgid "Option 1" -msgstr "Seçenek 1" +msgstr "" #: custom/doctype/custom_field/custom_field.js:102 msgid "Option 2" -msgstr "Seçenek 2" +msgstr "" #: custom/doctype/custom_field/custom_field.js:104 msgid "Option 3" -msgstr "Seçenek 3" +msgstr "" -#: core/doctype/doctype/doctype.py:1579 +#: core/doctype/doctype/doctype.py:1575 msgid "Option {0} for field {1} is not a child table" -msgstr "{1} alanı için {0} seçeneği bir alt tablo değil" +msgstr "" #. Description of the 'CC' (Code) field in DocType 'Notification Recipient' #: email/doctype/notification_recipient/notification_recipient.json msgctxt "Notification Recipient" msgid "Optional: Always send to these ids. Each Email Address on a new row" -msgstr "Opsiyonel: Her zaman bu kimlikleri gönderin. Yeni bir satırda Her E-posta Adresi" +msgstr "" #. Description of the 'Condition' (Code) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Optional: The alert will be sent if this expression is true" -msgstr "İsteğe bağlı: Bu ifade doğru ise uyarı gönderilir" +msgstr "" + +#: templates/form_grid/fields.html:43 +msgid "Options" +msgstr "Sepetler" #. Label of a Small Text field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Options" -msgstr "Seçenekler" +msgstr "Sepetler" #. Label of a Small Text field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Options" -msgstr "Seçenekler" +msgstr "Sepetler" #. Label of a Small Text field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Options" -msgstr "Seçenekler" +msgstr "Sepetler" #. Label of a Data field in DocType 'Report Column' #: core/doctype/report_column/report_column.json msgctxt "Report Column" msgid "Options" -msgstr "Seçenekler" +msgstr "Sepetler" #. Label of a Small Text field in DocType 'Report Filter' #: core/doctype/report_filter/report_filter.json msgctxt "Report Filter" msgid "Options" -msgstr "Seçenekler" +msgstr "Sepetler" #. Label of a Text field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Options" -msgstr "Seçenekler" +msgstr "Sepetler" #. Label of a Small Text field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Options" -msgstr "Seçenekler" +msgstr "Sepetler" -#: core/doctype/doctype/doctype.py:1317 +#: core/doctype/doctype/doctype.py:1315 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" -msgstr "Alan Seçenekler 'Dynamic Link' type 'DocType' gibi seçenekler ile başka Bağlantı alanı işaret etmelidir" +msgstr "" #. Label of a HTML field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Options Help" -msgstr "Yardım Seçenekleri" +msgstr "" -#: core/doctype/doctype/doctype.py:1601 +#: core/doctype/doctype/doctype.py:1597 msgid "Options for Rating field can range from 3 to 10" msgstr "" #: custom/doctype/custom_field/custom_field.js:96 msgid "Options for select. Each option on a new line." -msgstr "Select için seçenekler. Yeni bir satırda her seçenek." +msgstr "" -#: core/doctype/doctype/doctype.py:1334 +#: core/doctype/doctype/doctype.py:1332 msgid "Options for {0} must be set before setting the default value." -msgstr "Varsayılan değer ayarlanmadan önce {0} için seçenekler ayarlanmalıdır." +msgstr "" -#: public/js/form_builder/store.js:177 +#: public/js/form_builder/store.js:182 msgid "Options is required for field {0} of type {1}" msgstr "" -#: model/base_document.py:767 +#: model/base_document.py:786 msgid "Options not set for link field {0}" -msgstr "Seçenekleri link alanına ayarlı değil {0}" +msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' #: core/doctype/doctype_state/doctype_state.json msgctxt "DocType State" msgid "Orange" -msgstr "" +msgstr "Portakal" #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Orange" -msgstr "" +msgstr "Portakal" #. Label of a Code field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Order" -msgstr "Sipariş" +msgstr "" #. Label of a Section Break field in DocType 'About Us Settings' #. Label of a Table field in DocType 'About Us Settings' #: website/doctype/about_us_settings/about_us_settings.json msgctxt "About Us Settings" msgid "Org History" -msgstr "Org Tarihçe" +msgstr "" #. Label of a Data field in DocType 'About Us Settings' #: website/doctype/about_us_settings/about_us_settings.json msgctxt "About Us Settings" msgid "Org History Heading" -msgstr "Org Tarih Başlık" +msgstr "" #: public/js/frappe/form/print_utils.js:26 msgid "Orientation" msgstr "Oryantasyon" +#: core/doctype/version/version_view.html:13 +#: core/doctype/version/version_view.html:75 +msgid "Original Value" +msgstr "" + #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" @@ -21406,7 +22381,7 @@ msgstr "Diğer" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Outgoing (SMTP) Settings" -msgstr "Giden (SMTP) Ayarları" +msgstr "" #. Label of a Data field in DocType 'Email Account' #: email/doctype/email_account/email_account.json @@ -21428,32 +22403,36 @@ msgstr "" #: email/doctype/email_domain/email_domain.py:33 msgid "Outgoing email account not correct" -msgstr "Giden e-posta hesabı doğru değil" +msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Outlook.com" -msgstr "Outlook.com" +msgstr "" #. Label of a Code field in DocType 'Integration Request' #: integrations/doctype/integration_request/integration_request.json msgctxt "Integration Request" msgid "Output" -msgstr "Çıktı" +msgstr "" #. Label of a Code field in DocType 'Permission Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "Output" -msgstr "Çıktı" +msgstr "" #. Label of a Code field in DocType 'System Console' #: desk/doctype/system_console/system_console.json msgctxt "System Console" msgid "Output" -msgstr "Çıktı" +msgstr "" + +#: desk/page/user_profile/user_profile.html:6 +#: public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "Genel Bakış" #: core/report/transaction_log_report/transaction_log_report.py:100 #: social/doctype/energy_point_rule/energy_point_rule.js:42 @@ -21467,9 +22446,14 @@ msgid "PATCH" msgstr "" #: printing/page/print/print.js:71 -#: public/js/frappe/views/reports/query_report.js:1637 +#: public/js/frappe/form/templates/print_layout.html:44 +#: public/js/frappe/views/reports/query_report.js:1654 msgid "PDF" -msgstr "PDF" +msgstr "" + +#: utils/print_format.py:146 utils/print_format.py:190 +msgid "PDF Generation in Progress" +msgstr "" #. Label of a Float field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -21481,7 +22465,7 @@ msgstr "" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "PDF Page Size" -msgstr "PDF Sayfa Boyutu" +msgstr "" #. Label of a Float field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -21493,17 +22477,17 @@ msgstr "" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "PDF Settings" -msgstr "PDF Ayarları" +msgstr "" -#: utils/print_format.py:177 +#: utils/print_format.py:276 msgid "PDF generation failed" -msgstr "PDF oluşturma başarısız oldu" +msgstr "" -#: utils/pdf.py:95 +#: utils/pdf.py:97 msgid "PDF generation failed because of broken image links" -msgstr "PDF oluşturma nedeniyle kırık görüntü bağlantıları başarısız" +msgstr "" -#: printing/page/print/print.js:524 +#: printing/page/print/print.js:531 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -21596,19 +22580,19 @@ msgstr "" #. Name of a DocType #: core/doctype/page/page.json msgid "Page" -msgstr "Sayfa" +msgstr "" #. Label of a Link field in DocType 'Custom Role' #: core/doctype/custom_role/custom_role.json msgctxt "Custom Role" msgid "Page" -msgstr "Sayfa" +msgstr "" #. Option for the 'View' (Select) field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Page" -msgstr "Sayfa" +msgstr "" #. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for #. Page and Report' @@ -21616,45 +22600,49 @@ msgstr "Sayfa" #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgctxt "Role Permission for Page and Report" msgid "Page" -msgstr "Sayfa" +msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Page" -msgstr "Sayfa" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Page" -msgstr "Sayfa" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Page Break" +msgstr "Sayfa Sonu" + +#: website/doctype/web_page/web_page.js:92 +msgid "Page Builder" msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Page Builder" -msgstr "Sayfa Oluşturucu" +msgstr "" #. Label of a Table field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Page Building Blocks" -msgstr "Sayfa Yapı Taşları" +msgstr "" #. Label of a Section Break field in DocType 'Page' #: core/doctype/page/page.json msgctxt "Page" msgid "Page HTML" -msgstr "Sayfa HTML" +msgstr "" -#: public/js/frappe/list/bulk_operations.js:64 +#: public/js/frappe/list/bulk_operations.js:72 msgid "Page Height (in mm)" msgstr "" @@ -21662,7 +22650,7 @@ msgstr "" #: core/doctype/page/page.json msgctxt "Page" msgid "Page Name" -msgstr "Sayfa Adı" +msgstr "" #. Label of a Select field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json @@ -21676,7 +22664,7 @@ msgctxt "Form Tour" msgid "Page Route" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1499 +#: public/js/frappe/views/workspace/workspace.js:1510 msgid "Page Saved Successfully" msgstr "" @@ -21684,13 +22672,13 @@ msgstr "" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Page Settings" -msgstr "Sayfa Ayarları" +msgstr "" -#: public/js/frappe/ui/keyboard.js:121 +#: public/js/frappe/ui/keyboard.js:124 msgid "Page Shortcuts" -msgstr "Sayfa Kısayolları" +msgstr "" -#: public/js/frappe/list/bulk_operations.js:57 +#: public/js/frappe/list/bulk_operations.js:65 msgid "Page Size" msgstr "" @@ -21700,31 +22688,38 @@ msgctxt "About Us Settings" msgid "Page Title" msgstr "" -#: public/js/frappe/list/bulk_operations.js:71 +#: public/js/frappe/list/bulk_operations.js:79 msgid "Page Width (in mm)" msgstr "" #: www/qrcode.py:35 msgid "Page has expired!" -msgstr "Sayfa süresi doldu!" +msgstr "" -#: printing/doctype/print_settings/print_settings.py:71 -#: public/js/frappe/list/bulk_operations.js:90 +#: printing/doctype/print_settings/print_settings.py:70 +#: public/js/frappe/list/bulk_operations.js:98 msgid "Page height and width cannot be zero" msgstr "" #: public/js/frappe/views/container.js:52 msgid "Page not found" -msgstr "Sayfa bulunamadı" +msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1299 +#. Description of a DocType +#: website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1310 msgid "Page with title {0} already exist." msgstr "" +#: public/html/print_template.html:25 +#: public/js/frappe/views/reports/print_tree.html:89 #: public/js/frappe/web_form/web_form.js:264 #: templates/print_formats/standard.html:34 msgid "Page {0} of {1}" -msgstr "{1} Sayfadan {0}." +msgstr "{1} {0} Sayfası" #. Label of a Data field in DocType 'SMS Parameter' #: core/doctype/sms_parameter/sms_parameter.json @@ -21733,9 +22728,9 @@ msgid "Parameter" msgstr "Parametre" #: public/js/frappe/model/model.js:132 -#: public/js/frappe/views/workspace/workspace.js:606 -#: public/js/frappe/views/workspace/workspace.js:934 -#: public/js/frappe/views/workspace/workspace.js:1181 +#: public/js/frappe/views/workspace/workspace.js:617 +#: public/js/frappe/views/workspace/workspace.js:945 +#: public/js/frappe/views/workspace/workspace.js:1192 msgid "Parent" msgstr "Ana Kalem" @@ -21749,15 +22744,15 @@ msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Parent Document Type" -msgstr "" +msgstr "Ana Belge Türü" #. Label of a Link field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Parent Document Type" -msgstr "" +msgstr "Ana Belge Türü" -#: desk/doctype/number_card/number_card.py:61 +#: desk/doctype/number_card/number_card.py:62 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -21773,27 +22768,27 @@ msgctxt "Form Tour Step" msgid "Parent Field" msgstr "" -#: core/doctype/doctype/doctype.py:915 +#: core/doctype/doctype/doctype.py:914 msgid "Parent Field (Tree)" -msgstr "Ana Alan (Ağaç)" +msgstr "" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Parent Field (Tree)" -msgstr "Ana Alan (Ağaç)" +msgstr "" -#: core/doctype/doctype/doctype.py:921 +#: core/doctype/doctype/doctype.py:920 msgid "Parent Field must be a valid fieldname" -msgstr "Üst Alan geçerli bir alan adı olmalı" +msgstr "" #. Label of a Select field in DocType 'Top Bar Item' #: website/doctype/top_bar_item/top_bar_item.json msgctxt "Top Bar Item" msgid "Parent Label" -msgstr "Ana Etiket" +msgstr "" -#: core/doctype/doctype/doctype.py:1148 +#: core/doctype/doctype/doctype.py:1146 msgid "Parent Missing" msgstr "" @@ -21805,17 +22800,17 @@ msgstr "" #: core/doctype/data_export/exporter.py:24 msgid "Parent Table" -msgstr "Ana Tablo" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:404 +#: desk/doctype/dashboard_chart/dashboard_chart.py:394 msgid "Parent document type is required to create a dashboard chart" msgstr "" -#: core/doctype/data_export/exporter.py:255 +#: core/doctype/data_export/exporter.py:253 msgid "Parent is the name of the document to which the data will get added to." -msgstr "Ebeveyn, verinin ekleneceği belgenin adıdır." +msgstr "" -#: permissions.py:806 +#: permissions.py:802 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -21833,7 +22828,7 @@ msgstr "" #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Partial Success" -msgstr "Kısmi Başarı" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json @@ -21843,116 +22838,116 @@ msgstr "" #: desk/doctype/event/event.js:30 msgid "Participants" -msgstr "Katılımcılar" +msgstr "" #. Label of a Section Break field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Participants" -msgstr "Katılımcılar" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Passive" -msgstr "Pasif" +msgstr "" -#: core/doctype/user/user.js:154 core/doctype/user/user.js:201 -#: core/doctype/user/user.js:221 desk/page/setup_wizard/setup_wizard.js:474 +#: core/doctype/user/user.js:158 core/doctype/user/user.js:205 +#: core/doctype/user/user.js:225 desk/page/setup_wizard/setup_wizard.js:474 #: www/login.html:21 msgid "Password" -msgstr "Parola" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Password" -msgstr "Parola" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Password" -msgstr "Parola" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Password" -msgstr "Parola" +msgstr "" #. Label of a Password field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Password" -msgstr "Parola" +msgstr "" #. Label of a Section Break field in DocType 'System Settings' #. Label of a Tab Break field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Password" -msgstr "Parola" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Password" -msgstr "Parola" +msgstr "" -#: core/doctype/user/user.py:1036 +#: core/doctype/user/user.py:1075 msgid "Password Email Sent" msgstr "" -#: core/doctype/user/user.py:418 +#: core/doctype/user/user.py:454 msgid "Password Reset" -msgstr "Şifreyi Sıfırla" +msgstr "" #. Label of a Int field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Password Reset Link Generation Limit" -msgstr "Parola Sıfırlama Bağlantısı Oluşturma Sınırı" +msgstr "" -#: public/js/frappe/form/grid_row.js:790 +#: public/js/frappe/form/grid_row.js:811 msgid "Password cannot be filtered" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:358 +#: integrations/doctype/ldap_settings/ldap_settings.py:356 msgid "Password changed successfully." -msgstr "Parola başarıyla değiştirildi." +msgstr "" #. Label of a Password field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "Password for Base DN" -msgstr "Baz DN için şifre" +msgstr "" -#: email/doctype/email_account/email_account.py:165 +#: email/doctype/email_account/email_account.py:172 msgid "Password is required or select Awaiting Password" -msgstr "Şifre gerekli veya Bekleniyor Parola seçmektir" +msgstr "" #: public/js/frappe/desk.js:191 msgid "Password missing in Email Account" msgstr "" -#: utils/password.py:42 +#: utils/password.py:41 msgid "Password not found for {0} {1} {2}" msgstr "" -#: core/doctype/user/user.py:1035 +#: core/doctype/user/user.py:1074 msgid "Password reset instructions have been sent to your email" -msgstr "Parola sıfırlama bilgileri e-posta gönderildi" +msgstr "" #: www/update-password.html:164 msgid "Password set" msgstr "" -#: auth.py:239 +#: auth.py:235 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: core/doctype/user/user.py:828 +#: core/doctype/user/user.py:870 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -21960,9 +22955,9 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: core/doctype/user/user.js:187 +#: core/doctype/user/user.js:191 msgid "Passwords do not match!" -msgstr "Parolalar uyuşmuyor!" +msgstr "" #: email/doctype/newsletter/newsletter.py:156 msgid "Past dates are not allowed for Scheduling." @@ -21970,74 +22965,78 @@ msgstr "" #: public/js/frappe/views/file/file_view.js:151 msgid "Paste" -msgstr "Yapıştır" +msgstr "" #. Label of a Int field in DocType 'Package Release' #: core/doctype/package_release/package_release.json msgctxt "Package Release" msgid "Patch" -msgstr "Yama" +msgstr "" #. Label of a Code field in DocType 'Patch Log' #: core/doctype/patch_log/patch_log.json msgctxt "Patch Log" msgid "Patch" -msgstr "Yama" +msgstr "" #. Name of a DocType #: core/doctype/patch_log/patch_log.json msgid "Patch Log" -msgstr "Patch Günlüğü" +msgstr "" -#: modules/patch_handler.py:137 +#: modules/patch_handler.py:136 msgid "Patch type {} not found in patches.txt" msgstr "" #: website/report/website_analytics/website_analytics.js:35 msgid "Path" -msgstr "Yol" +msgstr "Path" #. Label of a Data field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Path" -msgstr "Yol" +msgstr "Path" #. Label of a Small Text field in DocType 'Package Release' #: core/doctype/package_release/package_release.json msgctxt "Package Release" msgid "Path" -msgstr "Yol" +msgstr "Path" #. Label of a Data field in DocType 'Recorder' #: core/doctype/recorder/recorder.json msgctxt "Recorder" msgid "Path" -msgstr "Yol" +msgstr "Path" #. Label of a Data field in DocType 'Web Page View' #: website/doctype/web_page_view/web_page_view.json msgctxt "Web Page View" msgid "Path" -msgstr "Yol" +msgstr "Path" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "Path to CA Certs File" -msgstr "CA Certs Dosyasının Yolu" +msgstr "" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "Path to Server Certificate" -msgstr "Sunucu Sertifikasına Giden Yol" +msgstr "" #. Label of a Data field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "Path to private Key File" -msgstr "Özel Anahtar Dosyaya Giden Yol" +msgstr "" + +#: website/path_resolver.py:197 +msgid "Path {0} it not a valid path" +msgstr "" #. Label of a Int field in DocType 'Data Import' #: core/doctype/data_import/data_import.json @@ -22069,32 +23068,32 @@ msgstr "Bekliyor" #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgctxt "Personal Data Deletion Request" msgid "Pending Approval" -msgstr "Onay bekleyen" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgctxt "Personal Data Deletion Request" msgid "Pending Verification" -msgstr "Doğrulama beklemede" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Percent" -msgstr "Yüzde" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Percent" -msgstr "Yüzde" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Percent" -msgstr "Yüzde" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json @@ -22112,56 +23111,59 @@ msgstr "Dönem" #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Perm Level" -msgstr "Seviye Perm" +msgstr "" #. Label of a Int field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Perm Level" -msgstr "Seviye Perm" +msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "Permanent" -msgstr "kalıcı" +msgstr "" #: public/js/frappe/form/form.js:1047 msgid "Permanently Cancel {0}?" -msgstr "Kalıcı {0} İptal?" +msgstr "" #: public/js/frappe/form/form.js:877 msgid "Permanently Submit {0}?" -msgstr "Kalıcı {0} Gönder?" +msgstr "" -#: public/js/frappe/model/model.js:698 +#: public/js/frappe/model/model.js:703 msgid "Permanently delete {0}?" -msgstr "Kalıcı {0} silmek?" +msgstr "" #: core/doctype/user_type/user_type.py:83 msgid "Permission Error" -msgstr "İzin Hatası" +msgstr "" #. Name of a DocType #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgid "Permission Inspector" -msgstr "İzin Hatası" +msgstr "" -#: core/page/permission_manager/permission_manager.js:446 +#: core/page/permission_manager/permission_manager.js:457 msgid "Permission Level" -msgstr "İzin Düzeyi" +msgstr "" #. Label of a Int field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Permission Level" -msgstr "İzin Düzeyi" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:22 +msgid "Permission Levels" +msgstr "" #. Label of a shortcut in the Users Workspace #: core/workspace/users/users.json msgid "Permission Manager" -msgstr "" +msgstr "İzin Yöneticisi" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json @@ -22173,74 +23175,93 @@ msgstr "" #: core/doctype/custom_role/custom_role.json msgctxt "Custom Role" msgid "Permission Rules" -msgstr "İzin Kuralları" +msgstr "" #. Label of a Section Break field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Permission Rules" -msgstr "İzin Kuralları" +msgstr "" #. Label of a Select field in DocType 'Permission Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "Permission Type" -msgstr "İzin Kuralları" +msgstr "" #. Label of a Card Break in the Users Workspace -#: core/doctype/user/user.js:129 core/doctype/user/user.js:138 +#: core/doctype/user/user.js:133 core/doctype/user/user.js:142 #: core/page/permission_manager/permission_manager.js:214 #: core/workspace/users/users.json msgid "Permissions" -msgstr "İzinler" +msgstr "" #. Label of a Section Break field in DocType 'Custom DocPerm' #: core/doctype/custom_docperm/custom_docperm.json msgctxt "Custom DocPerm" msgid "Permissions" -msgstr "İzinler" +msgstr "" #. Label of a Section Break field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Permissions" -msgstr "İzinler" +msgstr "" #. Label of a Section Break field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Permissions" -msgstr "İzinler" +msgstr "" #. Label of a Section Break field in DocType 'DocPerm' #: core/doctype/docperm/docperm.json msgctxt "DocPerm" msgid "Permissions" -msgstr "İzinler" +msgstr "" #. Label of a Table field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Permissions" -msgstr "İzinler" +msgstr "" #. Label of a Section Break field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Permissions" -msgstr "İzinler" +msgstr "" -#: core/doctype/doctype/doctype.py:1775 core/doctype/doctype/doctype.py:1785 +#: core/doctype/doctype/doctype.py:1773 core/doctype/doctype/doctype.py:1783 msgid "Permissions Error" msgstr "" +#: core/page/permission_manager/permission_manager_help.html:10 +msgid "Permissions are automatically applied to Standard Reports and searches." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:5 +msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:26 +msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:24 +msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:6 +msgid "Permissions get applied on Users based on what Roles they are assigned." +msgstr "" + #. Name of a report #. Label of a Link in the Users Workspace #: core/report/permitted_documents_for_user/permitted_documents_for_user.json #: core/workspace/users/users.json msgid "Permitted Documents For User" -msgstr "Kullanıcı için İzin verilen Belgeler" +msgstr "" #. Label of a Table MultiSelect field in DocType 'Workflow Action' #: workflow/doctype/workflow_action/workflow_action.json @@ -22257,7 +23278,7 @@ msgstr "Kişisel" #. Name of a DocType #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Personal Data Deletion Request" -msgstr "Kişisel Veri Silme İsteği" +msgstr "" #. Name of a DocType #: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -22267,7 +23288,7 @@ msgstr "" #. Name of a DocType #: website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Personal Data Download Request" -msgstr "Kişisel Veri İndirme İsteği" +msgstr "" #. Label of a Data field in DocType 'Address' #: contacts/doctype/address/address.json @@ -22327,29 +23348,29 @@ msgstr "Telefon" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Phone No." -msgstr "Telefon No" +msgstr "" #: utils/__init__.py:108 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" #: public/js/frappe/form/print_utils.js:38 +#: public/js/frappe/views/reports/report_view.js:1501 #: public/js/frappe/views/reports/report_view.js:1504 -#: public/js/frappe/views/reports/report_view.js:1507 msgid "Pick Columns" -msgstr "Sütunları Seç" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Pie" -msgstr "Turta" +msgstr "" #. Label of a Data field in DocType 'Contact Us Settings' #: website/doctype/contact_us_settings/contact_us_settings.json msgctxt "Contact Us Settings" msgid "Pincode" -msgstr "Pinkodu" +msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' #: core/doctype/doctype_state/doctype_state.json @@ -22373,53 +23394,53 @@ msgstr "" #: contacts/doctype/address/address.json msgctxt "Address" msgid "Plant" -msgstr "tesis" +msgstr "" -#: email/oauth.py:30 +#: email/oauth.py:29 msgid "Please Authorize OAuth for Email Account {}" msgstr "" -#: website/doctype/website_theme/website_theme.py:79 +#: website/doctype/website_theme/website_theme.py:77 msgid "Please Duplicate this Website Theme to customize." -msgstr "Bu Web Sitesi Tema özelleştirmek için çoğaltın lütfen." +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:159 +#: integrations/doctype/ldap_settings/ldap_settings.py:161 msgid "Please Install the ldap3 library via pip to use ldap functionality." -msgstr "Lütfen ldap işlevselliğini kullanmak için ldap3 kütüphanesini pip aracılığıyla kurun." +msgstr "" #: public/js/frappe/views/reports/query_report.js:307 msgid "Please Set Chart" -msgstr "Lütfen Grafik Ayarlayın" +msgstr "" #: core/doctype/sms_settings/sms_settings.py:84 msgid "Please Update SMS Settings" -msgstr "Lütfen SMS ayarlarını güncelleyiniz" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:569 +#: automation/doctype/auto_repeat/auto_repeat.py:570 msgid "Please add a subject to your email" -msgstr "Lütfen e-postanıza bir konu ekleyin" +msgstr "" #: templates/includes/comments/comments.html:168 msgid "Please add a valid comment." -msgstr "Lütfen geçerli bir yorum ekleyin." +msgstr "" -#: core/doctype/user/user.py:1017 +#: core/doctype/user/user.py:1057 msgid "Please ask your administrator to verify your sign-up" -msgstr "senin kaydolma doğrulamak için yöneticinize danışın" +msgstr "" #: public/js/frappe/form/controls/select.js:96 msgid "Please attach a file first." -msgstr "Önce bir dosya ekleyiniz." +msgstr "" -#: printing/doctype/letter_head/letter_head.py:73 +#: printing/doctype/letter_head/letter_head.py:76 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: printing/doctype/letter_head/letter_head.py:61 +#: printing/doctype/letter_head/letter_head.py:64 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" -#: core/doctype/package_import/package_import.py:38 +#: core/doctype/package_import/package_import.py:39 msgid "Please attach the package" msgstr "" @@ -22429,51 +23450,51 @@ msgstr "" #: utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" -msgstr "Lütfen Gösterge Tablosu Grafiği için ayarlanmış filtre değerlerini kontrol edin: {}" +msgstr "" -#: model/base_document.py:839 +#: model/base_document.py:862 msgid "Please check the value of \"Fetch From\" set for field {0}" -msgstr "Lütfen {0} alanı için 'Getir' ayarının değerini kontrol edin" +msgstr "" -#: core/doctype/user/user.py:1015 +#: core/doctype/user/user.py:1055 msgid "Please check your email for verification" -msgstr "doğrulama için e-postanızı kontrol edin" +msgstr "" -#: email/smtp.py:131 +#: email/smtp.py:133 msgid "Please check your email login credentials." msgstr "" -#: twofactor.py:246 +#: twofactor.py:243 msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." -msgstr "Nasıl ilerleneceğine ilişkin talimatlar için lütfen kayıtlı e-posta adresinizi kontrol edin. Bu pencereyi kapatmak zorunda kalmayacağım, çünkü ona dönmek zorundasın." +msgstr "" -#: twofactor.py:291 +#: core/doctype/data_import/data_import.js:158 +msgid "Please click on 'Export Errored Rows', fix the errors and import again." +msgstr "" + +#: twofactor.py:286 msgid "Please click on the following link and follow the instructions on the page. {0}" msgstr "" #: templates/emails/password_reset.html:2 msgid "Please click on the following link to set your new password" -msgstr "Yeni şifrenizi ayarlamak için aşağıdaki linke tıklayınız" +msgstr "" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:344 +#: integrations/doctype/dropbox_settings/dropbox_settings.py:343 msgid "Please close this window" -msgstr "Lütfen bu pencereyi kapatın" +msgstr "" #: www/confirm_workflow_action.html:4 msgid "Please confirm your action to {0} this document." -msgstr "Lütfen işleminizi bu dokümana {0} doğrulayın." - -#: core/doctype/server_script/server_script.js:33 -msgid "Please contact your system administrator to enable this feature." msgstr "" #: desk/doctype/number_card/number_card.js:44 msgid "Please create Card first" -msgstr "Lütfen önce Kart oluşturun" +msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:42 msgid "Please create chart first" -msgstr "Lütfen önce grafik oluşturun" +msgstr "" #: desk/form/meta.py:209 msgid "Please delete the field from {0} or add the required doctype." @@ -22481,80 +23502,79 @@ msgstr "" #: core/doctype/data_export/exporter.py:184 msgid "Please do not change the template headings." -msgstr "Şablon başlıkları değiştirmek etmeyiniz." +msgstr "" #: printing/doctype/print_format/print_format.js:18 msgid "Please duplicate this to make changes" -msgstr "Değişikliğin uygulanması için Lütfen bu öğeyi çoğaltın" +msgstr "" -#: core/doctype/system_settings/system_settings.py:145 +#: core/doctype/system_settings/system_settings.py:155 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: desk/doctype/notification_log/notification_log.js:45 #: email/doctype/auto_email_report/auto_email_report.js:17 -#: printing/page/print/print.js:611 printing/page/print/print.js:640 -#: public/js/frappe/list/bulk_operations.js:117 -#: public/js/frappe/utils/utils.js:1416 +#: printing/page/print/print.js:618 printing/page/print/print.js:647 +#: public/js/frappe/utils/utils.js:1417 msgid "Please enable pop-ups" msgstr "Pop-up etkinleştirin" #: public/js/frappe/microtemplate.js:162 public/js/frappe/microtemplate.js:177 msgid "Please enable pop-ups in your browser" -msgstr "Lütfen tarayıcınızda açılır pencereleri etkinleştir" +msgstr "" #: integrations/google_oauth.py:53 msgid "Please enable {} before continuing." msgstr "" -#: utils/oauth.py:191 +#: utils/oauth.py:186 msgid "Please ensure that your profile has an email address" -msgstr "Profil E-posta adresi olduğundan emin olun" +msgstr "" -#: integrations/doctype/social_login_key/social_login_key.py:73 +#: integrations/doctype/social_login_key/social_login_key.py:74 msgid "Please enter Access Token URL" -msgstr "Lütfen Erişim Simgesi URL'si girin" +msgstr "" -#: integrations/doctype/social_login_key/social_login_key.py:71 +#: integrations/doctype/social_login_key/social_login_key.py:72 msgid "Please enter Authorize URL" -msgstr "Lütfen URL'yi Yetkilendirin girin" +msgstr "" -#: integrations/doctype/social_login_key/social_login_key.py:69 +#: integrations/doctype/social_login_key/social_login_key.py:70 msgid "Please enter Base URL" -msgstr "Lütfen Temel URL'yi girin" +msgstr "" #: integrations/doctype/social_login_key/social_login_key.py:78 msgid "Please enter Client ID before social login is enabled" -msgstr "Sosyal giriş etkinleştirilmeden önce lütfen Müşteri Kimliğini girin" +msgstr "" -#: integrations/doctype/social_login_key/social_login_key.py:82 +#: integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Client Secret before social login is enabled" -msgstr "Sosyal giriş etkinleştirilmeden önce Müşteri Sırrını giriniz" +msgstr "" #: integrations/doctype/connected_app/connected_app.js:8 msgid "Please enter OpenID Configuration URL" msgstr "" -#: integrations/doctype/social_login_key/social_login_key.py:75 +#: integrations/doctype/social_login_key/social_login_key.py:76 msgid "Please enter Redirect URL" -msgstr "Lütfen Yönlendirme URL'sini girin" +msgstr "" #: templates/includes/comments/comments.html:163 msgid "Please enter a valid email address." msgstr "" -#: www/update-password.html:233 +#: www/update-password.html:232 msgid "Please enter the password" -msgstr "şifrenizi giriniz" +msgstr "" #: public/js/frappe/desk.js:196 msgctxt "Email Account" msgid "Please enter the password for: {0}" msgstr "" -#: core/doctype/sms_settings/sms_settings.py:42 +#: core/doctype/sms_settings/sms_settings.py:43 msgid "Please enter valid mobile nos" -msgstr "Lütfen Geçerli bir cep telefonu numarası giriniz" +msgstr "" #: www/update-password.html:115 msgid "Please enter your new password." @@ -22564,13 +23584,13 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:401 +#: automation/doctype/auto_repeat/auto_repeat.py:402 msgid "Please find attached {0}: {1}" -msgstr "Lütfen ekte {0} bul: {1}" +msgstr "" -#: core/doctype/navbar_settings/navbar_settings.py:44 +#: core/doctype/navbar_settings/navbar_settings.py:43 msgid "Please hide the standard navbar items instead of deleting them" -msgstr "Lütfen standart gezinme çubuğu öğelerini silmek yerine gizleyin" +msgstr "" #: templates/includes/comments/comments.py:31 msgid "Please login to post a comment." @@ -22578,55 +23598,59 @@ msgstr "" #: core/doctype/communication/communication.py:210 msgid "Please make sure the Reference Communication Docs are not circularly linked." -msgstr "Lütfen Referans İletişim Dokümanlarının dairesel olarak bağlı olmadığından emin olun." +msgstr "" -#: model/document.py:810 +#: model/document.py:820 msgid "Please refresh to get the latest document." -msgstr "Son belge almak yenileyin." +msgstr "" -#: printing/page/print/print.js:525 +#: printing/page/print/print.js:532 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" #: public/js/frappe/form/form.js:384 msgid "Please save before attaching." -msgstr "Takmadan önce tasarruf edin." +msgstr "" #: email/doctype/newsletter/newsletter.py:133 msgid "Please save the Newsletter before sending" -msgstr "Lütfen göndermeden önce bülteni kaydedin" +msgstr "" #: public/js/frappe/form/sidebar/assign_to.js:51 msgid "Please save the document before assignment" -msgstr "Atama öncesi belgeyi saklayınız" +msgstr "" #: public/js/frappe/form/sidebar/assign_to.js:71 msgid "Please save the document before removing assignment" -msgstr "Atama çıkarmadan önce belgeyi saklayınız" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1614 +#: public/js/frappe/views/reports/report_view.js:1611 msgid "Please save the report first" -msgstr "İlk raporu kaydetmek Lütfen" +msgstr "" #: website/doctype/web_template/web_template.js:22 msgid "Please save to edit the template." -msgstr "Lütfen şablonu düzenlemek için kaydedin." +msgstr "" #: desk/page/leaderboard/leaderboard.js:244 msgid "Please select Company" -msgstr "Firma seçiniz" +msgstr "Şirket seçiniz" #: printing/doctype/print_format/print_format.js:30 msgid "Please select DocType first" -msgstr "İlk DOCTYPE seçiniz" +msgstr "" #: contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 msgid "Please select Entity Type first" -msgstr "Lütfen önce Varlık Türü'nü seçin" +msgstr "" -#: core/doctype/system_settings/system_settings.py:103 +#: core/doctype/system_settings/system_settings.py:105 msgid "Please select Minimum Password Score" -msgstr "Lütfen Minimum Şifre Puanını seçin" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1106 +msgid "Please select X and Y fields" +msgstr "" #: utils/__init__.py:115 msgid "Please select a country code for field {1}." @@ -22634,31 +23658,31 @@ msgstr "" #: utils/file_manager.py:50 msgid "Please select a file or url" -msgstr "Bir dosya veya url seçiniz" +msgstr "" -#: model/rename_doc.py:670 +#: model/rename_doc.py:662 msgid "Please select a valid csv file with data" -msgstr "Veri içeren geçerli bir csv dosyası seçiniz" +msgstr "" -#: utils/data.py:285 +#: utils/data.py:289 msgid "Please select a valid date filter" -msgstr "Lütfen geçerli bir tarih filtresi seçin" +msgstr "" #: core/doctype/user_permission/user_permission_list.js:203 msgid "Please select applicable Doctypes" -msgstr "Lütfen geçerli Dokümanları seçin" +msgstr "" -#: model/db_query.py:1140 +#: model/db_query.py:1118 msgid "Please select atleast 1 column from {0} to sort/group" -msgstr "{0} sıralamak / gruptan en az 1 sütun seçin" +msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:215 +#: core/doctype/document_naming_settings/document_naming_settings.py:214 msgid "Please select prefix first" -msgstr "Önce Ön ek seçiniz" +msgstr "" #: core/doctype/data_export/data_export.js:42 msgid "Please select the Document Type." -msgstr "Lütfen Belge Türü'nü seçin." +msgstr "" #. Description of the 'Directory Server' (Select) field in DocType 'LDAP #. Settings' @@ -22669,76 +23693,76 @@ msgstr "" #: website/doctype/website_settings/website_settings.js:100 msgid "Please select {0}" -msgstr "Lütfen {0} seçiniz" +msgstr "Lütfen {0} seçiniz" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:306 +#: integrations/doctype/dropbox_settings/dropbox_settings.py:305 msgid "Please set Dropbox access keys in site config or doctype" msgstr "" -#: contacts/doctype/contact/contact.py:200 +#: contacts/doctype/contact/contact.py:202 msgid "Please set Email Address" -msgstr "E-posta Adresini ayarla" +msgstr "" -#: printing/page/print/print.js:539 +#: printing/page/print/print.js:546 msgid "Please set a printer mapping for this print format in the Printer Settings" -msgstr "Lütfen bu yazdırma formatı için Yazıcı Ayarlarında bir yazıcı eşlemesi ayarlayın" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1308 +#: public/js/frappe/views/reports/query_report.js:1322 msgid "Please set filters" -msgstr "Filtreleri ayarlayın Lütfen" +msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:226 +#: email/doctype/auto_email_report/auto_email_report.py:251 msgid "Please set filters value in Report Filter table." -msgstr "Rapor Filtresi tabloda filtreler değerini ayarlayın." +msgstr "" -#: model/naming.py:533 +#: model/naming.py:550 msgid "Please set the document name" msgstr "" -#: desk/doctype/dashboard/dashboard.py:125 +#: desk/doctype/dashboard/dashboard.py:122 msgid "Please set the following documents in this Dashboard as standard first." -msgstr "Lütfen önce bu Gösterge Tablosunda aşağıdaki belgeleri standart olarak ayarlayın." +msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:121 +#: core/doctype/document_naming_settings/document_naming_settings.py:120 msgid "Please set the series to be used." -msgstr "Lütfen kullanım serilerini ayarlayın." +msgstr "" -#: core/doctype/system_settings/system_settings.py:116 +#: core/doctype/system_settings/system_settings.py:118 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" -msgstr "Lütfen, SMS Ayarları aracılığıyla bir kimlik doğrulama yöntemi olarak ayarlamadan önce SMS'i kurun." +msgstr "" #: automation/doctype/auto_repeat/auto_repeat.js:102 msgid "Please setup a message first" -msgstr "Lütfen önce bir mesaj kurun" +msgstr "" -#: email/doctype/email_account/email_account.py:389 +#: email/doctype/email_account/email_account.py:407 msgid "Please setup default Email Account from Settings > Email Account" msgstr "" -#: core/doctype/user/user.py:369 +#: core/doctype/user/user.py:405 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" -#: public/js/frappe/model/model.js:785 +#: public/js/frappe/model/model.js:790 msgid "Please specify" msgstr "Lütfen belirtiniz" -#: permissions.py:782 +#: permissions.py:778 msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: email/doctype/notification/notification.py:86 +#: email/doctype/notification/notification.py:87 msgid "Please specify which date field must be checked" -msgstr "Kontrol edilmesi gereken tarih alanı belirtiniz" +msgstr "" -#: email/doctype/notification/notification.py:89 +#: email/doctype/notification/notification.py:90 msgid "Please specify which value field must be checked" -msgstr "Değer alanı kontrol edilmesi gerektiği belirtiniz" +msgstr "" #: public/js/frappe/request.js:184 #: public/js/frappe/views/translation_manager.js:102 msgid "Please try again" -msgstr "Lütfen tekrar deneyin" +msgstr "" #: integrations/google_oauth.py:56 msgid "Please update {} before continuing." @@ -22750,33 +23774,37 @@ msgstr "" #: email/doctype/newsletter/newsletter.py:333 msgid "Please verify your Email Address" -msgstr "Lütfen email adresini doğrula" +msgstr "" + +#: utils/password.py:201 +msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." +msgstr "" #. Label of a Select field in DocType 'Energy Point Settings' #: social/doctype/energy_point_settings/energy_point_settings.json msgctxt "Energy Point Settings" msgid "Point Allocation Periodicity" -msgstr "Nokta Tahsisi Periyodikliği" +msgstr "" #: public/js/frappe/form/sidebar/review.js:75 msgid "Points" -msgstr "makas" +msgstr "" #. Label of a Int field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json msgctxt "Energy Point Log" msgid "Points" -msgstr "makas" +msgstr "" #. Label of a Int field in DocType 'Energy Point Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "Points" -msgstr "makas" +msgstr "" #: templates/emails/energy_points_summary.html:40 msgid "Points Given" -msgstr "Verilen Puanlar" +msgstr "" #. Label of a Check field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -22794,63 +23822,66 @@ msgstr "" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Port" -msgstr "Port" +msgstr "" #. Label of a Data field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Port" -msgstr "Port" +msgstr "" #. Label of a Int field in DocType 'Network Printer Settings' #: printing/doctype/network_printer_settings/network_printer_settings.json msgctxt "Network Printer Settings" msgid "Port" -msgstr "Port" +msgstr "" #. Label of a Card Break in the Website Workspace #: website/workspace/website/website.json msgid "Portal" -msgstr "" +msgstr "Portal" #. Label of a Table field in DocType 'Portal Settings' #: website/doctype/portal_settings/portal_settings.json msgctxt "Portal Settings" msgid "Portal Menu" -msgstr "Portal Menüsü" +msgstr "" #. Name of a DocType #: website/doctype/portal_menu_item/portal_menu_item.json msgid "Portal Menu Item" -msgstr "Portal Menü Maddesi" +msgstr "" #. Name of a DocType #: website/doctype/portal_settings/portal_settings.json msgid "Portal Settings" -msgstr "Portal Ayarları" +msgstr "" #. Label of a Link in the Website Workspace #: website/workspace/website/website.json msgctxt "Portal Settings" msgid "Portal Settings" -msgstr "Portal Ayarları" +msgstr "" #: public/js/frappe/form/print_utils.js:29 msgid "Portrait" -msgstr "Portre" +msgstr "Portrait" #. Label of a Select field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Position" -msgstr "Pozisyon" +msgstr "" #: templates/discussions/comment_box.html:29 #: templates/discussions/reply_card.html:15 +#: templates/discussions/reply_section.html:29 +#: templates/discussions/reply_section.html:53 +#: templates/discussions/topic_modal.html:11 msgid "Post" msgstr "Gönder" -#: templates/discussions/reply_section.html:39 +#: templates/discussions/reply_section.html:40 msgid "Post it here, our mentors will help you out." msgstr "" @@ -22858,7 +23889,7 @@ msgstr "" #: contacts/doctype/address/address.json msgctxt "Address" msgid "Postal" -msgstr "posta" +msgstr "" #. Label of a Data field in DocType 'Address' #: contacts/doctype/address/address.json @@ -22870,108 +23901,113 @@ msgstr "Posta Kodu" #: website/doctype/blog_category/blog_category.json msgctxt "Blog Category" msgid "Posts" -msgstr "Mesaj" +msgstr "" #: website/doctype/blog_post/blog_post.py:258 msgid "Posts by {0}" -msgstr "Tarafından Mesaj {0}" +msgstr "" #: website/doctype/blog_post/blog_post.py:250 msgid "Posts filed under {0}" -msgstr "Filed under Mesajlar {0}" +msgstr "" #. Label of a Select field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Precision" -msgstr "Hassas" +msgstr "" #. Label of a Select field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Precision" -msgstr "Hassas" +msgstr "" #. Label of a Select field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Precision" -msgstr "Hassas" +msgstr "" #. Label of a Select field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Precision" -msgstr "Hassas" +msgstr "" #: core/doctype/doctype/doctype.py:1349 msgid "Precision should be between 1 and 6" -msgstr "Hassas 1 ile 6 arasında olmalıdır" +msgstr "" -#: utils/password_strength.py:191 +#: utils/password_strength.py:187 msgid "Predictable substitutions like '@' instead of 'a' don't help very much." -msgstr "Öngörülebilir gibi değiştirmeler '@' yerine '' çok fazla yardımcı olmamaktadır." +msgstr "" #. Label of a Check field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "Preferred Billing Address" -msgstr "Tercih edilen Fatura Adresi" +msgstr "" #. Label of a Check field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "Preferred Shipping Address" -msgstr "Tercih edilen Teslimat Adresi" +msgstr "" #. Label of a Data field in DocType 'Document Naming Rule' #: core/doctype/document_naming_rule/document_naming_rule.json msgctxt "Document Naming Rule" msgid "Prefix" -msgstr "Önek" +msgstr "" #. Label of a Autocomplete field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Prefix" -msgstr "Önek" +msgstr "" #. Name of a DocType #: core/doctype/prepared_report/prepared_report.json msgid "Prepared Report" -msgstr "Hazırlanmış Rapor" +msgstr "" #. Label of a Check field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Prepared Report" -msgstr "Hazırlanmış Rapor" +msgstr "" #. Name of a role #: core/doctype/prepared_report/prepared_report.json msgid "Prepared Report User" -msgstr "Hazırlanan Rapor Kullanıcısı" +msgstr "" -#: desk/query_report.py:296 +#: desk/query_report.py:294 msgid "Prepared report render failed" msgstr "" #: public/js/frappe/views/reports/query_report.js:469 msgid "Preparing Report" -msgstr "Rapor hazırlama" +msgstr "" -#: public/js/frappe/views/communication.js:321 +#: public/js/frappe/views/communication.js:411 msgid "Prepend the template to the email message" msgstr "" +#: public/js/frappe/ui/keyboard.js:138 +msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" +msgstr "" + #: public/js/frappe/list/list_filter.js:134 msgid "Press Enter to save" -msgstr "Kaydetmek için Enter tuşuna basın." +msgstr "" #: email/doctype/newsletter/newsletter.js:14 #: email/doctype/newsletter/newsletter.js:42 +#: public/js/frappe/form/controls/markdown_editor.js:17 #: public/js/frappe/form/controls/markdown_editor.js:31 -#: public/js/frappe/ui/capture.js:228 +#: public/js/frappe/ui/capture.js:236 msgid "Preview" msgstr "Önizleme" @@ -23009,7 +24045,7 @@ msgstr "Önizleme" #: core/doctype/file/file.json msgctxt "File" msgid "Preview HTML" -msgstr "Önizleme HTML" +msgstr "" #. Label of a Attach Image field in DocType 'Blog Category' #: website/doctype/blog_category/blog_category.json @@ -23027,7 +24063,7 @@ msgstr "" #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Preview Message" -msgstr "Önizleme Mesajı" +msgstr "" #: public/js/form_builder/form_builder.bundle.js:83 msgid "Preview Mode" @@ -23039,11 +24075,21 @@ msgctxt "Document Naming Settings" msgid "Preview of generated names" msgstr "" +#: email/doctype/email_group/email_group.js:90 +msgid "Preview:" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:95 #: public/js/onboarding_tours/onboarding_tours.js:16 #: templates/includes/slideshow.html:34 #: website/web_template/slideshow/slideshow.html:40 msgid "Previous" -msgstr "Önceki" +msgstr "" + +#: public/js/frappe/ui/slides.js:351 +msgctxt "Go to previous slide" +msgid "Previous" +msgstr "" #: public/js/frappe/form/toolbar.js:289 msgid "Previous Document" @@ -23053,9 +24099,9 @@ msgstr "" #: core/doctype/transaction_log/transaction_log.json msgctxt "Transaction Log" msgid "Previous Hash" -msgstr "Önceki Hash" +msgstr "" -#: public/js/frappe/form/form.js:2162 +#: public/js/frappe/form/form.js:2165 msgid "Previous Submission" msgstr "" @@ -23063,25 +24109,46 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "Primary" -msgstr "Birincil" +msgstr "" + +#: public/js/frappe/form/templates/address_list.html:21 +msgid "Primary Address" +msgstr "Birincil Adres" #. Label of a Link field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Primary Color" -msgstr "Ana renk" +msgstr "" + +#: public/js/frappe/form/templates/contact_list.html:17 +msgid "Primary Contact" +msgstr "Birincil İlgili Kişi" + +#: public/js/frappe/form/templates/contact_list.html:63 +msgid "Primary Email" +msgstr "" + +#: public/js/frappe/form/templates/contact_list.html:43 +msgid "Primary Mobile" +msgstr "" + +#: public/js/frappe/form/templates/contact_list.html:35 +msgid "Primary Phone" +msgstr "" #: core/doctype/success_action/success_action.js:56 #: printing/page/print/print.js:65 public/js/frappe/form/success_action.js:81 +#: public/js/frappe/form/templates/print_layout.html:46 #: public/js/frappe/form/toolbar.js:321 public/js/frappe/form/toolbar.js:333 -#: public/js/frappe/list/bulk_operations.js:79 -#: public/js/frappe/views/reports/query_report.js:1623 -#: public/js/frappe/views/reports/report_view.js:1463 +#: public/js/frappe/list/bulk_operations.js:87 +#: public/js/frappe/views/reports/query_report.js:1640 +#: public/js/frappe/views/reports/report_view.js:1460 #: public/js/frappe/views/treeview.js:473 www/printview.html:18 msgid "Print" msgstr "Yazdır" -#: public/js/frappe/list/list_view.js:1849 +#: public/js/frappe/list/list_view.js:1919 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Yazdır" @@ -23098,52 +24165,52 @@ msgctxt "DocPerm" msgid "Print" msgstr "Yazdır" -#: public/js/frappe/list/bulk_operations.js:39 +#: public/js/frappe/list/bulk_operations.js:47 msgid "Print Documents" -msgstr "Belgeleri Yazdır" +msgstr "" #. Name of a DocType #: printing/doctype/print_format/print_format.json -#: printing/page/print/print.js:94 printing/page/print/print.js:794 -#: public/js/frappe/list/bulk_operations.js:50 +#: printing/page/print/print.js:94 printing/page/print/print.js:801 +#: public/js/frappe/list/bulk_operations.js:58 msgid "Print Format" -msgstr "Baskı Formatı" +msgstr "Yazdırma Formatı" #. Label of a Link field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Print Format" -msgstr "Baskı Formatı" +msgstr "Yazdırma Formatı" #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Print Format" -msgstr "Baskı Formatı" +msgstr "Yazdırma Formatı" #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Print Format" -msgstr "Baskı Formatı" +msgstr "Yazdırma Formatı" #. Label of a Link field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Print Format" -msgstr "Baskı Formatı" +msgstr "Yazdırma Formatı" #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Print Format" msgid "Print Format" -msgstr "Baskı Formatı" +msgstr "Yazdırma Formatı" #. Label of a Link field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Print Format" -msgstr "Baskı Formatı" +msgstr "Yazdırma Formatı" #. Label of a Link in the Tools Workspace #. Label of a shortcut in the Build Workspace @@ -23152,13 +24219,13 @@ msgstr "Baskı Formatı" #: printing/page/print_format_builder/print_format_builder.js:67 #: printing/page/print_format_builder_beta/print_format_builder_beta.js:4 msgid "Print Format Builder" -msgstr "Baskı Biçimi Oluşturucu" +msgstr "" #. Label of a Check field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Print Format Builder" -msgstr "Baskı Biçimi Oluşturucu" +msgstr "" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json @@ -23171,7 +24238,7 @@ msgctxt "Print Format" msgid "Print Format Builder Beta" msgstr "" -#: utils/pdf.py:52 +#: utils/pdf.py:56 msgid "Print Format Error" msgstr "" @@ -23184,17 +24251,17 @@ msgstr "" #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Print Format Help" -msgstr "Baskı Biçimi Yardım" +msgstr "" #. Label of a Select field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Print Format Type" -msgstr "Baskı Format Tipi" +msgstr "" -#: www/printview.py:407 +#: www/printview.py:424 msgid "Print Format {0} is disabled" -msgstr "Baskı Biçimi {0} devre dışı" +msgstr "" #. Description of the Onboarding Step 'Customize Print Formats' #: custom/onboarding_step/print_format/print_format.json @@ -23204,7 +24271,7 @@ msgstr "" #. Name of a DocType #: printing/doctype/print_heading/print_heading.json msgid "Print Heading" -msgstr "" +msgstr "Baskı Başlığı" #. Label of a Link in the Tools Workspace #. Label of a Data field in DocType 'Print Heading' @@ -23212,121 +24279,126 @@ msgstr "" #: printing/doctype/print_heading/print_heading.json msgctxt "Print Heading" msgid "Print Heading" +msgstr "Baskı Başlığı" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Print Hide" +msgstr "" + +#. Label of a Check field in DocType 'Customize Form Field' +#: custom/doctype/customize_form_field/customize_form_field.json +msgctxt "Customize Form Field" +msgid "Print Hide" +msgstr "" + +#. Label of a Check field in DocType 'DocField' +#: core/doctype/docfield/docfield.json +msgctxt "DocField" +msgid "Print Hide" msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Print Hide" -msgstr "Gizle Yazdır" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Print Hide" -msgstr "Gizle Yazdır" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Print Hide" -msgstr "Gizle Yazdır" - #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Print Hide If No Value" -msgstr "Baskı gizle Hayır Değer" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Print Hide If No Value" -msgstr "Baskı gizle Hayır Değer" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Print Hide If No Value" -msgstr "Baskı gizle Hayır Değer" +msgstr "" + +#: public/js/frappe/views/communication.js:156 +msgid "Print Language" +msgstr "Yazdırma Dili" #: public/js/frappe/form/print_utils.js:195 msgid "Print Sent to the printer!" -msgstr "Yazdır Yazıcıya gönderildi!" +msgstr "" #. Label of a Section Break field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Print Server" -msgstr "Baskı Sunucusu" +msgstr "" #. Name of a DocType #: printing/doctype/print_settings/print_settings.json #: printing/doctype/print_style/print_style.js:6 #: printing/page/print/print.js:160 public/js/frappe/form/print_utils.js:69 +#: public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" -msgstr "Baskı Ayarları" +msgstr "Yazdırma Ayarları" #. Label of a Section Break field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Print Settings" -msgstr "Baskı Ayarları" +msgstr "Yazdırma Ayarları" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "Print Settings" msgid "Print Settings" -msgstr "Baskı Ayarları" +msgstr "Yazdırma Ayarları" #. Name of a DocType #: printing/doctype/print_style/print_style.json msgid "Print Style" -msgstr "Baskı Stili" +msgstr "" #. Label of a Section Break field in DocType 'Print Settings' #. Label of a Link field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Print Style" -msgstr "Baskı Stili" +msgstr "" #. Label of a Data field in DocType 'Print Style' #: printing/doctype/print_style/print_style.json msgctxt "Print Style" msgid "Print Style Name" -msgstr "Baskı Stili Adı" +msgstr "" #. Label of a HTML field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Print Style Preview" -msgstr "Baskı Önizleme Stil" +msgstr "" #. Label of a Data field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Print Width" -msgstr "Baskı Genişliği" +msgstr "" #. Label of a Data field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Print Width" -msgstr "Baskı Genişliği" +msgstr "" #. Label of a Data field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Print Width" -msgstr "Baskı Genişliği" +msgstr "" #. Description of the 'Print Width' (Data) field in DocType 'Customize Form #. Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Print Width of the field, if the field is a column in a table" -msgstr "Alan bir tablodaki bir sütun ise, alanın genişliği yazdır" +msgstr "" #: public/js/frappe/form/form.js:170 msgid "Print document" @@ -23336,38 +24408,38 @@ msgstr "" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Print with letterhead" -msgstr "Antet ile yazdır" +msgstr "" -#: printing/page/print/print.js:803 +#: printing/page/print/print.js:810 msgid "Printer" -msgstr "Yazıcı" +msgstr "" -#: printing/page/print/print.js:780 +#: printing/page/print/print.js:787 msgid "Printer Mapping" -msgstr "Yazıcı eşlemesi" +msgstr "" #. Label of a Select field in DocType 'Network Printer Settings' #: printing/doctype/network_printer_settings/network_printer_settings.json msgctxt "Network Printer Settings" msgid "Printer Name" -msgstr "Yazıcı adı" +msgstr "" -#: printing/page/print/print.js:772 +#: printing/page/print/print.js:779 msgid "Printer Settings" -msgstr "Yazıcı ayarları" +msgstr "" -#: printing/page/print/print.js:538 +#: printing/page/print/print.js:545 msgid "Printer mapping not set." msgstr "" #. Label of a Card Break in the Tools Workspace #: automation/workspace/tools/tools.json msgid "Printing" -msgstr "Baskı" +msgstr "" -#: utils/print_format.py:179 +#: utils/print_format.py:278 msgid "Printing failed" -msgstr "Yazdırma başarısız" +msgstr "" #: desk/report/todo/todo.py:37 public/js/frappe/form/sidebar/assign_to.js:184 msgid "Priority" @@ -23405,97 +24477,108 @@ msgstr "Öncelik" #: desk/doctype/note/note_list.js:8 msgid "Private" -msgstr "Özel" +msgstr "" #. Label of a Check field in DocType 'Custom HTML Block' #: desk/doctype/custom_html_block/custom_html_block.json msgctxt "Custom HTML Block" msgid "Private" -msgstr "Özel" +msgstr "" #. Option for the 'Event Type' (Select) field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Private" -msgstr "Özel" +msgstr "" #. Label of a Check field in DocType 'Kanban Board' #: desk/doctype/kanban_board/kanban_board.json msgctxt "Kanban Board" msgid "Private" -msgstr "Özel" +msgstr "" #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" -msgstr "ProTip: Ekle Reference: {{ reference_doctype }} {{ reference_name }} göndermek için doküman referansı" +msgstr "" #: core/doctype/document_naming_rule/document_naming_rule.js:22 msgid "Proceed" msgstr "" -#: public/js/frappe/views/reports/query_report.js:854 +#: public/js/frappe/views/reports/query_report.js:858 msgid "Proceed Anyway" -msgstr "Yine de Devam Et" +msgstr "" #: public/js/frappe/form/controls/table.js:88 msgid "Processing" -msgstr "İşleme" +msgstr "" -#: email/doctype/email_queue/email_queue.py:407 +#: email/doctype/email_queue/email_queue.py:429 msgid "Processing..." -msgstr "İşleme..." +msgstr "" #. Group in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "Profile" -msgstr "" +msgstr "Profil" #: public/js/frappe/socketio_client.js:78 msgid "Progress" -msgstr "İlerleme" +msgstr "" #: public/js/frappe/views/kanban/kanban_view.js:405 msgid "Project" msgstr "Proje" +#: core/doctype/version/version_view.html:12 +#: core/doctype/version/version_view.html:37 +#: core/doctype/version/version_view.html:74 +msgid "Property" +msgstr "" + #. Label of a Data field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "Property" -msgstr "Özellik" +msgstr "" #. Label of a Section Break field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Property Depends On" -msgstr "Mülkiyet Bağlıdır" +msgstr "" #. Label of a Section Break field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Property Depends On" -msgstr "Mülkiyet Bağlıdır" +msgstr "" #. Name of a DocType #: custom/doctype/property_setter/property_setter.json msgid "Property Setter" -msgstr "Özellik Belirleyici" +msgstr "" #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Property Setter" -msgstr "Özellik Belirleyici" +msgstr "" + +#. Description of a DocType +#: custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" #. Label of a Data field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "Property Type" -msgstr "Property Type" +msgstr "" #. Description of the 'Allowed File Extensions' (Small Text) field in DocType #. 'System Settings' @@ -23508,61 +24591,61 @@ msgstr "" #: core/doctype/user_social_login/user_social_login.json msgctxt "User Social Login" msgid "Provider" -msgstr "sağlayan" +msgstr "Sağlayıcı" #. Label of a Data field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json msgctxt "Connected App" msgid "Provider Name" -msgstr "Sağlayıcı Adı" +msgstr "" #. Label of a Data field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Provider Name" -msgstr "Sağlayıcı Adı" +msgstr "" #. Label of a Data field in DocType 'Token Cache' #: integrations/doctype/token_cache/token_cache.json msgctxt "Token Cache" msgid "Provider Name" -msgstr "Sağlayıcı Adı" +msgstr "" #: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78 -#: public/js/frappe/views/workspace/workspace.js:613 -#: public/js/frappe/views/workspace/workspace.js:941 -#: public/js/frappe/views/workspace/workspace.js:1187 +#: public/js/frappe/views/workspace/workspace.js:624 +#: public/js/frappe/views/workspace/workspace.js:952 +#: public/js/frappe/views/workspace/workspace.js:1198 msgid "Public" -msgstr "Genel" +msgstr "" #. Option for the 'Event Type' (Select) field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Public" -msgstr "Genel" +msgstr "" #. Label of a Check field in DocType 'Note' #: desk/doctype/note/note.json msgctxt "Note" msgid "Public" -msgstr "Genel" +msgstr "" #. Label of a Check field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Public" -msgstr "Genel" +msgstr "" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:77 +#: website/doctype/web_form/web_form.js:86 msgid "Publish" -msgstr "Yayınla" +msgstr "" #. Label of a Check field in DocType 'Package Release' #: core/doctype/package_release/package_release.json msgctxt "Package Release" msgid "Publish" -msgstr "Yayınla" +msgstr "" #. Label of a Section Break field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json @@ -23628,11 +24711,11 @@ msgstr "Yayınlandı" #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Published On" -msgstr "Yayınlandı" +msgstr "" #: website/doctype/blog_post/templates/blog_post.html:59 msgid "Published on" -msgstr "Yayınlanma tarihi" +msgstr "" #. Label of a Section Break field in DocType 'Web Page' #: website/doctype/web_page/web_page.json @@ -23648,25 +24731,25 @@ msgstr "" #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" msgid "Pull from Google Calendar" -msgstr "Google Takvim’den çekin" +msgstr "" #. Label of a Check field in DocType 'Google Contacts' #: integrations/doctype/google_contacts/google_contacts.json msgctxt "Google Contacts" msgid "Pull from Google Contacts" -msgstr "Google Kişiler'den çekin" +msgstr "" #. Label of a Check field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Pulled from Google Calendar" -msgstr "Google Takvim’den Çekti" +msgstr "" #. Label of a Check field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Pulled from Google Contacts" -msgstr "Google Kişilerden Alındı" +msgstr "" #. Name of a role #: contacts/doctype/contact/contact.json @@ -23676,7 +24759,7 @@ msgstr "Satınalma Yöneticisi" #. Name of a role #: contacts/doctype/contact/contact.json msgid "Purchase Master Manager" -msgstr "Satınalma Master Yöneticisi" +msgstr "Satınalma Ana Yöneticisi" #. Name of a role #: contacts/doctype/address/address.json contacts/doctype/contact/contact.json @@ -23688,25 +24771,41 @@ msgstr "Satınalma Kullanıcısı" #: core/doctype/doctype_state/doctype_state.json msgctxt "DocType State" msgid "Purple" -msgstr "" +msgstr "Mor" #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Purple" +msgstr "Mor" + +#. Name of a DocType +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Push Notification Settings" +msgstr "" + +#. Label of a Link in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgctxt "Push Notification Settings" +msgid "Push Notification Settings" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: integrations/workspace/integrations/integrations.json +msgid "Push Notifications" msgstr "" #. Label of a Check field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" msgid "Push to Google Calendar" -msgstr "Google Takvim’e git" +msgstr "" #. Label of a Check field in DocType 'Google Contacts' #: integrations/doctype/google_contacts/google_contacts.json msgctxt "Google Contacts" msgid "Push to Google Contacts" -msgstr "Google Kişilerine git" +msgstr "" #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 msgid "Put on Hold" @@ -23720,15 +24819,15 @@ msgstr "" #: www/qrcode.html:3 msgid "QR Code" -msgstr "QR kod" +msgstr "" #: www/qrcode.html:6 msgid "QR Code for Login Verification" -msgstr "Giriş Doğrulaması için QR Kodu" +msgstr "" #: public/js/frappe/form/print_utils.js:204 msgid "QZ Tray Failed: " -msgstr "QZ Kaseti Başarısız Oldu:" +msgstr "" #: public/js/frappe/utils/common.js:401 msgid "Quarterly" @@ -23752,23 +24851,29 @@ msgctxt "Dashboard Chart" msgid "Quarterly" msgstr "Üç ayda bir" +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#: desk/doctype/event/event.json +msgctxt "Event" +msgid "Quarterly" +msgstr "Üç ayda bir" + #. Label of a Data field in DocType 'Recorder Query' #: core/doctype/recorder_query/recorder_query.json msgctxt "Recorder Query" msgid "Query" -msgstr "Sorgu" +msgstr "" #. Label of a Code field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Query" -msgstr "Sorgu" +msgstr "" #. Label of a Section Break field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Query / Script" -msgstr "Sorgu / Komut Dosyası" +msgstr "" #. Label of a Small Text field in DocType 'Contact Us Settings' #: website/doctype/contact_us_settings/contact_us_settings.json @@ -23789,15 +24894,15 @@ msgstr "" #: public/js/frappe/views/reports/query_report.js:17 msgid "Query Report" -msgstr "Sorgu Raporu" +msgstr "" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Query Report" -msgstr "Sorgu Raporu" +msgstr "" -#: utils/safe_exec.py:437 +#: utils/safe_exec.py:434 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -23825,9 +24930,9 @@ msgctxt "DocType" msgid "Queue in Background (BETA)" msgstr "" -#: utils/background_jobs.py:473 +#: utils/background_jobs.py:463 msgid "Queue should be one of {0}" -msgstr "Kuyruk {0} dan biri olmalıdır" +msgstr "" #. Label of a Data field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json @@ -23837,25 +24942,25 @@ msgstr "" #: email/doctype/newsletter/newsletter.js:208 msgid "Queued" -msgstr "Sıraya alınmış" +msgstr "Sıraya alındı" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: integrations/doctype/integration_request/integration_request.json msgctxt "Integration Request" msgid "Queued" -msgstr "Sıraya alınmış" +msgstr "Sıraya alındı" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' #: core/doctype/prepared_report/prepared_report.json msgctxt "Prepared Report" msgid "Queued" -msgstr "Sıraya alınmış" +msgstr "Sıraya alındı" #. Option for the 'Status' (Select) field in DocType 'Submission Queue' #: core/doctype/submission_queue/submission_queue.json msgctxt "Submission Queue" msgid "Queued" -msgstr "Sıraya alınmış" +msgstr "Sıraya alındı" #. Label of a Datetime field in DocType 'Prepared Report' #: core/doctype/prepared_report/prepared_report.json @@ -23869,19 +24974,19 @@ msgctxt "Prepared Report" msgid "Queued By" msgstr "" -#: core/doctype/submission_queue/submission_queue.py:173 +#: core/doctype/submission_queue/submission_queue.py:174 msgid "Queued for Submission. You can track the progress over {0}." msgstr "" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:64 -#: integrations/doctype/google_drive/google_drive.py:156 -#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:81 +#: integrations/doctype/dropbox_settings/dropbox_settings.py:65 +#: integrations/doctype/google_drive/google_drive.py:153 +#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:82 msgid "Queued for backup. It may take a few minutes to an hour." -msgstr "yedekleme için sıraya. Bir saat için birkaç dakika sürebilir." +msgstr "" #: desk/page/backups/backups.py:96 msgid "Queued for backup. You will receive an email with the download link" -msgstr "Yedekleme için sıraya alındı. İndirme bağlantısıyla bir e-posta alacaksınız" +msgstr "" #: email/doctype/newsletter/newsletter.js:95 msgid "Queued {0} emails" @@ -23891,7 +24996,7 @@ msgstr "" msgid "Queuing emails..." msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:88 +#: desk/doctype/bulk_update/bulk_update.py:86 msgid "Queuing {0} for Submission" msgstr "" @@ -23899,13 +25004,17 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Quick Entry" -msgstr "Hızlı Girişi" +msgstr "Hızlı Giriş" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Quick Entry" -msgstr "Hızlı Girişi" +msgstr "Hızlı Giriş" + +#: core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +msgstr "" #. Label of a Code field in DocType 'Workspace Quick List' #: desk/doctype/workspace_quick_list/workspace_quick_list.json @@ -23928,7 +25037,7 @@ msgstr "" #: core/doctype/access_log/access_log.json msgctxt "Access Log" msgid "RAW Information Log" -msgstr "RAW Bilgi Günlüğü" +msgstr "" #. Name of a DocType #: core/doctype/rq_job/rq_job.json @@ -23944,18 +25053,22 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Random" -msgstr "" +msgstr "Rastgele" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Random" -msgstr "" +msgstr "Rastgele" #: website/report/website_analytics/website_analytics.js:20 msgid "Range" msgstr "Aralık" +#: desk/page/user_profile/user_profile_controller.js:402 +msgid "Rank" +msgstr "" + #. Label of a Section Break field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" @@ -23968,6 +25081,12 @@ msgctxt "Blog Settings" msgid "Rate Limits" msgstr "" +#. Label of a Int field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Rate limit for email link login" +msgstr "" + #. Label of a Int field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -23998,97 +25117,101 @@ msgctxt "Web Form Field" msgid "Rating" msgstr "Değerlendirme" -#: printing/doctype/print_format/print_format.py:89 +#: printing/doctype/print_format/print_format.py:87 msgid "Raw Commands" -msgstr "Ham Komutlar" +msgstr "" #. Label of a Code field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Raw Commands" -msgstr "Ham Komutlar" +msgstr "" #. Label of a Code field in DocType 'Unhandled Email' #: email/doctype/unhandled_email/unhandled_email.json msgctxt "Unhandled Email" msgid "Raw Email" -msgstr "Ham E-posta" +msgstr "" #. Label of a Check field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Raw Printing" -msgstr "Ham baskı" +msgstr "" #. Label of a Section Break field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Raw Printing" -msgstr "Ham baskı" +msgstr "" #: printing/page/print/print.js:165 msgid "Raw Printing Setting" msgstr "" +#: public/js/frappe/form/templates/print_layout.html:37 +msgid "Raw Printing Settings" +msgstr "" + #: desk/doctype/console_log/console_log.js:6 msgid "Re-Run in Console" msgstr "" -#: email/doctype/email_account/email_account.py:630 +#: email/doctype/email_account/email_account.py:660 msgid "Re:" msgstr "" #: core/doctype/communication/communication.js:268 -#: public/js/frappe/form/footer/form_timeline.js:564 -#: public/js/frappe/views/communication.js:257 +#: public/js/frappe/form/footer/form_timeline.js:587 +#: public/js/frappe/views/communication.js:347 msgid "Re: {0}" -msgstr "Re: {0}" +msgstr "" #: client.py:459 msgid "Read" -msgstr "Okundu" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Read" -msgstr "Okundu" +msgstr "" #. Label of a Check field in DocType 'Custom DocPerm' #: core/doctype/custom_docperm/custom_docperm.json msgctxt "Custom DocPerm" msgid "Read" -msgstr "Okundu" +msgstr "" #. Label of a Check field in DocType 'DocPerm' #: core/doctype/docperm/docperm.json msgctxt "DocPerm" msgid "Read" -msgstr "Okundu" +msgstr "" #. Label of a Check field in DocType 'DocShare' #: core/doctype/docshare/docshare.json msgctxt "DocShare" msgid "Read" -msgstr "Okundu" +msgstr "" #. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' #: email/doctype/email_flag_queue/email_flag_queue.json msgctxt "Email Flag Queue" msgid "Read" -msgstr "Okundu" +msgstr "" #. Label of a Check field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Read" -msgstr "Okundu" +msgstr "" #. Label of a Check field in DocType 'User Document Type' #: core/doctype/user_document_type/user_document_type.json msgctxt "User Document Type" msgid "Read" -msgstr "Okundu" +msgstr "" #: public/js/form_builder/form_builder.bundle.js:83 msgid "Read Only" @@ -24125,19 +25248,19 @@ msgstr "Salt Okunur" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Read Only Depends On" -msgstr "Salt Okunur" +msgstr "" #. Label of a Code field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Read Only Depends On" -msgstr "Salt Okunur" +msgstr "" #. Label of a Code field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Read Only Depends On" -msgstr "Salt Okunur" +msgstr "" #. Label of a Code field in DocType 'DocField' #: core/doctype/docfield/docfield.json @@ -24145,6 +25268,7 @@ msgctxt "DocField" msgid "Read Only Depends On (JS)" msgstr "" +#: public/js/frappe/ui/toolbar/navbar.html:16 #: templates/includes/navbar/navbar_items.html:97 msgid "Read Only Mode" msgstr "" @@ -24153,25 +25277,25 @@ msgstr "" #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Read Time" -msgstr "Okuma zamanı" +msgstr "" #. Label of a Check field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Read by Recipient" -msgstr "Alıcıya Göre Oku" +msgstr "" #. Label of a Datetime field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Read by Recipient On" -msgstr "Alıcının Açık Oku" +msgstr "" #: desk/doctype/note/note.js:10 msgid "Read mode" msgstr "" -#: utils/safe_exec.py:91 +#: utils/safe_exec.py:90 msgid "Read the documentation to know more" msgstr "" @@ -24198,15 +25322,15 @@ msgctxt "Unhandled Email" msgid "Reason" msgstr "Nedeni" -#: public/js/frappe/views/reports/query_report.js:815 +#: public/js/frappe/views/reports/query_report.js:819 msgid "Rebuild" -msgstr "Rebuild" +msgstr "" #: public/js/frappe/views/treeview.js:492 msgid "Rebuild Tree" msgstr "" -#: utils/nestedset.py:180 +#: utils/nestedset.py:176 msgid "Rebuilding of tree is not supported for {}" msgstr "" @@ -24222,7 +25346,7 @@ msgctxt "Communication" msgid "Received" msgstr "Alındı" -#: integrations/doctype/token_cache/token_cache.py:49 +#: integrations/doctype/token_cache/token_cache.py:50 msgid "Received an invalid token type." msgstr "" @@ -24230,25 +25354,29 @@ msgstr "" #: email/doctype/notification_recipient/notification_recipient.json msgctxt "Notification Recipient" msgid "Receiver By Document Field" -msgstr "Belge Alanına Göre Alıcı" +msgstr "" #. Label of a Link field in DocType 'Notification Recipient' #: email/doctype/notification_recipient/notification_recipient.json msgctxt "Notification Recipient" msgid "Receiver By Role" -msgstr "Role Göre Alıcı" +msgstr "" #. Label of a Data field in DocType 'SMS Settings' #: core/doctype/sms_settings/sms_settings.json msgctxt "SMS Settings" msgid "Receiver Parameter" -msgstr "Alıcı Parametre" +msgstr "" -#: utils/password_strength.py:125 +#: desk/page/user_profile/user_profile.html:39 +msgid "Recent Activity" +msgstr "" + +#: utils/password_strength.py:123 msgid "Recent years are easy to guess." -msgstr "Son yıllarda tahmin etmek kolaydır." +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:516 +#: public/js/frappe/ui/toolbar/search_utils.js:532 msgid "Recents" msgstr "" @@ -24268,7 +25396,7 @@ msgstr "Alıcı" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Recipient Unsubscribed" -msgstr "Alıcı abonelikten ayrıldı" +msgstr "" #. Label of a Small Text field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json @@ -24286,24 +25414,28 @@ msgstr "Alıcılar" #. Name of a DocType #: core/doctype/recorder/recorder.json msgid "Recorder" -msgstr "Ses kayıt cihazı" +msgstr "" #. Name of a DocType #: core/doctype/recorder_query/recorder_query.json msgid "Recorder Query" msgstr "" +#: core/doctype/user_permission/user_permission_help.html:2 +msgid "Records for following doctypes will be filtered" +msgstr "" + #. Option for the 'Color' (Select) field in DocType 'DocType State' #: core/doctype/doctype_state/doctype_state.json msgctxt "DocType State" msgid "Red" -msgstr "" +msgstr "Kırmızı" #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Red" -msgstr "" +msgstr "Kırmızı" #. Label of a Select field in DocType 'Website Route Redirect' #: website/doctype/website_route_redirect/website_route_redirect.json @@ -24321,25 +25453,25 @@ msgstr "" #: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgctxt "OAuth Authorization Code" msgid "Redirect URI Bound To Auth Code" -msgstr "URI Kimlik Doğrulama Kodu için Bound REDIRECT_PATH" +msgstr "" #. Label of a Text field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "Redirect URIs" -msgstr "URI'ları yönlendir" +msgstr "" #. Label of a Data field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Redirect URL" -msgstr "Yönlendirme URL" +msgstr "Yönlendirme URL'si" #. Label of a Small Text field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Redirect URL" -msgstr "Yönlendirme URL" +msgstr "Yönlendirme URL'si" #. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' #: email/doctype/email_group/email_group.json @@ -24351,11 +25483,11 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Redirects" -msgstr "Yönlendirmeler" +msgstr "" -#: sessions.py:148 +#: sessions.py:142 msgid "Redis cache server not running. Please contact Administrator / Tech support" -msgstr "Redis önbellek sunucusu çalışmıyor. Yönetici / Teknik desteğe başvurun" +msgstr "" #: public/js/frappe/form/toolbar.js:462 msgid "Redo" @@ -24369,7 +25501,7 @@ msgstr "" #: core/doctype/report/report.json msgctxt "Report" msgid "Ref DocType" -msgstr "Ref Belge Türü" +msgstr "" #: desk/doctype/form_tour/form_tour.js:38 msgid "Referance Doctype and Dashboard Name both can't be used at the same time." @@ -24426,35 +25558,35 @@ msgstr "Referans Tarihi" #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Reference DocName" -msgstr "Referans DokümanAdı" +msgstr "" #. Label of a Link field in DocType 'Error Log' #: core/doctype/error_log/error_log.json msgctxt "Error Log" msgid "Reference DocType" -msgstr "Referans Belge Türü" +msgstr "" #. Label of a Link field in DocType 'Submission Queue' #: core/doctype/submission_queue/submission_queue.json msgctxt "Submission Queue" msgid "Reference DocType" -msgstr "Referans Belge Türü" +msgstr "" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:25 +#: email/doctype/email_unsubscribe/email_unsubscribe.py:26 msgid "Reference DocType and Reference Name are required" -msgstr "Referans DocType ve Referans Adı gereklidir" +msgstr "" #. Label of a Dynamic Link field in DocType 'Discussion Topic' #: website/doctype/discussion_topic/discussion_topic.json msgctxt "Discussion Topic" msgid "Reference Docname" -msgstr "Referans DokümanAdı" +msgstr "" #. Label of a Dynamic Link field in DocType 'Submission Queue' #: core/doctype/submission_queue/submission_queue.json msgctxt "Submission Queue" msgid "Reference Docname" -msgstr "Referans DokümanAdı" +msgstr "" #: core/doctype/communication/communication.js:143 #: core/report/transaction_log_report/transaction_log_report.py:88 @@ -24467,6 +25599,10 @@ msgctxt "Discussion Topic" msgid "Reference Doctype" msgstr "Referans Belge Türü" +#: automation/doctype/auto_repeat/auto_repeat_schedule.html:4 +msgid "Reference Document" +msgstr "Referans Belgesi" + #. Label of a Data field in DocType 'Access Log' #: core/doctype/access_log/access_log.json msgctxt "Access Log" @@ -24501,13 +25637,13 @@ msgstr "Referans Belgesi" #: core/doctype/document_share_key/document_share_key.json msgctxt "Document Share Key" msgid "Reference Document Name" -msgstr "" +msgstr "Referans Döküman Adı" #. Label of a Dynamic Link field in DocType 'Integration Request' #: integrations/doctype/integration_request/integration_request.json msgctxt "Integration Request" msgid "Reference Document Name" -msgstr "" +msgstr "Referans Döküman Adı" #. Label of a Link field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json @@ -24644,103 +25780,103 @@ msgstr "Referans Belge Türü" #: core/doctype/communication/communication.js:152 #: core/report/transaction_log_report/transaction_log_report.py:94 msgid "Reference Name" -msgstr "referans adı" +msgstr "Referans Adı" #. Label of a Dynamic Link field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Reference Name" -msgstr "referans adı" +msgstr "Referans Adı" #. Label of a Dynamic Link field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Reference Name" -msgstr "referans adı" +msgstr "Referans Adı" #. Label of a Dynamic Link field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Reference Name" -msgstr "referans adı" +msgstr "Referans Adı" #. Label of a Data field in DocType 'Data Import Log' #: core/doctype/data_import_log/data_import_log.json msgctxt "Data Import Log" msgid "Reference Name" -msgstr "referans adı" +msgstr "Referans Adı" #. Label of a Dynamic Link field in DocType 'Email Unsubscribe' #: email/doctype/email_unsubscribe/email_unsubscribe.json msgctxt "Email Unsubscribe" msgid "Reference Name" -msgstr "referans adı" +msgstr "Referans Adı" #. Label of a Data field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json msgctxt "Energy Point Log" msgid "Reference Name" -msgstr "referans adı" +msgstr "Referans Adı" #. Label of a Data field in DocType 'Error Log' #: core/doctype/error_log/error_log.json msgctxt "Error Log" msgid "Reference Name" -msgstr "referans adı" +msgstr "Referans Adı" #. Label of a Dynamic Link field in DocType 'Event Participants' #: desk/doctype/event_participants/event_participants.json msgctxt "Event Participants" msgid "Reference Name" -msgstr "referans adı" +msgstr "Referans Adı" #. Label of a Dynamic Link field in DocType 'ToDo' #: desk/doctype/todo/todo.json msgctxt "ToDo" msgid "Reference Name" -msgstr "referans adı" +msgstr "Referans Adı" #. Label of a Dynamic Link field in DocType 'Workflow Action' #: workflow/doctype/workflow_action/workflow_action.json msgctxt "Workflow Action" msgid "Reference Name" -msgstr "referans adı" +msgstr "Referans Adı" #. Label of a Read Only field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Reference Owner" -msgstr "Referans Sahibi" +msgstr "" #. Label of a Data field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Reference Owner" -msgstr "Referans Sahibi" +msgstr "" #. Label of a Read Only field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Reference Owner" -msgstr "Referans Sahibi" +msgstr "" #. Label of a Data field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Reference Report" -msgstr "Referans Raporu" +msgstr "" #. Label of a Link field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Reference Report" -msgstr "Referans Raporu" +msgstr "" #. Label of a Data field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Reference Report" -msgstr "Referans Raporu" +msgstr "" #. Label of a Link field in DocType 'ToDo' #: desk/doctype/todo/todo.json @@ -24748,87 +25884,94 @@ msgctxt "ToDo" msgid "Reference Type" msgstr "Referans Tipi" -#: social/doctype/energy_point_rule/energy_point_rule.py:144 +#: social/doctype/energy_point_rule/energy_point_rule.py:145 msgid "Reference document has been cancelled" -msgstr "Referans doküman iptal edildi" +msgstr "" #. Label of a Dynamic Link field in DocType 'View Log' #: core/doctype/view_log/view_log.json msgctxt "View Log" msgid "Reference name" -msgstr "Referans Adı" +msgstr "" #: templates/emails/auto_reply.html:3 msgid "Reference: {0} {1}" -msgstr "Referans: {0} {1}" +msgstr "" #: website/report/website_analytics/website_analytics.js:37 msgid "Referrer" -msgstr "Yönlendiren" +msgstr "" #. Label of a Data field in DocType 'Web Page View' #: website/doctype/web_page_view/web_page_view.json msgctxt "Web Page View" msgid "Referrer" -msgstr "Yönlendiren" +msgstr "" #: printing/page/print/print.js:73 public/js/frappe/desk.js:133 -#: public/js/frappe/form/form.js:1174 public/js/frappe/list/base_list.js:65 -#: public/js/frappe/views/reports/query_report.js:1612 +#: public/js/frappe/form/form.js:1174 +#: public/js/frappe/form/templates/print_layout.html:6 +#: public/js/frappe/list/base_list.js:66 +#: public/js/frappe/views/reports/query_report.js:1629 #: public/js/frappe/views/treeview.js:479 #: public/js/frappe/widgets/chart_widget.js:290 -#: public/js/frappe/widgets/number_card_widget.js:307 +#: public/js/frappe/widgets/number_card_widget.js:324 msgid "Refresh" msgstr "Yenile" #: core/page/dashboard_view/dashboard_view.js:177 msgid "Refresh All" -msgstr "Hepsini yenile" +msgstr "" #. Label of a Button field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Refresh Google Sheet" -msgstr "Google Sayfasını Yenile" +msgstr "" #. Label of a Password field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" msgid "Refresh Token" -msgstr "Jetonu Yenile" +msgstr "Token Yenile" #. Label of a Password field in DocType 'Google Contacts' #: integrations/doctype/google_contacts/google_contacts.json msgctxt "Google Contacts" msgid "Refresh Token" -msgstr "Jetonu Yenile" +msgstr "Token Yenile" #. Label of a Data field in DocType 'Google Drive' #: integrations/doctype/google_drive/google_drive.json msgctxt "Google Drive" msgid "Refresh Token" -msgstr "Jetonu Yenile" +msgstr "Token Yenile" #. Label of a Data field in DocType 'OAuth Bearer Token' #: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgctxt "OAuth Bearer Token" msgid "Refresh Token" -msgstr "Jetonu Yenile" +msgstr "Token Yenile" #. Label of a Password field in DocType 'Token Cache' #: integrations/doctype/token_cache/token_cache.json msgctxt "Token Cache" msgid "Refresh Token" -msgstr "Jetonu Yenile" +msgstr "Token Yenile" + +#: public/js/frappe/list/list_view.js:505 +msgctxt "Document count in list view" +msgid "Refreshing" +msgstr "" #: core/doctype/system_settings/system_settings.js:52 -#: core/doctype/user/user.js:345 desk/page/setup_wizard/setup_wizard.js:204 +#: core/doctype/user/user.js:350 desk/page/setup_wizard/setup_wizard.js:204 msgid "Refreshing..." -msgstr "Yenileniyor ..." +msgstr "" -#: core/doctype/user/user.py:979 +#: core/doctype/user/user.py:1019 msgid "Registered but disabled" -msgstr "Tescil edilmiş ancak engelli" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json @@ -24842,6 +25985,16 @@ msgctxt "Translation" msgid "Rejected" msgstr "Reddedildi" +#: integrations/doctype/push_notification_settings/push_notification_settings.py:30 +msgid "Relay Server URL missing" +msgstr "" + +#. Label of a Section Break field in DocType 'Push Notification Settings' +#: integrations/doctype/push_notification_settings/push_notification_settings.json +msgctxt "Push Notification Settings" +msgid "Relay Settings" +msgstr "" + #. Group in Package's connections #: core/doctype/package/package.json msgctxt "Package" @@ -24857,32 +26010,36 @@ msgstr "" #: core/doctype/communication/communication.js:48 #: core/doctype/communication/communication.js:159 msgid "Relink" -msgstr "Yeniden bağla" +msgstr "" #: core/doctype/communication/communication.js:138 msgid "Relink Communication" -msgstr "Yeniden Bağla Haberleşme" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Relinked" -msgstr "Yeniden bağlandı" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Relinked" -msgstr "Yeniden bağlandı" +msgstr "" #. Label of a standard navbar item #. Type: Action #: custom/doctype/customize_form/customize_form.js:120 hooks.py #: public/js/frappe/form/toolbar.js:408 msgid "Reload" -msgstr "Yeniden Yükle" +msgstr "" -#: public/js/frappe/list/base_list.js:239 +#: public/js/frappe/form/controls/attach.js:16 +msgid "Reload File" +msgstr "" + +#: public/js/frappe/list/base_list.js:242 msgid "Reload List" msgstr "" @@ -24894,23 +26051,23 @@ msgstr "" #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Remember Last Selected Value" -msgstr "Son Seçilmiş Değer hatırla" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Remember Last Selected Value" -msgstr "Son Seçilmiş Değer hatırla" +msgstr "" #: public/js/frappe/form/reminders.js:33 msgid "Remind At" -msgstr "" +msgstr "Hatırlatma Zamanı" #. Label of a Datetime field in DocType 'Reminder' #: automation/doctype/reminder/reminder.json msgctxt "Reminder" msgid "Remind At" -msgstr "" +msgstr "Hatırlatma Zamanı" #: public/js/frappe/form/toolbar.js:436 msgid "Remind Me" @@ -24918,14 +26075,14 @@ msgstr "" #: public/js/frappe/form/reminders.js:13 msgid "Remind Me In" -msgstr "" +msgstr "Bana Hatırlat" #. Name of a DocType #: automation/doctype/reminder/reminder.json msgid "Reminder" msgstr "" -#: automation/doctype/reminder/reminder.py:38 +#: automation/doctype/reminder/reminder.py:39 msgid "Reminder cannot be created in past." msgstr "" @@ -24933,49 +26090,55 @@ msgstr "" msgid "Reminder set at {0}" msgstr "" +#: public/js/frappe/form/templates/form_sidebar.html:14 +#: public/js/frappe/ui/filters/edit_filter.html:4 +#: public/js/frappe/ui/group_by/group_by.html:4 +msgid "Remove" +msgstr "" + #: core/doctype/rq_job/rq_job_list.js:8 msgid "Remove Failed Jobs" msgstr "" #: printing/page/print_format_builder/print_format_builder.js:488 msgid "Remove Field" -msgstr "Field kaldır" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:427 msgid "Remove Section" -msgstr "Bölüm kaldır" +msgstr "" #: custom/doctype/customize_form/customize_form.js:138 msgid "Remove all customizations?" -msgstr "Tüm özelleştirmeleri kaldırmak?" +msgstr "" #: public/js/frappe/utils/datatable.js:9 msgid "Remove column" -msgstr "" +msgstr "Sütunu kaldır" #: core/doctype/file/file.py:155 msgid "Removed {0}" -msgstr "Kaldırıldı {0}" +msgstr "" -#: custom/doctype/custom_field/custom_field.js:133 +#: custom/doctype/custom_field/custom_field.js:137 #: public/js/frappe/form/toolbar.js:234 public/js/frappe/form/toolbar.js:238 -#: public/js/frappe/form/toolbar.js:398 public/js/frappe/model/model.js:737 +#: public/js/frappe/form/toolbar.js:398 public/js/frappe/model/model.js:742 #: public/js/frappe/views/treeview.js:295 msgid "Rename" msgstr "Yeniden Adlandır" -#: custom/doctype/custom_field/custom_field.js:115 -#: custom/doctype/custom_field/custom_field.js:132 +#: custom/doctype/custom_field/custom_field.js:116 +#: custom/doctype/custom_field/custom_field.js:136 msgid "Rename Fieldname" msgstr "" -#: public/js/frappe/model/model.js:724 +#: public/js/frappe/model/model.js:729 msgid "Rename {0}" -msgstr "Rename {0}" +msgstr "" -#: core/doctype/doctype/doctype.py:688 +#: core/doctype/doctype/doctype.py:689 msgid "Renamed files and replaced code in controllers, please check!" -msgstr "Yeniden adlandırılmış dosyalar ve değiştirilen kodları kontrol cihazlarında kontrol edin!" +msgstr "" #: core/doctype/communication/communication.js:43 desk/doctype/todo/todo.js:36 msgid "Reopen" @@ -24983,7 +26146,7 @@ msgstr "Yeniden aç" #: public/js/frappe/form/toolbar.js:479 msgid "Repeat" -msgstr "Tekrarla" +msgstr "" #. Label of a Check field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -24995,19 +26158,19 @@ msgstr "" #: desk/doctype/event/event.json msgctxt "Event" msgid "Repeat On" -msgstr "Tekrar açık" +msgstr "" #. Label of a Date field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Repeat Till" -msgstr "Till tekrarlayın" +msgstr "" #. Label of a Int field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Repeat on Day" -msgstr "Günde tekrarlayın" +msgstr "" #. Label of a Table field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json @@ -25019,52 +26182,52 @@ msgstr "" #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Repeat on Last Day of the Month" -msgstr "Ayın Son Gününde Tekrarla" +msgstr "" #. Label of a Check field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Repeat this Event" -msgstr "Bu olay tekrarlayın" +msgstr "" -#: utils/password_strength.py:112 +#: utils/password_strength.py:110 msgid "Repeats like \"aaa\" are easy to guess" -msgstr "'aaa' gibi tekrarları tahmin etmek kolaydır" +msgstr "" -#: utils/password_strength.py:107 +#: utils/password_strength.py:105 msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" -msgstr "'Abcabcabc' sadece biraz zor 'abc' den tahmin gibi tekrarlar" +msgstr "" #: public/js/frappe/form/sidebar/form_sidebar.js:135 msgid "Repeats {0}" -msgstr "{0} tekrarları" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Replied" -msgstr "Cevaplandı" +msgstr "Yanıtlandı" #. Option for the 'Status' (Select) field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Replied" -msgstr "Cevaplandı" +msgstr "Yanıtlandı" #: core/doctype/communication/communication.js:57 #: public/js/frappe/form/footer/form_timeline.js:550 msgid "Reply" -msgstr "Cevapla" +msgstr "" #. Label of a Text Editor field in DocType 'Discussion Reply' #: website/doctype/discussion_reply/discussion_reply.json msgctxt "Discussion Reply" msgid "Reply" -msgstr "Cevapla" +msgstr "" #: core/doctype/communication/communication.js:62 msgid "Reply All" -msgstr "Hepsini cevapla" +msgstr "" #. Name of a DocType #: core/doctype/report/report.json public/js/frappe/request.js:610 @@ -25148,111 +26311,111 @@ msgstr "Rapor" #: public/js/frappe/list/list_view_select.js:66 msgid "Report Builder" -msgstr "Rapor Oluşturucu" +msgstr "" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Report Builder" -msgstr "Rapor Oluşturucu" +msgstr "" #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Report Builder" -msgstr "Rapor Oluşturucu" +msgstr "" #. Name of a DocType #: core/doctype/report_column/report_column.json msgid "Report Column" -msgstr "Rapor Sütunu" +msgstr "" #. Label of a Data field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Report Description" -msgstr "Rapor açıklaması" +msgstr "" #: core/doctype/report/report.py:148 msgid "Report Document Error" -msgstr "Belge Hatasını Bildir" +msgstr "" #. Name of a DocType #: core/doctype/report_filter/report_filter.json msgid "Report Filter" -msgstr "Rapor Filtresi" +msgstr "" #. Label of a Section Break field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Report Filters" -msgstr "Rapor Filtreler" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Report Hide" -msgstr "Rapor Gizle" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Report Hide" -msgstr "Rapor Gizle" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Report Hide" -msgstr "Rapor Gizle" +msgstr "" #. Label of a Section Break field in DocType 'Access Log' #: core/doctype/access_log/access_log.json msgctxt "Access Log" msgid "Report Information" -msgstr "Rapor Bilgisi" +msgstr "" #. Name of a role #: core/doctype/report/report.json #: email/doctype/auto_email_report/auto_email_report.json msgid "Report Manager" -msgstr "Rapor Yöneticisi" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1793 +#: public/js/frappe/views/reports/query_report.js:1810 msgid "Report Name" -msgstr "Rapor Adı" +msgstr "" #. Label of a Data field in DocType 'Access Log' #: core/doctype/access_log/access_log.json msgctxt "Access Log" msgid "Report Name" -msgstr "Rapor Adı" +msgstr "" #. Label of a Link field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Report Name" -msgstr "Rapor Adı" +msgstr "" #. Label of a Link field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Report Name" -msgstr "Rapor Adı" +msgstr "" #. Label of a Data field in DocType 'Prepared Report' #: core/doctype/prepared_report/prepared_report.json msgctxt "Prepared Report" msgid "Report Name" -msgstr "Rapor Adı" +msgstr "" #. Label of a Data field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Report Name" -msgstr "Rapor Adı" +msgstr "" -#: desk/doctype/number_card/number_card.py:65 +#: desk/doctype/number_card/number_card.py:66 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -25260,7 +26423,7 @@ msgstr "" #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Report Reference Doctype" -msgstr "Rapor Referans Dokümanı" +msgstr "" #. Label of a Read Only field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json @@ -25280,66 +26443,66 @@ msgctxt "Report" msgid "Report Type" msgstr "Rapor Türü" -#: core/doctype/doctype/doctype.py:1750 +#: core/doctype/doctype/doctype.py:1748 msgid "Report cannot be set for Single types" -msgstr "Rapor Tek türleri için ayarlanamaz" +msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:208 #: desk/doctype/number_card/number_card.js:191 msgid "Report has no data, please modify the filters or change the Report Name" -msgstr "Raporda veri yok, lütfen filtreleri değiştirin veya Rapor Adını değiştirin" +msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:196 #: desk/doctype/number_card/number_card.js:186 msgid "Report has no numeric fields, please change the Report Name" -msgstr "Raporda sayısal alan yok, lütfen Rapor Adını değiştirin" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:935 +#: public/js/frappe/views/reports/query_report.js:939 msgid "Report initiated, click to view status" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:102 +#: email/doctype/auto_email_report/auto_email_report.py:108 msgid "Report limit reached" msgstr "" -#: core/doctype/prepared_report/prepared_report.py:202 +#: core/doctype/prepared_report/prepared_report.py:203 msgid "Report timed out." msgstr "" -#: desk/query_report.py:568 +#: desk/query_report.py:561 msgid "Report updated successfully" -msgstr "Rapor başarıyla güncellendi" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1283 +#: public/js/frappe/views/reports/report_view.js:1280 msgid "Report was not saved (there were errors)" -msgstr "Rapor kaydedilmedi (hatalar vardı)" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1831 +#: public/js/frappe/views/reports/query_report.js:1848 msgid "Report with more than 10 columns looks better in Landscape mode." -msgstr "Manzara modunda, 10'dan fazla sütunlu rapor daha iyi görünür." +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:235 -#: public/js/frappe/ui/toolbar/search_utils.js:236 +#: public/js/frappe/ui/toolbar/search_utils.js:251 +#: public/js/frappe/ui/toolbar/search_utils.js:252 msgid "Report {0}" -msgstr "Rapor {0}" +msgstr "" -#: desk/reportview.py:326 +#: desk/reportview.py:343 msgid "Report {0} deleted" msgstr "" #: desk/query_report.py:50 msgid "Report {0} is disabled" -msgstr "Rapor {0} devre dışı" +msgstr "" -#: desk/reportview.py:303 +#: desk/reportview.py:320 msgid "Report {0} saved" msgstr "" #: public/js/frappe/views/reports/report_view.js:20 msgid "Report:" -msgstr "Rapor:" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:531 +#: public/js/frappe/ui/toolbar/search_utils.js:547 msgid "Reports" msgstr "Raporlar" @@ -25351,11 +26514,21 @@ msgstr "Raporlar" #: patches/v14_0/update_workspace2.py:50 msgid "Reports & Masters" -msgstr "Raporlar ve Masterlar" +msgstr "Raporlar & Ana Veriler" -#: public/js/frappe/views/reports/query_report.js:851 +#: public/js/frappe/views/reports/query_report.js:855 msgid "Reports already in Queue" -msgstr "Zaten Kuyrukta olan raporlar" +msgstr "" + +#. Description of a DocType +#: core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. Description of a DocType +#: workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Represents the states allowed in one document and role assigned to change the state." +msgstr "" #: www/me.html:66 msgid "Request Account Deletion" @@ -25371,7 +26544,7 @@ msgstr "" #: integrations/doctype/integration_request/integration_request.json msgctxt "Integration Request" msgid "Request Data" -msgstr "Veri İste" +msgstr "" #. Label of a Data field in DocType 'Integration Request' #: integrations/doctype/integration_request/integration_request.json @@ -25413,11 +26586,11 @@ msgstr "" #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Request Structure" -msgstr "İstek Yapısı" +msgstr "" #: public/js/frappe/request.js:228 msgid "Request Timed Out" -msgstr "İstek zaman aşımına uğradı" +msgstr "" #: public/js/frappe/request.js:241 msgid "Request Timeout" @@ -25429,23 +26602,23 @@ msgctxt "Webhook" msgid "Request Timeout" msgstr "" -#. Label of a Data field in DocType 'Webhook' +#. Label of a Small Text field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Request URL" -msgstr "URL isteğinde bulun" +msgstr "" #. Label of a Code field in DocType 'SMS Log' #: core/doctype/sms_log/sms_log.json msgctxt "SMS Log" msgid "Requested Numbers" -msgstr "" +msgstr "Talep Sayıları" #. Label of a Select field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "Require Trusted Certificate" -msgstr "Güvenilir Sertifika İste" +msgstr "" #. Description of the 'LDAP search path for Groups' (Data) field in DocType #. 'LDAP Settings' @@ -25463,7 +26636,7 @@ msgstr "" #: core/doctype/communication/communication.js:279 msgid "Res: {0}" -msgstr "Res: {0}" +msgstr "" #: desk/doctype/form_tour/form_tour.js:101 #: desk/doctype/global_search_settings/global_search_settings.js:19 @@ -25483,7 +26656,7 @@ msgstr "" #: public/js/frappe/widgets/chart_widget.js:305 msgid "Reset Chart" -msgstr "Grafiği Sıfırla" +msgstr "" #: public/js/frappe/views/dashboard/dashboard_view.js:38 msgid "Reset Dashboard Customizations" @@ -25491,30 +26664,30 @@ msgstr "" #: public/js/frappe/list/list_settings.js:227 msgid "Reset Fields" -msgstr "Alanları Sıfırla" +msgstr "" -#: core/doctype/user/user.js:161 core/doctype/user/user.js:164 +#: core/doctype/user/user.js:165 core/doctype/user/user.js:168 msgid "Reset LDAP Password" -msgstr "LDAP Parolasını Sıfırla" +msgstr "" #: custom/doctype/customize_form/customize_form.js:128 msgid "Reset Layout" msgstr "" -#: core/doctype/user/user.js:212 +#: core/doctype/user/user.js:216 msgid "Reset OTP Secret" -msgstr "OTP Anahtarını Sıfırla" +msgstr "" -#: core/doctype/user/user.js:145 www/login.html:179 www/me.html:35 +#: core/doctype/user/user.js:149 www/login.html:179 www/me.html:35 #: www/me.html:44 www/update-password.html:3 www/update-password.html:9 msgid "Reset Password" -msgstr "Şifreyi Sıfırla" +msgstr "" #. Label of a Data field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Reset Password Key" -msgstr "Şifre Anahtarını Sıfırla" +msgstr "" #. Label of a Duration field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -25530,45 +26703,45 @@ msgstr "" #: core/page/permission_manager/permission_manager.js:109 msgid "Reset Permissions for {0}?" -msgstr "{0} için İzinleri Sıfırla?" +msgstr "" #: public/js/frappe/utils/datatable.js:8 msgid "Reset sorting" -msgstr "" +msgstr "Sıralamayı sıfırla" #: www/me.html:36 msgid "Reset the password for your account" msgstr "" -#: public/js/frappe/form/grid_row.js:409 +#: public/js/frappe/form/grid_row.js:410 msgid "Reset to default" -msgstr "Varsayılana Sıfırla" +msgstr "" #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 msgid "Reset to defaults" -msgstr "Varsayılana Sıfırla" +msgstr "" #: templates/emails/password_reset.html:3 msgid "Reset your password" -msgstr "Şifrenizi sıfırlayın" +msgstr "" #. Label of a Text Editor field in DocType 'Email Template' #: email/doctype/email_template/email_template.json msgctxt "Email Template" msgid "Response" -msgstr "Tepki" +msgstr "" #. Label of a Section Break field in DocType 'Integration Request' #: integrations/doctype/integration_request/integration_request.json msgctxt "Integration Request" msgid "Response" -msgstr "Tepki" +msgstr "" #. Label of a Code field in DocType 'Webhook Request Log' #: integrations/doctype/webhook_request_log/webhook_request_log.json msgctxt "Webhook Request Log" msgid "Response" -msgstr "Tepki" +msgstr "" #. Label of a Code field in DocType 'Email Template' #: email/doctype/email_template/email_template.json @@ -25580,7 +26753,7 @@ msgstr "" #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "Response Type" -msgstr "Yanıt Türü" +msgstr "" #: public/js/frappe/ui/notifications/notifications.js:400 msgid "Rest of the day" @@ -25589,97 +26762,98 @@ msgstr "" #: core/doctype/deleted_document/deleted_document.js:11 #: core/doctype/deleted_document/deleted_document_list.js:48 msgid "Restore" -msgstr "Geri yükle" +msgstr "" -#: core/page/permission_manager/permission_manager.js:492 +#: core/page/permission_manager/permission_manager.js:503 msgid "Restore Original Permissions" -msgstr "Orijinal izinler Restore" +msgstr "" #: website/doctype/portal_settings/portal_settings.js:20 msgid "Restore to default settings?" -msgstr "Varsayılan ayarları geri yükle?" +msgstr "" #. Label of a Check field in DocType 'Deleted Document' #: core/doctype/deleted_document/deleted_document.json msgctxt "Deleted Document" msgid "Restored" -msgstr "Geri yüklendi" +msgstr "" -#: core/doctype/deleted_document/deleted_document.py:73 +#: core/doctype/deleted_document/deleted_document.py:74 msgid "Restoring Deleted Document" -msgstr "Silinen Belgeyi Geri Yükleme" +msgstr "" #. Label of a Small Text field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Restrict IP" -msgstr "IP sınırla" +msgstr "" #. Label of a Link field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Restrict To Domain" -msgstr "Etki Alanıyla Sınırla" +msgstr "" #. Label of a Link field in DocType 'Module Def' #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Restrict To Domain" -msgstr "Etki Alanıyla Sınırla" +msgstr "" #. Label of a Link field in DocType 'Page' #: core/doctype/page/page.json msgctxt "Page" msgid "Restrict To Domain" -msgstr "Etki Alanıyla Sınırla" +msgstr "" #. Label of a Link field in DocType 'Role' #: core/doctype/role/role.json msgctxt "Role" msgid "Restrict To Domain" -msgstr "Etki Alanıyla Sınırla" +msgstr "" #. Label of a Link field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Restrict to Domain" -msgstr "Alana Kısıtla" +msgstr "" #. Label of a Link field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Restrict to Domain" -msgstr "Alana Kısıtla" +msgstr "" #. Description of the 'Restrict IP' (Small Text) field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" 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 "Sadece bu IP adresinden kullanıcı kısıtlayın. Çoklu IP adresleri virgül ile ayırarak eklenebilir. Ayrıca gibi kısmi IP adresleri (111.111.111) kabul" +msgstr "" -#: public/js/frappe/list/list_view.js:172 +#: public/js/frappe/list/list_view.js:173 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" -msgstr "Kısıtlamalar" +msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:354 -#: public/js/frappe/ui/toolbar/awesome_bar.js:369 +#: public/js/frappe/ui/toolbar/awesome_bar.js:356 +#: public/js/frappe/ui/toolbar/awesome_bar.js:371 msgid "Result" msgstr "" #: email/doctype/email_queue/email_queue_list.js:27 msgid "Resume Sending" -msgstr "gönderme Özgeçmiş" +msgstr "" #: core/doctype/data_import/data_import.js:110 +#: desk/page/setup_wizard/setup_wizard.js:285 msgid "Retry" -msgstr "Tekrar dene" +msgstr "" #. Label of a Int field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Retry" -msgstr "Tekrar dene" +msgstr "" #: email/doctype/email_queue/email_queue_list.js:47 msgid "Retry Sending" @@ -25687,40 +26861,40 @@ msgstr "" #: www/qrcode.html:15 msgid "Return to the Verification screen and enter the code displayed by your authentication app" -msgstr "Doğrulama ekranına geri dönün ve kimlik doğrulama uygulamanız tarafından görüntülenen kodu girin" +msgstr "" #. Label of a Check field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "Reverse Icon Color" -msgstr "Simge Renk Ters" +msgstr "" #: social/doctype/energy_point_log/energy_point_log.js:10 #: social/doctype/energy_point_log/energy_point_log.js:15 msgid "Revert" -msgstr "Eski haline çevir" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json msgctxt "Energy Point Log" msgid "Revert" -msgstr "Eski haline çevir" +msgstr "" #. Label of a Link field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json msgctxt "Energy Point Log" msgid "Revert Of" -msgstr "Geri Dön" +msgstr "" #. Label of a Check field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json msgctxt "Energy Point Log" msgid "Reverted" -msgstr "Geri alındı" +msgstr "" -#: database/schema.py:162 +#: database/schema.py:159 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." -msgstr "'{2}' içindeki '{1}' için uzunluk {0} olarak geri döndürülüyor. Uzunluğu {3} olarak ayarlamak verilerin kesilmesine neden olur." +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json @@ -25731,19 +26905,27 @@ msgstr "Gözden geçir" #. Name of a DocType #: social/doctype/review_level/review_level.json msgid "Review Level" -msgstr "İnceleme Seviyesi" +msgstr "" #. Label of a Table field in DocType 'Energy Point Settings' #: social/doctype/energy_point_settings/energy_point_settings.json msgctxt "Energy Point Settings" msgid "Review Levels" -msgstr "Seviyeleri gözden geçir" +msgstr "" + +#: desk/page/user_profile/user_profile_controller.js:402 +msgid "Review Points" +msgstr "" #. Label of a Int field in DocType 'Review Level' #: social/doctype/review_level/review_level.json msgctxt "Review Level" msgid "Review Points" -msgstr "Değerlendirme Noktaları" +msgstr "" + +#: public/js/frappe/form/templates/form_sidebar.html:87 +msgid "Reviews" +msgstr "Yorumlar" #. Label of a Data field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json @@ -25753,54 +26935,58 @@ msgstr "" #: www/third_party_apps.html:45 msgid "Revoke" -msgstr "Geri al" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' #: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgctxt "OAuth Bearer Token" msgid "Revoked" -msgstr "iptal" +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "Rich Text" +msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "Rich Text" -msgstr "Zengin Metin" +msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Rich Text" -msgstr "Zengin Metin" +msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Rich Text" -msgstr "Zengin Metin" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Right" -msgstr "Sağ" +msgstr "" #. Option for the 'Align' (Select) field in DocType 'Letter Head' #: printing/doctype/letter_head/letter_head.json msgctxt "Letter Head" msgid "Right" -msgstr "Sağ" +msgstr "" #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Right" -msgstr "Sağ" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:484 msgctxt "alignment" msgid "Right" -msgstr "Sağ" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -25818,81 +27004,81 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Robots.txt" -msgstr "robots.txt" +msgstr "" #. Name of a DocType #: core/doctype/role/role.json core/doctype/user_type/user_type.py:109 #: core/page/permission_manager/permission_manager.js:212 -#: core/page/permission_manager/permission_manager.js:439 +#: core/page/permission_manager/permission_manager.js:450 msgid "Role" -msgstr "Roller" +msgstr "" #. Label of a Link field in DocType 'Custom DocPerm' #: core/doctype/custom_docperm/custom_docperm.json msgctxt "Custom DocPerm" msgid "Role" -msgstr "Roller" +msgstr "" #. Label of a Table field in DocType 'Custom Role' #: core/doctype/custom_role/custom_role.json msgctxt "Custom Role" msgid "Role" -msgstr "Roller" +msgstr "" #. Label of a Link field in DocType 'DocPerm' #: core/doctype/docperm/docperm.json msgctxt "DocPerm" msgid "Role" -msgstr "Roller" +msgstr "" #. Label of a Link field in DocType 'Has Role' #: core/doctype/has_role/has_role.json msgctxt "Has Role" msgid "Role" -msgstr "Roller" +msgstr "" #. Label of a Link field in DocType 'Onboarding Permission' #: desk/doctype/onboarding_permission/onboarding_permission.json msgctxt "Onboarding Permission" msgid "Role" -msgstr "Roller" +msgstr "" #. Label of a Link field in DocType 'Portal Menu Item' #: website/doctype/portal_menu_item/portal_menu_item.json msgctxt "Portal Menu Item" msgid "Role" -msgstr "Roller" +msgstr "" #. Label of a Link field in DocType 'Review Level' #: social/doctype/review_level/review_level.json msgctxt "Review Level" msgid "Role" -msgstr "Roller" +msgstr "" #. Label of a Link in the Users Workspace #. Label of a shortcut in the Users Workspace #: core/workspace/users/users.json msgctxt "Role" msgid "Role" -msgstr "Roller" +msgstr "" #. Label of a Link field in DocType 'ToDo' #: desk/doctype/todo/todo.json msgctxt "ToDo" msgid "Role" -msgstr "Roller" +msgstr "" #. Label of a Link field in DocType 'User Type' #: core/doctype/user_type/user_type.json msgctxt "User Type" msgid "Role" -msgstr "Roller" +msgstr "" #. Label of a Link field in DocType 'Workflow Action Permitted Role' #: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgctxt "Workflow Action Permitted Role" msgid "Role" -msgstr "Roller" +msgstr "" #: core/doctype/role/role.js:8 msgid "Role 'All' will be given to all system + website users." @@ -25906,172 +27092,188 @@ msgstr "" #: core/doctype/role/role.json msgctxt "Role" msgid "Role Name" -msgstr "Rol Adı" +msgstr "" #. Label of a Data field in DocType 'Role Profile' #: core/doctype/role_profile/role_profile.json msgctxt "Role Profile" msgid "Role Name" -msgstr "Rol Adı" +msgstr "" #. Name of a DocType #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Role Permission for Page and Report" -msgstr "Sayfa ve Rapor için Rol İzni" +msgstr "" #. Label of a Link in the Users Workspace #: core/workspace/users/users.json msgctxt "Role Permission for Page and Report" msgid "Role Permission for Page and Report" -msgstr "Sayfa ve Rapor için Rol İzni" +msgstr "" -#: public/js/frappe/roles_editor.js:100 +#: public/js/frappe/roles_editor.js:103 msgid "Role Permissions" -msgstr "Rol İzinleri" +msgstr "" #. Label of a Section Break field in DocType 'User Document Type' #: core/doctype/user_document_type/user_document_type.json msgctxt "User Document Type" msgid "Role Permissions" -msgstr "Rol İzinleri" +msgstr "" #. Label of a Link in the Users Workspace #: core/page/permission_manager/permission_manager.js:4 #: core/workspace/users/users.json msgid "Role Permissions Manager" -msgstr "Rol İzin Yöneticisi" +msgstr "" -#: public/js/frappe/list/list_view.js:1650 +#: public/js/frappe/list/list_view.js:1696 msgctxt "Button in list view menu" msgid "Role Permissions Manager" -msgstr "Rol İzin Yöneticisi" +msgstr "" #. Name of a DocType #: core/doctype/role_profile/role_profile.json msgid "Role Profile" -msgstr "Rol Profili" +msgstr "" #. Label of a Link in the Users Workspace #: core/workspace/users/users.json msgctxt "Role Profile" msgid "Role Profile" -msgstr "Rol Profili" +msgstr "" #. Label of a Link field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Role Profile" -msgstr "Rol Profili" +msgstr "" + +#. Label of a Link field in DocType 'User Role Profile' +#: core/doctype/user_role_profile/user_role_profile.json +msgctxt "User Role Profile" +msgid "Role Profile" +msgstr "" + +#. Label of a Table MultiSelect field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Role Profiles" +msgstr "" #. Label of a Section Break field in DocType 'Custom DocPerm' #: core/doctype/custom_docperm/custom_docperm.json msgctxt "Custom DocPerm" msgid "Role and Level" -msgstr "Rol ve Seviye" +msgstr "" #. Label of a Section Break field in DocType 'DocPerm' #: core/doctype/docperm/docperm.json msgctxt "DocPerm" msgid "Role and Level" -msgstr "Rol ve Seviye" +msgstr "" -#: core/doctype/user/user.py:314 +#: core/doctype/user/user.py:350 msgid "Role has been set as per the user type {0}" msgstr "" #: core/page/permission_manager/permission_manager.js:59 msgid "Roles" -msgstr "Roller" +msgstr "" #. Label of a Section Break field in DocType 'Custom HTML Block' #. Label of a Table field in DocType 'Custom HTML Block' #: desk/doctype/custom_html_block/custom_html_block.json msgctxt "Custom HTML Block" msgid "Roles" -msgstr "Roller" +msgstr "" #. Label of a Table field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Roles" -msgstr "Roller" +msgstr "" #. Label of a Table field in DocType 'Page' #: core/doctype/page/page.json msgctxt "Page" msgid "Roles" -msgstr "Roller" +msgstr "" #. Label of a Table field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Roles" -msgstr "Roller" +msgstr "" #. Label of a Table field in DocType 'Role Permission for Page and Report' #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgctxt "Role Permission for Page and Report" msgid "Roles" -msgstr "Roller" +msgstr "" #. Label of a Section Break field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Roles" -msgstr "Roller" +msgstr "" #. Label of a Table field in DocType 'Workspace' #. Label of a Tab Break field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Roles" -msgstr "Roller" +msgstr "" #. Label of a Tab Break field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Roles & Permissions" -msgstr "Roller ve İzinler" +msgstr "" #. Label of a Table field in DocType 'Role Profile' #: core/doctype/role_profile/role_profile.json msgctxt "Role Profile" msgid "Roles Assigned" -msgstr "Atanan Rolleri" +msgstr "" #. Label of a Table field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Roles Assigned" -msgstr "Atanan Rolleri" +msgstr "" #. Label of a HTML field in DocType 'Role Profile' #: core/doctype/role_profile/role_profile.json msgctxt "Role Profile" msgid "Roles HTML" -msgstr "Roller HTML" +msgstr "" #. Label of a HTML field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Roles HTML" -msgstr "Roller HTML" +msgstr "" #. Label of a HTML field in DocType 'Role Permission for Page and Report' #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgctxt "Role Permission for Page and Report" msgid "Roles Html" -msgstr "Roller Html" +msgstr "" -#: utils/nestedset.py:283 +#: core/page/permission_manager/permission_manager_help.html:7 +msgid "Roles can be set for users from their User page." +msgstr "" + +#: utils/nestedset.py:277 msgid "Root {0} cannot be deleted" -msgstr "Kök {0} silinemez" +msgstr "" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Round Robin" -msgstr "Yuvarlak Robin" +msgstr "" #. Label of a Select field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -26167,39 +27369,43 @@ msgstr "Rota" #. Name of a DocType #: desk/doctype/route_history/route_history.json msgid "Route History" -msgstr "Rota Geçmişi" +msgstr "" #. Linked DocType in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "Route History" -msgstr "Rota Geçmişi" +msgstr "" #. Label of a Table field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Route Redirects" -msgstr "Rota Yönlendirmeleri" +msgstr "" #. Description of the 'Home Page' (Data) field in DocType 'Role' #: core/doctype/role/role.json msgctxt "Role" -msgid "Route: Example \"/desk\"" -msgstr "Rota: Örnek '/ masa'" +msgid "Route: Example \"/app\"" +msgstr "" -#: model/base_document.py:710 model/base_document.py:751 model/document.py:591 +#: model/base_document.py:731 model/base_document.py:772 model/document.py:612 msgid "Row" -msgstr "Satır" +msgstr "" -#: core/doctype/doctype/doctype.py:1772 core/doctype/doctype/doctype.py:1782 +#: core/doctype/version/version_view.html:73 +msgid "Row #" +msgstr "" + +#: core/doctype/doctype/doctype.py:1770 core/doctype/doctype/doctype.py:1780 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: model/base_document.py:868 +#: model/base_document.py:893 msgid "Row #{0}:" -msgstr "Satır # {0}:" +msgstr "" -#: core/doctype/doctype/doctype.py:492 +#: core/doctype/doctype/doctype.py:490 msgid "Row #{}: Fieldname is required" msgstr "" @@ -26207,7 +27413,7 @@ msgstr "" #: core/doctype/transaction_log/transaction_log.json msgctxt "Transaction Log" msgid "Row Index" -msgstr "Satır Dizini" +msgstr "" #. Label of a Code field in DocType 'Data Import Log' #: core/doctype/data_import_log/data_import_log.json @@ -26219,53 +27425,73 @@ msgstr "" #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "Row Name" -msgstr "Satır Adı" +msgstr "" -#: custom/doctype/customize_form/customize_form.py:349 +#: core/doctype/data_import/data_import.js:489 +msgid "Row Number" +msgstr "" + +#: core/doctype/version/version_view.html:68 +msgid "Row Values Changed" +msgstr "" + +#: core/doctype/data_import/data_import.js:367 +msgid "Row {0}" +msgstr "" + +#: custom/doctype/customize_form/customize_form.py:348 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" -msgstr "Satır {0}: Standart alanlar için zorunlu kılınmasına izin verilmiyor" +msgstr "" #: custom/doctype/customize_form/customize_form.py:337 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" -msgstr "Satır {0}: standart alanlar için Gönder izin etkinleştirmek için izin verilmez" +msgstr "" + +#: core/doctype/version/version_view.html:32 +msgid "Rows Added" +msgstr "" #. Label of a Section Break field in DocType 'Audit Trail' #: core/doctype/audit_trail/audit_trail.json msgctxt "Audit Trail" msgid "Rows Added" -msgstr "Satırlar eklendi" +msgstr "" + +#: core/doctype/version/version_view.html:32 +msgid "Rows Removed" +msgstr "" #. Label of a Section Break field in DocType 'Audit Trail' #: core/doctype/audit_trail/audit_trail.json msgctxt "Audit Trail" msgid "Rows Removed" -msgstr "Satırlar kaldırıldı" +msgstr "" #. Label of a Select field in DocType 'Assignment Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Rule" -msgstr "Kural" +msgstr "" #. Label of a Link field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json msgctxt "Energy Point Log" msgid "Rule" -msgstr "Kural" +msgstr "" #. Label of a Section Break field in DocType 'Document Naming Rule' #: core/doctype/document_naming_rule/document_naming_rule.json msgctxt "Document Naming Rule" msgid "Rule Conditions" -msgstr "Kural Koşulları" +msgstr "" #. Label of a Data field in DocType 'Energy Point Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "Rule Name" -msgstr "Kural ismi" +msgstr "" -#: permissions.py:662 +#: permissions.py:658 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -26279,106 +27505,110 @@ msgstr "" #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Rules defining transition of state in the workflow." -msgstr "Iş akışında durumun geçişini tanımlayan kurallar." +msgstr "" #. Description of the 'Transition Rules' (Section Break) field in DocType #. 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." -msgstr "Durumların nasıl geçiş olduğuna ilişkin kurallar, bir sonraki durum gibi ve hangi rolün durumu değiştirmesine izin verildiği vb." +msgstr "" #. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule' #: core/doctype/document_naming_rule/document_naming_rule.json msgctxt "Document Naming Rule" msgid "Rules with higher priority number will be applied first." -msgstr "Önce öncelik numarası daha yüksek olan kurallar uygulanacaktır." +msgstr "" #. Label of a Int field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Run Jobs only Daily if Inactive For (Days)" -msgstr "İşleri Yalnızca Etkin Değilse Günlük Çalıştır (Gün)" +msgstr "" #. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System #. Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Run scheduled jobs only if checked" -msgstr "Kontrol yalnızca zamanlanmış işlerini" +msgstr "" #. Name of a DocType #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgid "S3 Backup Settings" -msgstr "S3 Yedekleme Ayarları" +msgstr "" #. Label of a Link in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgctxt "S3 Backup Settings" msgid "S3 Backup Settings" -msgstr "S3 Yedekleme Ayarları" +msgstr "" #: integrations/doctype/s3_backup_settings/s3_backup_settings.js:18 msgid "S3 Backup complete!" -msgstr "S3 Yedeklemeyi tamamla!" +msgstr "" #. Label of a Section Break field in DocType 'S3 Backup Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgctxt "S3 Backup Settings" msgid "S3 Bucket Details" -msgstr "S3 Bucket Ayrıntıları" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "SMS" -msgstr "SMS" +msgstr "" #. Option for the 'Channel' (Select) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "SMS" -msgstr "SMS" +msgstr "" #. Option for the 'Two Factor Authentication method' (Select) field in DocType #. 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "SMS" -msgstr "SMS" +msgstr "" #. Label of a Small Text field in DocType 'SMS Settings' #: core/doctype/sms_settings/sms_settings.json msgctxt "SMS Settings" msgid "SMS Gateway URL" -msgstr "SMS Gateway Adresi" +msgstr "" #. Name of a DocType #: core/doctype/sms_log/sms_log.json msgid "SMS Log" -msgstr "" +msgstr "SMS Kayıtları" #. Name of a DocType #: core/doctype/sms_parameter/sms_parameter.json msgid "SMS Parameter" -msgstr "SMS Parametresi" +msgstr "" #. Name of a DocType #: core/doctype/sms_settings/sms_settings.json msgid "SMS Settings" -msgstr "SMS Ayarları" +msgstr "" #. Label of a Link in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgctxt "SMS Settings" msgid "SMS Settings" -msgstr "SMS Ayarları" +msgstr "" #: core/doctype/sms_settings/sms_settings.py:110 msgid "SMS sent to following numbers: {0}" -msgstr "SMS aşağıdaki numaralardan gönderilen: {0}" +msgstr "" -#: email/doctype/email_account/email_account.py:182 +#: templates/includes/login/login.js:377 +msgid "SMS was not sent. Please contact Administrator." +msgstr "" + +#: email/doctype/email_account/email_account.py:189 msgid "SMTP Server is required" msgstr "" @@ -26387,7 +27617,7 @@ msgstr "" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "SMTP Settings for outgoing emails" -msgstr "Giden e-postalar için SMTP Ayarları" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' #: desk/doctype/system_console/system_console.json @@ -26399,7 +27629,7 @@ msgstr "" #: desk/doctype/bulk_update/bulk_update.json msgctxt "Bulk Update" msgid "SQL Conditions. Example: status=\"Open\"" -msgstr "SQL Koşulları. Örnek: status = 'Aç'" +msgstr "" #: core/doctype/recorder/recorder.js:36 msgid "SQL Explain" @@ -26427,7 +27657,11 @@ msgstr "" #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "SSL/TLS Mode" -msgstr "SSL / TLS Modu" +msgstr "" + +#: public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "" #. Name of a role #: contacts/doctype/contact/contact.json @@ -26437,7 +27671,7 @@ msgstr "Satış Yöneticisi" #. Name of a role #: contacts/doctype/contact/contact.json msgid "Sales Master Manager" -msgstr "Satış Master Yöneticisi" +msgstr "Satış Master Yönetici" #. Name of a role #: contacts/doctype/address/address.json contacts/doctype/contact/contact.json @@ -26450,7 +27684,7 @@ msgstr "Satış Kullanıcısı" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Salesforce" -msgstr "Salesforce" +msgstr "" #. Name of a DocType #: contacts/doctype/salutation/salutation.json @@ -26469,15 +27703,15 @@ msgctxt "Salutation" msgid "Salutation" msgstr "Hitap" -#: integrations/doctype/webhook/webhook.py:109 +#: integrations/doctype/webhook/webhook.py:112 msgid "Same Field is entered more than once" -msgstr "Aynı Alana birden çok kez girildi" +msgstr "" #. Label of a HTML field in DocType 'Client Script' #: custom/doctype/client_script/client_script.json msgctxt "Client Script" msgid "Sample" -msgstr "Numune" +msgstr "" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #: automation/doctype/assignment_rule_day/assignment_rule_day.json @@ -26512,21 +27746,21 @@ msgstr "Cumartesi" #: core/doctype/data_import/data_import.js:113 #: desk/page/user_profile/user_profile_controller.js:319 -#: printing/page/print/print.js:831 +#: printing/page/print/print.js:838 #: printing/page/print_format_builder/print_format_builder.js:160 -#: public/js/frappe/form/footer/form_timeline.js:638 -#: public/js/frappe/form/quick_entry.js:156 +#: public/js/frappe/form/footer/form_timeline.js:661 +#: public/js/frappe/form/quick_entry.js:161 #: public/js/frappe/list/list_settings.js:36 #: public/js/frappe/list/list_settings.js:244 #: public/js/frappe/list/list_sidebar_group_by.js:25 -#: public/js/frappe/ui/toolbar/toolbar.js:297 +#: public/js/frappe/ui/toolbar/toolbar.js:307 #: public/js/frappe/utils/common.js:443 #: public/js/frappe/views/kanban/kanban_settings.js:45 #: public/js/frappe/views/kanban/kanban_settings.js:189 #: public/js/frappe/views/kanban/kanban_view.js:340 -#: public/js/frappe/views/reports/query_report.js:1785 -#: public/js/frappe/views/reports/report_view.js:1631 -#: public/js/frappe/views/workspace/workspace.js:487 +#: public/js/frappe/views/reports/query_report.js:1802 +#: public/js/frappe/views/reports/report_view.js:1628 +#: public/js/frappe/views/workspace/workspace.js:498 #: public/js/frappe/widgets/base_widget.js:140 #: public/js/frappe/widgets/quick_list_widget.js:117 #: public/js/print_format_builder/print_format_builder.bundle.js:15 @@ -26540,30 +27774,34 @@ msgctxt "Notification" msgid "Save" msgstr "Kaydet" -#: core/doctype/user/user.js:316 +#: core/doctype/user/user.js:321 msgid "Save API Secret: {0}" msgstr "" #: workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" -msgstr "Yine de Kaydet" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1314 -#: public/js/frappe/views/reports/report_view.js:1638 +#: public/js/frappe/views/reports/report_view.js:1311 +#: public/js/frappe/views/reports/report_view.js:1635 msgid "Save As" -msgstr "Farklı Kaydet" +msgstr "" #: public/js/frappe/views/dashboard/dashboard_view.js:62 msgid "Save Customizations" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1788 +#: public/js/frappe/list/list_sidebar.html:73 +msgid "Save Filter" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:1805 msgid "Save Report" -msgstr "Raporu Kaydet" +msgstr "" #: public/js/frappe/views/kanban/kanban_view.js:94 msgid "Save filters" -msgstr "Filtreleri kaydet" +msgstr "" #. Label of a Check field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -26571,27 +27809,27 @@ msgctxt "Form Tour" msgid "Save on Completion" msgstr "" -#: public/js/frappe/form/form_tour.js:287 +#: public/js/frappe/form/form_tour.js:289 msgid "Save the document." msgstr "" -#: desk/form/save.py:46 model/rename_doc.py:108 +#: desk/form/save.py:46 model/rename_doc.py:106 #: printing/page/print_format_builder/print_format_builder.js:845 #: public/js/frappe/form/toolbar.js:260 -#: public/js/frappe/views/kanban/kanban_board.bundle.js:910 +#: public/js/frappe/views/kanban/kanban_board.bundle.js:917 msgid "Saved" -msgstr "Kaydedilmiş" +msgstr "" #: public/js/frappe/list/list_settings.js:40 #: public/js/frappe/views/kanban/kanban_settings.js:47 -#: public/js/frappe/views/workspace/workspace.js:499 +#: public/js/frappe/views/workspace/workspace.js:510 msgid "Saving" -msgstr "Kaydediliyor" +msgstr "" #: public/js/frappe/form/save.js:9 msgctxt "Freeze message while saving a document" msgid "Saving" -msgstr "Kaydediliyor" +msgstr "" #: custom/doctype/customize_form/customize_form.js:343 msgid "Saving Customization..." @@ -26601,11 +27839,11 @@ msgstr "" msgid "Saving this will export this document as well as the steps linked here as json." msgstr "" -#: public/js/form_builder/store.js:228 +#: public/js/form_builder/store.js:233 #: public/js/print_format_builder/store.js:36 #: public/js/workflow_builder/store.js:73 msgid "Saving..." -msgstr "Kaydediliyor..." +msgstr "" #: public/js/frappe/scanner/index.js:72 msgid "Scan QRCode" @@ -26613,17 +27851,17 @@ msgstr "" #: www/qrcode.html:14 msgid "Scan the QR Code and enter the resulting code displayed." -msgstr "QR Code'u tarayın ve görüntülenen sonuç kodunu girin." +msgstr "" #: email/doctype/newsletter/newsletter.js:125 msgid "Schedule" -msgstr "" +msgstr "Planla" #: email/doctype/newsletter/newsletter.js:106 msgid "Schedule Newsletter" msgstr "" -#: public/js/frappe/views/communication.js:81 +#: public/js/frappe/views/communication.js:85 msgid "Schedule Send At" msgstr "" @@ -26657,35 +27895,35 @@ msgstr "Planlandı" #: core/doctype/scheduled_job_log/scheduled_job_log.json msgctxt "Scheduled Job Log" msgid "Scheduled Job" -msgstr "Zamanlanmış İş" +msgstr "" #. Name of a DocType #: core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Scheduled Job Log" -msgstr "Zamanlanmış İş Günlüğü" +msgstr "" #. Linked DocType in Scheduled Job Type's connections #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Scheduled Job Log" -msgstr "Zamanlanmış İş Günlüğü" +msgstr "" #. Name of a DocType #: core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Scheduled Job Type" -msgstr "Zamanlanmış İş Türü" +msgstr "" #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Scheduled Job Type" msgid "Scheduled Job Type" -msgstr "Zamanlanmış İş Türü" +msgstr "" #. Linked DocType in Server Script's connections #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Scheduled Job Type" -msgstr "Zamanlanmış İş Türü" +msgstr "" #. Label of a Link in the Build Workspace #: core/workspace/build/build.json @@ -26703,21 +27941,21 @@ msgstr "" #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Scheduled To Send" -msgstr "göndermek için planlanmış" +msgstr "" -#: core/doctype/server_script/server_script.py:274 +#: core/doctype/server_script/server_script.py:280 msgid "Scheduled execution for script {0} has updated" -msgstr "{0} komut dosyası için planlanan yürütme güncellendi" +msgstr "" #: email/doctype/auto_email_report/auto_email_report.js:26 msgid "Scheduled to send" -msgstr "Göndermek için planlandı" +msgstr "" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Scheduler Event" -msgstr "Zamanlayıcı Etkinliği" +msgstr "" #: core/doctype/data_import/data_import.py:97 msgid "Scheduler Inactive" @@ -26743,91 +27981,96 @@ msgstr "" #: integrations/doctype/oauth_scope/oauth_scope.json msgctxt "OAuth Scope" msgid "Scope" -msgstr "" +msgstr "Kapsam" #. Label of a Section Break field in DocType 'Connected App' #. Label of a Table field in DocType 'Connected App' #: integrations/doctype/connected_app/connected_app.json msgctxt "Connected App" msgid "Scopes" -msgstr "Kapsamlar" +msgstr "" #. Label of a Text field in DocType 'OAuth Authorization Code' #: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgctxt "OAuth Authorization Code" msgid "Scopes" -msgstr "Kapsamlar" +msgstr "" #. Label of a Text field in DocType 'OAuth Bearer Token' #: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgctxt "OAuth Bearer Token" msgid "Scopes" -msgstr "Kapsamlar" +msgstr "" #. Label of a Text field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "Scopes" -msgstr "Kapsamlar" +msgstr "" #. Label of a Table field in DocType 'Token Cache' #: integrations/doctype/token_cache/token_cache.json msgctxt "Token Cache" msgid "Scopes" -msgstr "Kapsamlar" +msgstr "" #. Label of a Code field in DocType 'Client Script' #: custom/doctype/client_script/client_script.json msgctxt "Client Script" msgid "Script" -msgstr "Script" +msgstr "" #. Label of a Code field in DocType 'Console Log' #: desk/doctype/console_log/console_log.json msgctxt "Console Log" msgid "Script" -msgstr "Script" +msgstr "" #. Label of a Code field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Script" -msgstr "Script" +msgstr "" #. Label of a Code field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Script" -msgstr "Script" +msgstr "" #. Label of a Section Break field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Script" -msgstr "Script" +msgstr "" #. Label of a Tab Break field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Script" -msgstr "Script" +msgstr "" #. Name of a role #: core/doctype/server_script/server_script.json msgid "Script Manager" -msgstr "Senaryo Yöneticisi" +msgstr "" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: core/doctype/report/report.json msgctxt "Report" msgid "Script Report" -msgstr "Script Raporu" +msgstr "" #. Label of a Select field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Script Type" -msgstr "Script Tipi" +msgstr "" + +#. Description of a DocType +#: website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json @@ -26846,12 +28089,26 @@ msgctxt "Web Form" msgid "Scripting / Style" msgstr "" +#. Label of a Section Break field in DocType 'Letter Head' +#: printing/doctype/letter_head/letter_head.json +msgctxt "Letter Head" +msgid "Scripts" +msgstr "" + +#: desk/page/leaderboard/leaderboard.js:211 #: public/js/frappe/form/link_selector.js:46 +#: public/js/frappe/list/list_sidebar.html:59 #: public/js/frappe/ui/toolbar/search.js:49 #: public/js/frappe/ui/toolbar/search.js:68 #: templates/includes/search_template.html:26 www/search.py:19 msgid "Search" -msgstr "Arama" +msgstr "arama" + +#. Label of a Section Break field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Search" +msgstr "arama" #. Label of a Check field in DocType 'Role' #: core/doctype/role/role.json @@ -26863,98 +28120,103 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Search Fields" -msgstr "Alanları Ara" +msgstr "" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Search Fields" -msgstr "Alanları Ara" +msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:186 msgid "Search Help" -msgstr "Yardım Ara" +msgstr "" #. Label of a Table field in DocType 'Global Search Settings' #: desk/doctype/global_search_settings/global_search_settings.json msgctxt "Global Search Settings" msgid "Search Priorities" -msgstr "Arama Öncelikleri" +msgstr "" #: www/search.py:14 msgid "Search Results for" msgstr "" -#: core/doctype/doctype/doctype.py:1418 +#: core/doctype/doctype/doctype.py:1416 msgid "Search field {0} is not valid" -msgstr "Arama alanı {0} geçerli değil" +msgstr "" #: public/js/frappe/ui/toolbar/search.js:50 #: public/js/frappe/ui/toolbar/search.js:69 msgid "Search for anything" -msgstr "herhangi bir şey için ara" +msgstr "" +#: public/js/frappe/ui/toolbar/awesome_bar.js:300 #: public/js/frappe/ui/toolbar/awesome_bar.js:306 msgid "Search for {0}" msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:166 msgid "Search in a document type" -msgstr "Bir belge türü ara" +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:29 +msgid "Search or type a command ({0})" +msgstr "" #: templates/includes/search_box.html:8 msgid "Search results for" -msgstr "için arama sonuçları" +msgstr "Arama sonuçları için" #: templates/includes/navbar/navbar_search.html:6 #: templates/includes/search_box.html:2 #: templates/includes/search_template.html:23 msgid "Search..." -msgstr "Arama yap..." +msgstr "" #: public/js/frappe/ui/toolbar/search.js:210 msgid "Searching ..." -msgstr "Arama yapılıyor..." +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Web Template' #: website/doctype/web_template/web_template.json msgctxt "Web Template" msgid "Section" -msgstr "Bölüm" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Section Break" -msgstr "Bölüm Sonu" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Section Break" -msgstr "Bölüm Sonu" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Section Break" -msgstr "Bölüm Sonu" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Section Break" -msgstr "Bölüm Sonu" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Section Break" -msgstr "Bölüm Sonu" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:421 msgid "Section Heading" -msgstr "Bölüm başlığı" +msgstr "" #. Label of a Data field in DocType 'Web Page Block' #: website/doctype/web_page_block/web_page_block.json @@ -26966,72 +28228,77 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "Security Settings" -msgstr "Güvenlik Ayarları" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:784 +#: public/js/frappe/ui/notifications/notifications.js:302 +msgid "See all Activity" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:788 msgid "See all past reports." -msgstr "Geçmiş tüm raporlara bakın." +msgstr "" #: public/js/frappe/form/form.js:1208 #: website/doctype/contact_us_settings/contact_us_settings.js:4 msgid "See on Website" -msgstr "Web sitesinde Bkz" +msgstr "" #: website/doctype/web_form/templates/web_form.html:150 +msgctxt "Button in web form" msgid "See previous responses" msgstr "" -#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:48 +#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 msgid "See the document at {0}" -msgstr "{0} adresindeki dokümana bakın" +msgstr "" #: core/doctype/error_log/error_log_list.js:5 msgid "Seen" -msgstr "Görülme" +msgstr "" #. Label of a Check field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Seen" -msgstr "Görülme" +msgstr "" #. Label of a Check field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Seen" -msgstr "Görülme" +msgstr "" #. Label of a Check field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json msgctxt "Energy Point Log" msgid "Seen" -msgstr "Görülme" +msgstr "" #. Label of a Check field in DocType 'Error Log' #: core/doctype/error_log/error_log.json msgctxt "Error Log" msgid "Seen" -msgstr "Görülme" +msgstr "" #. Label of a Check field in DocType 'Notification Settings' #: desk/doctype/notification_settings/notification_settings.json msgctxt "Notification Settings" msgid "Seen" -msgstr "Görülme" +msgstr "" #. Label of a Section Break field in DocType 'Note' #: desk/doctype/note/note.json msgctxt "Note" msgid "Seen By" -msgstr "Tarafından görüldü" +msgstr "" #. Label of a Table field in DocType 'Note' #: desk/doctype/note/note.json msgctxt "Note" msgid "Seen By Table" -msgstr "Tabloya göre Görülme" +msgstr "" -#: printing/page/print/print.js:592 +#: printing/page/print/print.js:599 msgid "Select" msgstr "Seç" @@ -27089,24 +28356,31 @@ msgctxt "Web Template Field" msgid "Select" msgstr "Seç" -#: public/js/frappe/views/communication.js:150 +#: public/js/frappe/data_import/data_exporter.js:148 +#: public/js/frappe/form/controls/multicheck.js:166 +msgid "Select All" +msgstr "" + +#: public/js/frappe/views/communication.js:165 +#: public/js/frappe/views/communication.js:578 #: public/js/frappe/views/interaction.js:93 #: public/js/frappe/views/interaction.js:155 msgid "Select Attachments" -msgstr "Ekleri seç" +msgstr "" #: custom/doctype/client_script/client_script.js:25 #: custom/doctype/client_script/client_script.js:28 msgid "Select Child Table" -msgstr "Çocuk Masası Seç" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:357 +#: public/js/frappe/views/reports/report_view.js:352 msgid "Select Column" -msgstr "Sütun Seç" +msgstr "" +#: printing/page/print_format_builder/print_format_builder_field.html:41 #: public/js/frappe/form/print_utils.js:43 msgid "Select Columns" -msgstr "Sütunları Seç" +msgstr "" #: desk/page/setup_wizard/setup_wizard.js:387 msgid "Select Country" @@ -27118,35 +28392,35 @@ msgstr "" #: public/js/frappe/utils/dashboard_utils.js:240 msgid "Select Dashboard" -msgstr "Gösterge Tablosu Seçin" +msgstr "" #. Label of a Link field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Select Dashboard" -msgstr "Gösterge Tablosu Seçin" +msgstr "" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Select Date Range" -msgstr "Tarih Aralığı Seçin" +msgstr "" #: public/js/frappe/doctype/index.js:170 msgid "Select DocType" -msgstr "Belge Tipi seçine" +msgstr "Belge Tipi Seçin" #. Label of a Link field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Select DocType" -msgstr "Belge Tipi seçine" +msgstr "Belge Tipi Seçin" #. Label of a Link field in DocType 'Data Export' #: core/doctype/data_export/data_export.json msgctxt "Data Export" msgid "Select Doctype" -msgstr "Belge türünü seçin" +msgstr "" #. Label of a Dynamic Link field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json @@ -27157,41 +28431,54 @@ msgstr "" #: printing/page/print_format_builder_beta/print_format_builder_beta.js:50 #: workflow/page/workflow_builder/workflow_builder.js:50 msgid "Select Document Type" -msgstr "Belge Türü Seçin" +msgstr "" #: core/page/permission_manager/permission_manager.js:172 msgid "Select Document Type or Role to start." -msgstr "Başlatmak için Belge Türü veya Rol seçin." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:34 +msgid "Select Document Types to set which User Permissions are used to limit access." +msgstr "" #: public/js/frappe/doctype/index.js:199 public/js/frappe/form/toolbar.js:762 msgid "Select Field" -msgstr "Alan Seç" +msgstr "" -#: public/js/frappe/form/grid_row.js:459 +#: public/js/frappe/ui/group_by/group_by.html:32 +#: public/js/frappe/ui/group_by/group_by.js:141 +msgid "Select Field..." +msgstr "" + +#: public/js/frappe/form/grid_row.js:460 #: public/js/frappe/list/list_settings.js:233 #: public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" -msgstr "Alanları Seç" +msgstr "" -#: public/js/frappe/data_import/data_exporter.js:143 +#: public/js/frappe/data_import/data_exporter.js:146 msgid "Select Fields To Insert" -msgstr "Eklenecek Alanları Seçin" +msgstr "" -#: public/js/frappe/data_import/data_exporter.js:144 +#: public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Update" -msgstr "Güncellenecek Alanları Seçin" +msgstr "" #: public/js/frappe/list/list_sidebar_group_by.js:21 msgid "Select Filters" -msgstr "Filtreleri Seç" +msgstr "" #: desk/doctype/event/event.py:96 msgid "Select Google Calendar to which event should be synced." -msgstr "Etkinliğin senkronize edilmesi gereken Google Takvim'i seçin." +msgstr "" -#: contacts/doctype/contact/contact.py:75 +#: contacts/doctype/contact/contact.py:76 msgid "Select Google Contacts to which contact should be synced." -msgstr "Kişinin senkronize edileceği Google Rehber'i seçin." +msgstr "" + +#: public/js/frappe/ui/group_by/group_by.html:10 +msgid "Select Group By..." +msgstr "" #: public/js/frappe/list/list_view_select.js:185 msgid "Select Kanban" @@ -27199,7 +28486,7 @@ msgstr "" #: desk/page/setup_wizard/setup_wizard.js:379 msgid "Select Language" -msgstr "Dil Seçin" +msgstr "" #. Label of a Select field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -27207,15 +28494,15 @@ msgctxt "Form Tour" msgid "Select List View" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:154 +#: public/js/frappe/data_import/data_exporter.js:157 msgid "Select Mandatory" -msgstr "Zorunlu Seç" +msgstr "" #: custom/doctype/customize_form/customize_form.js:235 msgid "Select Module" -msgstr "seç Modülü" +msgstr "" -#: printing/page/print/print.js:175 printing/page/print/print.js:575 +#: printing/page/print/print.js:175 printing/page/print/print.js:582 msgid "Select Network Printer" msgstr "" @@ -27226,13 +28513,13 @@ msgid "Select Page" msgstr "" #: printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: public/js/frappe/views/communication.js:144 +#: public/js/frappe/views/communication.js:148 msgid "Select Print Format" -msgstr "Baskı Biçimi Seç" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:82 msgid "Select Print Format to Edit" -msgstr "Düzenlemek için Baskı Biçimi seçin" +msgstr "" #. Label of a Link field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -27242,7 +28529,7 @@ msgstr "" #: printing/page/print_format_builder/print_format_builder.js:623 msgid "Select Table Columns for {0}" -msgstr "{0} için Tablo Sütunları Seç" +msgstr "" #: desk/page/setup_wizard/setup_wizard.js:396 msgid "Select Time Zone" @@ -27252,7 +28539,7 @@ msgstr "" #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Select Transaction" -msgstr "İşlem Seçin" +msgstr "" #: workflow/page/workflow_builder/workflow_builder.js:68 msgid "Select Workflow" @@ -27266,77 +28553,85 @@ msgstr "" #: website/doctype/website_settings/website_settings.js:23 msgid "Select a Brand Image first." -msgstr "Önce bir Marka Resmi seçin." +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:108 msgid "Select a DocType to make a new format" -msgstr "Yeni bir format yapmak için bir DOCTYPE seçin" +msgstr "" -#: integrations/doctype/webhook/webhook.py:130 +#: integrations/doctype/webhook/webhook.py:133 msgid "Select a document to check if it meets conditions." msgstr "" -#: integrations/doctype/webhook/webhook.py:142 +#: integrations/doctype/webhook/webhook.py:145 msgid "Select a document to preview request data" msgstr "" #: public/js/frappe/views/treeview.js:342 msgid "Select a group node first." -msgstr "İlk grup düğümünü seçin." +msgstr "" -#: core/doctype/doctype/doctype.py:1885 +#: core/doctype/doctype/doctype.py:1881 msgid "Select a valid Sender Field for creating documents from Email" -msgstr "E-postadan belge oluşturmak için geçerli bir Gönderen Alanı seçin" +msgstr "" -#: core/doctype/doctype/doctype.py:1869 +#: core/doctype/doctype/doctype.py:1865 msgid "Select a valid Subject field for creating documents from Email" -msgstr "E-postadan belge oluşturmak için geçerli bir Konu alanı seçin" +msgstr "" -#: public/js/frappe/form/form_tour.js:313 +#: public/js/frappe/form/form_tour.js:315 msgid "Select an Image" msgstr "" +#: printing/page/print_format_builder/print_format_builder_start.html:2 +msgid "Select an existing format to edit or start a new format." +msgstr "" + #. Description of the 'Brand Image' (Attach Image) field in DocType 'Website #. Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Select an image of approx width 150px with a transparent background for best results." -msgstr "En iyi sonuçlar için şeffaf bir arka plan ile yaklaşık genişlik 150px bir görüntü seçin." +msgstr "" -#: public/js/frappe/list/bulk_operations.js:34 +#: public/js/frappe/list/bulk_operations.js:35 msgid "Select atleast 1 record for printing" -msgstr "baskı için en az 1 kayıt seçin" +msgstr "" #: core/doctype/success_action/success_action.js:18 msgid "Select atleast 2 actions" -msgstr "En az 2 eylem seç" +msgstr "" -#: public/js/frappe/list/list_view.js:1201 +#: public/js/frappe/list/list_view.js:1229 msgctxt "Description of a list view shortcut" msgid "Select list item" -msgstr "Liste öğesini seçin" +msgstr "" -#: public/js/frappe/list/list_view.js:1153 -#: public/js/frappe/list/list_view.js:1169 +#: public/js/frappe/list/list_view.js:1181 +#: public/js/frappe/list/list_view.js:1197 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" -msgstr "Birden fazla liste öğesi seç" +msgstr "" -#: public/js/frappe/views/calendar/calendar.js:174 +#: public/js/frappe/views/calendar/calendar.js:175 msgid "Select or drag across time slots to create a new event." -msgstr "Seçin veya yeni bir etkinlik oluşturmak için zaman dilimleri boyunca sürükleyin." +msgstr "" -#: public/js/frappe/list/bulk_operations.js:195 +#: public/js/frappe/list/bulk_operations.js:209 msgid "Select records for assignment" -msgstr "Atama için seçin kayıtları" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:230 +msgid "Select records for removing assignment" +msgstr "" #. Description of the 'Insert After' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Select the label after which you want to insert new field." -msgstr "Select the label after which you want to insert new field." +msgstr "" -#: public/js/frappe/utils/diffview.js:101 +#: public/js/frappe/utils/diffview.js:102 msgid "Select two versions to view the diff." msgstr "" @@ -27345,11 +28640,11 @@ msgstr "" #: public/js/frappe/form/multi_select_dialog.js:279 #: public/js/frappe/list/list_view_select.js:153 msgid "Select {0}" -msgstr "Seçin {0}" +msgstr "" -#: model/workflow.py:121 +#: model/workflow.py:117 msgid "Self approval is not allowed" -msgstr "Kendi onayına izin verilmez" +msgstr "" #: email/doctype/newsletter/newsletter.js:66 #: email/doctype/newsletter/newsletter.js:74 @@ -27362,25 +28657,25 @@ msgstr "Gönder" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Send After" -msgstr "Sonra Gönder" +msgstr "" #. Label of a Datetime field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Send After" -msgstr "Sonra Gönder" +msgstr "" #. Label of a Select field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Send Alert On" -msgstr "Uyarı gönder" +msgstr "" #. Label of a Check field in DocType 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Send Email Alert" -msgstr "E-posta Uyarısı Gönder" +msgstr "" #. Label of a Datetime field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json @@ -27393,67 +28688,67 @@ msgstr "" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Send Email Print Attachments as PDF (Recommended)" -msgstr "PDF olarak Email Print Ekler Gönder (Önerilen)" +msgstr "" #. Label of a Check field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json msgctxt "Dropbox Settings" msgid "Send Email for Successful Backup" -msgstr "Başarılı Yedekleme İçin E-posta Gönder" +msgstr "" #. Label of a Check field in DocType 'S3 Backup Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgctxt "S3 Backup Settings" msgid "Send Email for Successful Backup" -msgstr "Başarılı Yedekleme İçin E-posta Gönder" +msgstr "" #. Label of a Check field in DocType 'Google Drive' #: integrations/doctype/google_drive/google_drive.json msgctxt "Google Drive" msgid "Send Email for Successful backup" -msgstr "Başarılı Yedekleme için E-posta Gönder" +msgstr "" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Send Me A Copy of Outgoing Emails" -msgstr "Bana Giden E-postaların Bir Kopyasını Gönder" +msgstr "" #. Label of a Data field in DocType 'Google Drive' #: integrations/doctype/google_drive/google_drive.json msgctxt "Google Drive" msgid "Send Notification To" -msgstr "Için Bildirim gönder" +msgstr "" #. Label of a Small Text field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Send Notification to" -msgstr "Bildirim Gönder" +msgstr "" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Send Notifications For Documents Followed By Me" -msgstr "Takip ettiğim Belgeler için Bildirim Gönder" +msgstr "" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Send Notifications For Email Threads" -msgstr "E-posta Konuları için Bildirim Gönder" +msgstr "" #. Label of a Data field in DocType 'Dropbox Settings' #: integrations/doctype/dropbox_settings/dropbox_settings.json msgctxt "Dropbox Settings" msgid "Send Notifications To" -msgstr "Bildirimlerin Gönderileceği Kişi" +msgstr "" #. Label of a Data field in DocType 'S3 Backup Settings' #: integrations/doctype/s3_backup_settings/s3_backup_settings.json msgctxt "S3 Backup Settings" msgid "Send Notifications To" -msgstr "Bildirimlerin Gönderileceği Kişi" +msgstr "" #: email/doctype/auto_email_report/auto_email_report.js:21 msgid "Send Now" @@ -27463,17 +28758,17 @@ msgstr "Şimdi Gönder" #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Send Print as PDF" -msgstr "Baskıyı PDF olarak gönder" +msgstr "" -#: public/js/frappe/views/communication.js:134 +#: public/js/frappe/views/communication.js:138 msgid "Send Read Receipt" -msgstr "Okundu bilgisi gönder" +msgstr "" #. Label of a Check field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Send System Notification" -msgstr "Sistem Bildirimi Gönder" +msgstr "" #: email/doctype/newsletter/newsletter.js:153 msgid "Send Test Email" @@ -27483,13 +28778,13 @@ msgstr "" #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Send To All Assignees" -msgstr "Tüm Atananlara Gönder" +msgstr "" #. Label of a Check field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Send Unsubscribe Link" -msgstr "Aboneliğini Bağlantı Gönder" +msgstr "" #. Label of a Check field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json @@ -27501,7 +28796,7 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "Send Welcome Email" -msgstr "Hoşgeldiniz E-postası Gönder" +msgstr "" #: www/me.html:67 msgid "Send a request to delete your account" @@ -27519,41 +28814,41 @@ msgstr "" #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Send alert if date matches this field's value" -msgstr "Tarih bu alanın değerini eşleşirse uyarı gönder" +msgstr "" #. Description of the 'Value Changed' (Select) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Send alert if this field's value changes" -msgstr "Uyarı gönder Bu alanın değeri değişirse" +msgstr "" #. Label of a Check field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Send an email reminder in the morning" -msgstr "Sabah bir hatırlatma e-postası gönder" +msgstr "" #. Description of the 'Days Before or After' (Int) field in DocType #. 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Send days before or after the reference date" -msgstr "Önce veya referans tarihinden sonra gün Gönder" +msgstr "" #. Description of the 'Forward To Email Address' (Data) field in DocType #. 'Contact Us Settings' #: website/doctype/contact_us_settings/contact_us_settings.json msgctxt "Contact Us Settings" msgid "Send enquiries to this email address" -msgstr "Bu e-posta adresine soruşturma gönder" +msgstr "" -#: www/login.html:210 +#: templates/includes/login/login.js:73 www/login.html:210 msgid "Send login link" msgstr "" -#: public/js/frappe/views/communication.js:128 +#: public/js/frappe/views/communication.js:132 msgid "Send me a copy" -msgstr "Bana bir kopyasını gönder" +msgstr "" #: email/doctype/newsletter/newsletter.js:46 msgid "Send now" @@ -27563,13 +28858,13 @@ msgstr "" #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Send only if there is any data" -msgstr "herhangi bir veri varsa, sadece Gönder" +msgstr "" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Send unsubscribe message in email" -msgstr "e-postadaki aboneliği iptal mesaj gönder" +msgstr "" #. Label of a Link field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json @@ -27611,13 +28906,13 @@ msgstr "Gönderici" #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Sender Email" -msgstr "Gönderen E-postası" +msgstr "" #. Label of a Data field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Sender Email" -msgstr "Gönderen E-postası" +msgstr "" #. Label of a Data field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -27631,21 +28926,21 @@ msgctxt "DocType" msgid "Sender Email Field" msgstr "" -#: core/doctype/doctype/doctype.py:1888 +#: core/doctype/doctype/doctype.py:1884 msgid "Sender Field should have Email in options" -msgstr "Gönderen Alanının seçeneklerinde E-posta olmalıdır" +msgstr "" #. Label of a Data field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Sender Name" -msgstr "" +msgstr "Gönderenin Adı" #. Label of a Data field in DocType 'SMS Log' #: core/doctype/sms_log/sms_log.json msgctxt "SMS Log" msgid "Sender Name" -msgstr "" +msgstr "Gönderenin Adı" #. Label of a Data field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -27663,7 +28958,7 @@ msgstr "" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Sendgrid" -msgstr "Sendgrid" +msgstr "" #: email/doctype/newsletter/newsletter.js:201 msgid "Sending" @@ -27692,93 +28987,93 @@ msgstr "" #: email/doctype/newsletter/newsletter.js:196 #: email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" -msgstr "Gönderilen" +msgstr "Gönderildi" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Sent" -msgstr "Gönderilen" +msgstr "Gönderildi" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Sent" -msgstr "Gönderilen" +msgstr "Gönderildi" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: email/doctype/email_queue_recipient/email_queue_recipient.json msgctxt "Email Queue Recipient" msgid "Sent" -msgstr "Gönderilen" +msgstr "Gönderildi" #. Label of a Date field in DocType 'SMS Log' #: core/doctype/sms_log/sms_log.json msgctxt "SMS Log" msgid "Sent On" -msgstr "" +msgstr "Gönderim Zamanı" #. Label of a Check field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Sent Read Receipt" -msgstr "Gönderilen okundu bilgisi" +msgstr "" #. Label of a Code field in DocType 'SMS Log' #: core/doctype/sms_log/sms_log.json msgctxt "SMS Log" msgid "Sent To" -msgstr "" +msgstr "Gönderildiği Kişi" #. Label of a Select field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Sent or Received" -msgstr "Gönderilmiş veya Alınmış" +msgstr "" #. Option for the 'Event Category' (Select) field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Sent/Received Email" -msgstr "Gönderilen / Alınan E-posta" +msgstr "" #. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' #: core/doctype/navbar_item/navbar_item.json msgctxt "Navbar Item" msgid "Separator" -msgstr "Ayırıcı" +msgstr "" #. Label of a Float field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Sequence Id" -msgstr "" +msgstr "Sıra no" #. Label of a Text field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Series List for this Transaction" -msgstr "Bu İşlem için Seri Listesi" +msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:116 +#: core/doctype/document_naming_settings/document_naming_settings.py:115 msgid "Series Updated for {}" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:226 +#: core/doctype/document_naming_settings/document_naming_settings.py:223 msgid "Series counter for {} updated to {} successfully" msgstr "" -#: core/doctype/doctype/doctype.py:1073 -#: core/doctype/document_naming_settings/document_naming_settings.py:171 +#: core/doctype/doctype/doctype.py:1072 +#: core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" -msgstr "Seriler {0} {1} de zaten kullanılmış" +msgstr "" #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' #: core/doctype/doctype_action/doctype_action.json msgctxt "DocType Action" msgid "Server Action" -msgstr "Sunucu Eylemi" +msgstr "" #: public/js/frappe/request.js:606 msgid "Server Error" @@ -27788,43 +29083,43 @@ msgstr "Sunucu Hatası" #: printing/doctype/network_printer_settings/network_printer_settings.json msgctxt "Network Printer Settings" msgid "Server IP" -msgstr "Sunucu IP'si" +msgstr "" #. Name of a DocType #: core/doctype/server_script/server_script.json msgid "Server Script" -msgstr "Sunucu Komut Dosyası" +msgstr "" #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Server Script" -msgstr "Sunucu Komut Dosyası" +msgstr "" #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Server Script" -msgstr "Sunucu Komut Dosyası" +msgstr "" #. Label of a Link field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Server Script" -msgstr "Sunucu Komut Dosyası" +msgstr "" #. Label of a Link in the Build Workspace #. Label of a shortcut in the Build Workspace #: core/workspace/build/build.json msgctxt "Server Script" msgid "Server Script" -msgstr "Sunucu Komut Dosyası" +msgstr "" -#: utils/safe_exec.py:90 +#: utils/safe_exec.py:89 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" -#: core/doctype/server_script/server_script.js:32 +#: core/doctype/server_script/server_script.js:36 msgid "Server Scripts feature is not available on this site." msgstr "" @@ -27836,43 +29131,43 @@ msgstr "" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Service" -msgstr "Servis" +msgstr "Hizmet" #. Label of a Data field in DocType 'Integration Request' #: integrations/doctype/integration_request/integration_request.json msgctxt "Integration Request" msgid "Service" -msgstr "Servis" +msgstr "Hizmet" #. Name of a DocType #: core/doctype/session_default/session_default.json msgid "Session Default" -msgstr "Oturum Varsayılanı" +msgstr "" #. Name of a DocType #: core/doctype/session_default_settings/session_default_settings.json msgid "Session Default Settings" -msgstr "Oturum Varsayılan Ayarları" +msgstr "" #. Label of a standard navbar item #. Type: Action -#: hooks.py public/js/frappe/ui/toolbar/toolbar.js:296 +#: hooks.py public/js/frappe/ui/toolbar/toolbar.js:306 msgid "Session Defaults" -msgstr "Oturum Varsayılanları" +msgstr "" #. Label of a Table field in DocType 'Session Default Settings' #: core/doctype/session_default_settings/session_default_settings.json msgctxt "Session Default Settings" msgid "Session Defaults" -msgstr "Oturum Varsayılanları" +msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:281 +#: public/js/frappe/ui/toolbar/toolbar.js:291 msgid "Session Defaults Saved" -msgstr "Kaydedilen Oturum Varsayılanları" +msgstr "" -#: app.py:345 +#: app.py:344 msgid "Session Expired" -msgstr "Oturum süresi doldu" +msgstr "" #. Label of a Data field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -27880,46 +29175,46 @@ msgctxt "System Settings" msgid "Session Expiry (idle timeout)" msgstr "" -#: core/doctype/system_settings/system_settings.py:110 +#: core/doctype/system_settings/system_settings.py:112 msgid "Session Expiry must be in format {0}" -msgstr "Oturum Bitişi {0} formatında olmalıdır" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:562 +#: public/js/frappe/ui/filters/filter.js:563 msgctxt "Field value is set" msgid "Set" -msgstr "Ayarla" +msgstr "" #. Label of a Button field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Set Banner from Image" -msgstr "Image Banner Ayarla" +msgstr "" #: public/js/frappe/views/reports/query_report.js:199 msgid "Set Chart" -msgstr "Grafiği Ayarla" +msgstr "" #. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' #: desk/doctype/dashboard/dashboard.json msgctxt "Dashboard" msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" -msgstr "Bu Gösterge Panosundaki tüm grafikler için Varsayılan Seçenekleri ayarlayın (Ör: 'renkler': ['# d1d8dd', '# ff5858'])" +msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:467 #: desk/doctype/number_card/number_card.js:361 msgid "Set Dynamic Filters" -msgstr "Dinamik Filtreler Ayarlayın" +msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:381 #: desk/doctype/number_card/number_card.js:277 -#: website/doctype/web_form/web_form.js:260 +#: website/doctype/web_form/web_form.js:269 msgid "Set Filters" -msgstr "Filtreleri Ayarla" +msgstr "" #: public/js/frappe/widgets/chart_widget.js:395 #: public/js/frappe/widgets/quick_list_widget.js:102 msgid "Set Filters for {0}" -msgstr "{0} için Filtreleri Ayarlayın" +msgstr "" #: core/doctype/user_type/user_type.py:91 msgid "Set Limit" @@ -27936,19 +29231,19 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "Set New Password" -msgstr "Yeni Şifre ayarla" +msgstr "" #: desk/page/backups/backups.js:8 msgid "Set Number of Backups" -msgstr "Yedekler Set Sayısı" +msgstr "" #: www/update-password.html:9 msgid "Set Password" -msgstr "Şifre Seç" +msgstr "" #: custom/doctype/customize_form/customize_form.js:112 msgid "Set Permissions" -msgstr "İzinleri Ayarla" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:471 msgid "Set Properties" @@ -27959,34 +29254,34 @@ msgstr "" #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Set Property After Alert" -msgstr "Uyarının Ardından Mülkü Ayarla" +msgstr "" #: public/js/frappe/form/link_selector.js:207 #: public/js/frappe/form/link_selector.js:208 msgid "Set Quantity" -msgstr "Miktarı Ayarla" +msgstr "" #. Label of a Select field in DocType 'Role Permission for Page and Report' #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgctxt "Role Permission for Page and Report" msgid "Set Role For" -msgstr "Rolü Ayarla" +msgstr "" -#: core/doctype/user/user.js:122 +#: core/doctype/user/user.js:126 #: core/page/permission_manager/permission_manager.js:65 msgid "Set User Permissions" -msgstr "Kullanıcı Yetkilerini Belirle" +msgstr "" #. Label of a Small Text field in DocType 'Property Setter' #: custom/doctype/property_setter/property_setter.json msgctxt "Property Setter" msgid "Set Value" -msgstr "Değer Ayarla" +msgstr "" #: public/js/frappe/file_uploader/file_uploader.bundle.js:72 #: public/js/frappe/file_uploader/file_uploader.bundle.js:124 msgid "Set all private" -msgstr "Tümünü özel olarak ayarla" +msgstr "" #: public/js/frappe/file_uploader/file_uploader.bundle.js:72 msgid "Set all public" @@ -27994,11 +29289,11 @@ msgstr "" #: printing/doctype/print_format/print_format.js:49 msgid "Set as Default" -msgstr "Varsayılan olarak ayarla" +msgstr "" #: website/doctype/website_theme/website_theme.js:33 msgid "Set as Default Theme" -msgstr "Varsayılan Tema Olarak Ayarla" +msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json @@ -28016,26 +29311,26 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Set non-standard precision for a Float or Currency field" -msgstr "Bir Bolluk veya Para Birimi alanı için Set standart dışı hassas" +msgstr "" #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Set non-standard precision for a Float or Currency field" -msgstr "Bir Bolluk veya Para Birimi alanı için Set standart dışı hassas" +msgstr "" #. Description of the 'Precision' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Set non-standard precision for a Float or Currency field" -msgstr "Bir Bolluk veya Para Birimi alanı için Set standart dışı hassas" +msgstr "" #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Set non-standard precision for a Float or Currency field" -msgstr "Bir Bolluk veya Para Birimi alanı için Set standart dışı hassas" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json @@ -28047,8 +29342,7 @@ msgstr "" #. Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" -msgid "" -"Set the filters here. For example:\n" +msgid "Set the filters here. For example:\n" "
\n"
 "[{\n"
 "\tfieldname: \"company\",\n"
@@ -28071,9 +29365,7 @@ msgstr ""
 #. Description of the 'Method' (Data) field in DocType 'Number Card'
 #: desk/doctype/number_card/number_card.json
 msgctxt "Number Card"
-msgid ""
-"Set the path to a whitelisted function that will return the data for the number card in the format:\n"
-"\n"
+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"
@@ -28083,22 +29375,23 @@ msgid ""
 "}
" msgstr "" -#: contacts/doctype/address_template/address_template.py:32 +#: contacts/doctype/address_template/address_template.py:33 msgid "Setting this Address Template as default as there is no other default" -msgstr "Bu adres şablonunu varsayılan olarak kaydedin, başka varsayılan bulunmamaktadır" +msgstr "" -#: desk/doctype/global_search_settings/global_search_settings.py:85 +#: desk/doctype/global_search_settings/global_search_settings.py:86 msgid "Setting up Global Search documents." -msgstr "Global Search belgelerini ayarlama." +msgstr "" #: desk/page/setup_wizard/setup_wizard.js:273 msgid "Setting up your system" -msgstr "Sisteminiz kuruluyor..." +msgstr "" #. Label of a Card Break in the Integrations Workspace #: integrations/workspace/integrations/integrations.json -#: public/js/frappe/ui/toolbar/toolbar.js:254 -#: public/js/frappe/views/workspace/workspace.js:515 +#: public/js/frappe/form/templates/print_layout.html:25 +#: public/js/frappe/ui/toolbar/toolbar.js:264 +#: public/js/frappe/views/workspace/workspace.js:526 msgid "Settings" msgstr "Ayarlar" @@ -28131,10 +29424,25 @@ msgstr "Ayarlar" #: core/doctype/navbar_settings/navbar_settings.json msgctxt "Navbar Settings" msgid "Settings Dropdown" -msgstr "Ayarlar Açılır Menüsü" +msgstr "" + +#. Description of a DocType +#: website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. Description of a DocType +#: website/doctype/blog_settings/blog_settings.json +msgid "Settings to control blog categories and interactions like comments and likes" +msgstr "" #. Label of a Card Break in the Website Workspace -#: public/js/frappe/ui/toolbar/search_utils.js:551 +#: public/js/frappe/ui/toolbar/search_utils.js:567 #: website/workspace/website/website.json msgid "Setup" msgstr "Kurulum" @@ -28145,35 +29453,47 @@ msgctxt "DocType" msgid "Setup" msgstr "Kurulum" +#: core/page/permission_manager/permission_manager_help.html:27 +msgid "Setup > Customize Form" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:8 +msgid "Setup > User" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:33 +msgid "Setup > User Permissions" +msgstr "" + #. Title of an Onboarding Step #: custom/onboarding_step/workflows/workflows.json msgid "Setup Approval Workflows" -msgstr "" +msgstr "Onay İş Akışları Kurulumu" -#: public/js/frappe/views/reports/query_report.js:1658 -#: public/js/frappe/views/reports/report_view.js:1609 +#: public/js/frappe/views/reports/query_report.js:1675 +#: public/js/frappe/views/reports/report_view.js:1606 msgid "Setup Auto Email" -msgstr "Otomatik E-posta Kurulumu" +msgstr "" #: desk/page/setup_wizard/setup_wizard.js:204 msgid "Setup Complete" -msgstr "Kurulumu Tamamla" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Setup Complete" -msgstr "Kurulumu Tamamla" +msgstr "" #. Title of an Onboarding Step #: custom/onboarding_step/role_permissions/role_permissions.json msgid "Setup Limited Access for a User" -msgstr "" +msgstr "Kullanıcı için Sınırlı Erişim Kurulumu" #. Title of an Onboarding Step #: custom/onboarding_step/naming_series/naming_series.json msgid "Setup Naming Series" -msgstr "" +msgstr "Adlandırma Serisi Kurulumu" #. Label of a Section Break field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json @@ -28181,65 +29501,77 @@ msgctxt "Document Naming Settings" msgid "Setup Series for transactions" msgstr "" +#: public/js/frappe/form/templates/form_sidebar.html:110 +msgid "Share" +msgstr "" + #. Label of a Check field in DocType 'Custom DocPerm' #: core/doctype/custom_docperm/custom_docperm.json msgctxt "Custom DocPerm" msgid "Share" -msgstr "Paylaş" +msgstr "" #. Label of a Check field in DocType 'DocPerm' #: core/doctype/docperm/docperm.json msgctxt "DocPerm" msgid "Share" -msgstr "Paylaş" +msgstr "" #. Label of a Check field in DocType 'DocShare' #: core/doctype/docshare/docshare.json msgctxt "DocShare" msgid "Share" -msgstr "Paylaş" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: desk/doctype/notification_log/notification_log.json msgctxt "Notification Log" msgid "Share" -msgstr "Paylaş" +msgstr "" #: public/js/frappe/form/sidebar/share.js:107 msgid "Share With" -msgstr "ile paylaş" +msgstr "" + +#: public/js/frappe/form/templates/set_sharing.html:49 +msgid "Share this document with" +msgstr "" #: public/js/frappe/form/sidebar/share.js:45 msgid "Share {0} with" -msgstr "{0} öğesini şunla paylaş" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Shared" -msgstr "Paylaşıldı" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Shared" -msgstr "Paylaşıldı" +msgstr "" -#: desk/form/assign_to.py:127 +#: desk/form/assign_to.py:129 msgid "Shared with the following Users with Read access:{0}" -msgstr "Aşağıdaki Okuma erişimine sahip Kullanıcılarla paylaşıldı: {0}" +msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "Shipping" -msgstr "Nakliye" +msgstr "" + +#: public/js/frappe/form/templates/address_list.html:25 +msgid "Shipping Address" +msgstr "Sevkiyat Adresi" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: contacts/doctype/address/address.json msgctxt "Address" msgid "Shop" -msgstr "mağaza" +msgstr "" #. Label of a Data field in DocType 'Blogger' #: website/doctype/blogger/blogger.json @@ -28247,21 +29579,26 @@ msgctxt "Blogger" msgid "Short Name" msgstr "Kısa Adı" -#: utils/password_strength.py:93 +#: utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" -msgstr "Kısa klavye desenleri tahmin etmek kolaydır" +msgstr "" + +#: public/js/frappe/form/grid_row_form.js:42 +msgid "Shortcuts" +msgstr "Kısa Yollar" #. Label of a Table field in DocType 'Workspace' #. Label of a Tab Break field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "Shortcuts" -msgstr "Kısayollar" +msgstr "Kısa Yollar" #: public/js/frappe/widgets/base_widget.js:46 -#: public/js/frappe/widgets/base_widget.js:176 www/login.html:30 +#: public/js/frappe/widgets/base_widget.js:176 +#: templates/includes/login/login.js:86 www/login.html:30 msgid "Show" -msgstr "Göster" +msgstr "" #. Label of a Check field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json @@ -28275,15 +29612,19 @@ msgctxt "Print Format" msgid "Show Absolute Values" msgstr "" +#: public/js/frappe/form/templates/form_sidebar.html:78 +msgid "Show All" +msgstr "" + #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Show Attachments" -msgstr "Ekleri Göster" +msgstr "" #: desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" -msgstr "Takvimi Göster" +msgstr "" #. Label of a Check field in DocType 'Currency' #: geo/doctype/currency/currency.json @@ -28293,19 +29634,25 @@ msgstr "" #: desk/doctype/dashboard/dashboard.js:6 msgid "Show Dashboard" -msgstr "Gösterge Tablosunu Göster" +msgstr "" + +#. Label of a Check field in DocType 'Custom Field' +#: custom/doctype/custom_field/custom_field.json +msgctxt "Custom Field" +msgid "Show Dashboard" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Show Dashboard" -msgstr "Gösterge Tablosunu Göster" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Show Dashboard" -msgstr "Gösterge Tablosunu Göster" +msgstr "" #. Label of a Button field in DocType 'Access Log' #: core/doctype/access_log/access_log.json @@ -28317,12 +29664,6 @@ msgstr "Belgeyi Göster" msgid "Show Error" msgstr "" -#. Label of a Check field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Show Failed Logs" -msgstr "Başarısız Günlükleri Göster" - #: public/js/frappe/form/layout.js:545 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -28338,23 +29679,23 @@ msgstr "" #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Show Form Tour" -msgstr "Form Turunu Göster" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Show Full Error and Allow Reporting of Issues to the Developer" -msgstr "Geliştiriciye Tam Hata Gösterin ve Sorunların Rapor Edilmesine İzin Verin" +msgstr "" #. Label of a Check field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Show Full Form?" -msgstr "Tam Form Gösterilsin mi?" +msgstr "" -#: public/js/frappe/ui/keyboard.js:228 +#: public/js/frappe/ui/keyboard.js:231 msgid "Show Keyboard Shortcuts" -msgstr "Klavye Kısayollarını Göster" +msgstr "" #: public/js/frappe/views/kanban/kanban_settings.js:30 msgid "Show Labels" @@ -28370,13 +29711,13 @@ msgstr "" #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Show Language Picker" -msgstr "Dil Seçiciyi Göster" +msgstr "" #. Label of a Check field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Show Line Breaks after Sections" -msgstr "Göster Hattı Bölümler sonra Kırdı" +msgstr "" #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json @@ -28384,15 +29725,25 @@ msgctxt "Web Form" msgid "Show List" msgstr "" +#: desk/page/user_profile/user_profile_controller.js:472 +msgid "Show More Activity" +msgstr "" + +#. Label of a Check field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "Show Only Failed Logs" +msgstr "" + #. Label of a Check field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Show Percentage Stats" -msgstr "Yüzde İstatistiklerini Göster" +msgstr "" #: core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 msgid "Show Permissions" -msgstr "İzinleri göster" +msgstr "" #: public/js/form_builder/form_builder.bundle.js:31 #: public/js/form_builder/form_builder.bundle.js:43 @@ -28405,13 +29756,13 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Show Preview Popup" -msgstr "Önizleme Açılır Penceresini Göster" +msgstr "" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Show Preview Popup" -msgstr "Önizleme Açılır Penceresini Göster" +msgstr "" #. Label of a Check field in DocType 'System Console' #: desk/doctype/system_console/system_console.json @@ -28426,14 +29777,15 @@ msgstr "" #: core/doctype/prepared_report/prepared_report.js:43 #: core/doctype/report/report.js:13 msgid "Show Report" -msgstr "Raporu göster" +msgstr "" #. Label of a Button field in DocType 'Access Log' #: core/doctype/access_log/access_log.json msgctxt "Access Log" msgid "Show Report" -msgstr "Raporu göster" +msgstr "" +#: public/js/frappe/list/list_filter.js:15 #: public/js/frappe/list/list_filter.js:87 msgid "Show Saved" msgstr "" @@ -28442,57 +29794,62 @@ msgstr "" #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Show Section Headings" -msgstr "Göster Bölüm Başlıkları" +msgstr "" #. Label of a Check field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Show Sidebar" -msgstr "göster Kenar Çubuğu" +msgstr "" #. Label of a Check field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Show Sidebar" -msgstr "göster Kenar Çubuğu" +msgstr "" -#: public/js/frappe/list/list_view.js:1566 +#: public/js/frappe/list/list_sidebar.html:66 +#: public/js/frappe/list/list_view.js:1612 msgid "Show Tags" -msgstr "Etiketleri Göster" +msgstr "" #. Label of a Check field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Show Title" -msgstr "Göster Başlığı" +msgstr "" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Show Title in Link Fields" -msgstr "" +msgstr "Bağlantı Alanlarında Başlığı Göster" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Show Title in Link Fields" -msgstr "" +msgstr "Bağlantı Alanlarında Başlığı Göster" -#: public/js/frappe/views/reports/report_view.js:1453 +#: public/js/frappe/views/reports/report_view.js:1450 msgid "Show Totals" -msgstr "Toplamları Göster" +msgstr "" #: desk/doctype/form_tour/form_tour.js:116 msgid "Show Tour" -msgstr "" +msgstr "Turu Göster" + +#: core/doctype/data_import/data_import.js:454 +msgid "Show Traceback" +msgstr "Geri İzlemeyi Göster" #: public/js/frappe/data_import/import_preview.js:200 msgid "Show Warnings" -msgstr "Uyarıları Göster" +msgstr "" -#: public/js/frappe/views/calendar/calendar.js:184 +#: public/js/frappe/views/calendar/calendar.js:185 msgid "Show Weekends" -msgstr "Hafta sonlarını Göster" +msgstr "" #. Label of a Check field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -28502,7 +29859,11 @@ msgstr "" #: core/doctype/version/version.js:6 msgid "Show all Versions" -msgstr "Tüm Sürümleri Göster" +msgstr "" + +#: public/js/frappe/form/footer/form_timeline.js:67 +msgid "Show all activity" +msgstr "" #: website/doctype/blog_post/templates/blog_post_list.html:24 msgid "Show all blogs" @@ -28512,7 +29873,7 @@ msgstr "" #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Show as cc" -msgstr "cc olarak Göster" +msgstr "" #. Label of a Check field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -28525,19 +29886,19 @@ msgstr "" #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Show full form instead of a quick entry modal" -msgstr "Hızlı giriş modeli yerine tam formu göster" +msgstr "" #. Label of a Select field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Show in Module Section" -msgstr "Modül Bölüm Göster" +msgstr "" #. Label of a Check field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Show in filter" -msgstr "Filtrede göster" +msgstr "" #. Label of a Check field in DocType 'Slack Webhook URL' #: integrations/doctype/slack_webhook_url/slack_webhook_url.json @@ -28545,26 +29906,34 @@ msgctxt "Slack Webhook URL" msgid "Show link to document" msgstr "" -#: public/js/frappe/form/layout.js:265 +#: public/js/frappe/form/layout.js:247 public/js/frappe/form/layout.js:265 msgid "Show more details" -msgstr "Daha fazla ayrıntı Göster" +msgstr "" #. Description of the 'Stats Time Interval' (Select) field in DocType 'Number #. Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Show percentage difference according to this time interval" -msgstr "Bu zaman aralığına göre yüzde farkını göster" +msgstr "" #. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Show title in browser window as \"Prefix - title\"" -msgstr "Olarak tarayıcı penceresinde göster başlığı 'Önek - title'" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:475 +#: public/js/frappe/widgets/onboarding_widget.js:148 +msgid "Show {0} List" +msgstr "" + +#: public/js/frappe/views/reports/report_view.js:470 msgid "Showing only Numeric fields from Report" -msgstr "Yalnızca Rapor'dan sayısal alanlar gösteriliyor" +msgstr "" + +#: public/js/frappe/data_import/import_preview.js:149 +msgid "Showing only first {0} rows out of {1}" +msgstr "" #. Label of a Check field in DocType 'Role' #: core/doctype/role/role.json @@ -28576,19 +29945,19 @@ msgstr "" #: website/doctype/website_sidebar/website_sidebar.json msgctxt "Website Sidebar" msgid "Sidebar Items" -msgstr "Kenar çubuğu Öğeler" +msgstr "" #. Label of a Section Break field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Sidebar Settings" -msgstr "Kenar çubuğu ayarları" +msgstr "" #. Label of a Section Break field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Sidebar and Comments" -msgstr "Kenar çubuğu ve Yorumlar" +msgstr "" #. Label of a Section Break field in DocType 'Email Group' #: email/doctype/email_group/email_group.json @@ -28596,14 +29965,14 @@ msgctxt "Email Group" msgid "Sign Up and Confirmation" msgstr "" -#: core/doctype/user/user.py:972 +#: core/doctype/user/user.py:1012 msgid "Sign Up is disabled" -msgstr "Yeni kayıtlar devredışı" +msgstr "" #: templates/signup.html:16 www/login.html:120 www/login.html:136 #: www/update-password.html:35 msgid "Sign up" -msgstr "Kaydol" +msgstr "" #. Label of a Select field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json @@ -28615,105 +29984,110 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Signature" -msgstr "İmza" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Signature" -msgstr "İmza" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Signature" -msgstr "İmza" +msgstr "" #. Label of a Section Break field in DocType 'Email Account' #. Label of a Text Editor field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Signature" -msgstr "İmza" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Signature" -msgstr "İmza" +msgstr "" #: www/login.html:148 msgid "Signup Disabled" -msgstr "Kayıt Devre Dışı" +msgstr "" #: www/login.html:149 msgid "Signups have been disabled for this website." -msgstr "Bu web sitesi için kayıtlar devre dışı bırakıldı." +msgstr "" #. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment #. Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Basit Python İfadesi, Örnek: Durumdaki ('Kapalı', 'İptal edildi')" +msgstr "" #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Basit Python İfadesi, Örnek: Durum ('Geçersiz')" +msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Basit Python İfadesi, Örnek: status == 'Aç' ve == 'Hata' yazın" +msgstr "" #. Label of a Int field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Simultaneous Sessions" -msgstr "Eşzamanlı Oturumlar" +msgstr "" #: custom/doctype/customize_form/customize_form.py:121 msgid "Single DocTypes cannot be customized." -msgstr "Tek Doküman Tipleri özelleştirilemez." +msgstr "" -#: core/doctype/doctype/doctype_list.js:51 +#: core/doctype/doctype/doctype_list.js:67 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" -msgstr "Tek Türleri ilişkili tek bir kayıt yok tablolar var. Değerler tabSingles depolanan" +msgstr "" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" -msgstr "Tek Türleri ilişkili tek bir kayıt yok tablolar var. Değerler tabSingles depolanan" +msgstr "" -#: database/database.py:230 +#: database/database.py:237 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 "" +#: public/js/frappe/views/file/file_view.js:318 +msgid "Size" +msgstr "Boyut" + +#: public/js/frappe/widgets/onboarding_widget.js:82 #: public/js/onboarding_tours/onboarding_tours.js:18 msgid "Skip" -msgstr "Atla" +msgstr "" #. Label of a Check field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "Skip Authorization" -msgstr "Yetkilendirme atla" +msgstr "" #. Label of a Select field in DocType 'OAuth Provider Settings' #: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgctxt "OAuth Provider Settings" msgid "Skip Authorization" -msgstr "Yetkilendirme atla" +msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:337 msgid "Skip Step" -msgstr "Adımı Atla" +msgstr "" #. Label of a Check field in DocType 'Patch Log' #: core/doctype/patch_log/patch_log.json @@ -28721,19 +30095,19 @@ msgctxt "Patch Log" msgid "Skipped" msgstr "" -#: core/doctype/data_import/importer.py:905 +#: core/doctype/data_import/importer.py:902 msgid "Skipping Duplicate Column {0}" -msgstr "Yinelenen Sütun {0} Atlanıyor" +msgstr "" -#: core/doctype/data_import/importer.py:930 +#: core/doctype/data_import/importer.py:927 msgid "Skipping Untitled Column" -msgstr "Adsız Sütunu Atla" +msgstr "" -#: core/doctype/data_import/importer.py:916 +#: core/doctype/data_import/importer.py:913 msgid "Skipping column {0}" -msgstr "{0} sütunu atlanıyor" +msgstr "" -#: modules/utils.py:162 +#: modules/utils.py:158 msgid "Skipping fixture syncing for doctype {0} from file {1}" msgstr "" @@ -28745,34 +30119,34 @@ msgstr "" #: website/doctype/contact_us_settings/contact_us_settings.json msgctxt "Contact Us Settings" msgid "Skype" -msgstr "Skype" +msgstr "" #. Option for the 'Channel' (Select) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Slack" -msgstr "Gevşek" +msgstr "" #. Label of a Link field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Slack Channel" -msgstr "Slack Kanal" +msgstr "" -#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:64 +#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 msgid "Slack Webhook Error" -msgstr "Slack Webhook Hatası" +msgstr "" #. Name of a DocType #: integrations/doctype/slack_webhook_url/slack_webhook_url.json msgid "Slack Webhook URL" -msgstr "Slack Webhook URL'si" +msgstr "" #. Label of a Link in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgctxt "Slack Webhook URL" msgid "Slack Webhook URL" -msgstr "Slack Webhook URL'si" +msgstr "" #. Label of a Link field in DocType 'Web Page' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' @@ -28785,49 +30159,54 @@ msgstr "Slayt Gösterisi" #: website/doctype/website_slideshow/website_slideshow.json msgctxt "Website Slideshow" msgid "Slideshow Items" -msgstr "Slayt Ürünler" +msgstr "" #. Label of a Data field in DocType 'Website Slideshow' #: website/doctype/website_slideshow/website_slideshow.json msgctxt "Website Slideshow" msgid "Slideshow Name" -msgstr "Slayt İsmi" +msgstr "" + +#. Description of a DocType +#: website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Small Text" -msgstr "Küçük Metin" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Small Text" -msgstr "Küçük Metin" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Small Text" -msgstr "Küçük Metin" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Small Text" -msgstr "Küçük Metin" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Small Text" -msgstr "Küçük Metin" +msgstr "" #. Label of a Currency field in DocType 'Currency' #: geo/doctype/currency/currency.json msgctxt "Currency" msgid "Smallest Currency Fraction Value" -msgstr "Küçük Döviz Kesir Değeri" +msgstr "" #. Description of the 'Smallest Currency Fraction Value' (Currency) field in #. DocType 'Currency' @@ -28836,79 +30215,91 @@ msgctxt "Currency" msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01" msgstr "" +#: printing/doctype/letter_head/letter_head.js:32 +msgid "Snippet and more variables: {0}" +msgstr "" + #. Name of a DocType #: website/doctype/social_link_settings/social_link_settings.json msgid "Social Link Settings" -msgstr "Sosyal Bağlantı Ayarları" +msgstr "" #. Label of a Select field in DocType 'Social Link Settings' #: website/doctype/social_link_settings/social_link_settings.json msgctxt "Social Link Settings" msgid "Social Link Type" -msgstr "Sosyal Bağlantı Türü" +msgstr "" #. Name of a DocType #: integrations/doctype/social_login_key/social_login_key.json msgid "Social Login Key" -msgstr "Sosyal Giriş Anahtarı" +msgstr "" #. Label of a Link in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgctxt "Social Login Key" msgid "Social Login Key" -msgstr "Sosyal Giriş Anahtarı" +msgstr "" #. Label of a Select field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "Social Login Provider" -msgstr "Sosyal Giriş Sağlayıcısı" +msgstr "" #. Label of a Table field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Social Logins" -msgstr "Sosyal Girişler" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Soft-Bounced" -msgstr "-Soft Geri Döndü" +msgstr "" + +#: 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 "" #: 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 "Bazı özellikler tarayıcınızda çalışmayabilir. Lütfen tarayıcınızı en yeni sürüme güncelleyin." +msgstr "" #: public/js/frappe/views/translation_manager.js:101 msgid "Something went wrong" -msgstr "Bir şeyler yanlış gitti" +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:116 +#: integrations/doctype/google_calendar/google_calendar.py:117 msgid "Something went wrong during the token generation. Click on {0} to generate a new one." -msgstr "Jeton üretimi sırasında bir şeyler ters gitti. Yeni bir tane oluşturmak için {0} 'a tıklayın." +msgstr "" -#: public/js/frappe/views/pageview.js:110 +#: templates/includes/login/login.js:294 +msgid "Something went wrong." +msgstr "" + +#: public/js/frappe/views/pageview.js:114 msgid "Sorry! I could not find what you were looking for." -msgstr "Maalesef! Ben sizin için ne aradığını bulamadı." +msgstr "" -#: public/js/frappe/views/pageview.js:118 +#: public/js/frappe/views/pageview.js:122 msgid "Sorry! You are not permitted to view this page." -msgstr "Maalesef! Bu sayfayı görüntülemek için izin verilmez." +msgstr "" #: public/js/frappe/utils/datatable.js:6 msgid "Sort Ascending" -msgstr "" +msgstr "Artan Sıralama" #: public/js/frappe/utils/datatable.js:7 msgid "Sort Descending" -msgstr "" +msgstr "Azalan Sıralama" #. Label of a Select field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Sort Field" -msgstr "Sıralama Alanı" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json @@ -28932,13 +30323,13 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Sort Order" -msgstr "Sıralama" +msgstr "" -#: core/doctype/doctype/doctype.py:1501 +#: core/doctype/doctype/doctype.py:1499 msgid "Sort field {0} must be a valid fieldname" -msgstr "Sıralama alanı {0} geçerli bir AlanAdı olmalıdır" +msgstr "" -#: public/js/frappe/utils/utils.js:1705 +#: public/js/frappe/ui/toolbar/about.js:8 public/js/frappe/utils/utils.js:1706 #: website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Kaynak" @@ -28963,43 +30354,48 @@ msgstr "Kaynak Adı" #: public/js/frappe/views/translation_manager.js:38 msgid "Source Text" -msgstr "Kaynak Metin" +msgstr "" #. Label of a Code field in DocType 'Translation' #: core/doctype/translation/translation.json msgctxt "Translation" msgid "Source Text" -msgstr "Kaynak Metin" +msgstr "" + +#: public/js/frappe/views/workspace/blocks/spacer.js:23 +msgid "Spacer" +msgstr "" #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Spam" -msgstr "İstenmeyen e" +msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "SparkPost" -msgstr "SparkPost" +msgstr "" #: custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" -msgstr "Özel Karakterler izin verilmez" +msgstr "" -#: model/naming.py:58 +#: model/naming.py:61 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" -msgstr ""-", "#", ".", "/", "{{" ve "}}" Dış Özel Karakterler, dizi dizisine izin verilmez {0}" +msgstr "" #. Label of a Attach Image field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Splash Image" -msgstr "Açılış Görüntüsü" +msgstr "" -#: desk/reportview.py:365 templates/print_formats/standard_macros.html:44 +#: desk/reportview.py:382 public/js/frappe/web_form/web_form_list.js:175 +#: templates/print_formats/standard_macros.html:44 msgid "Sr" -msgstr "Kıdemli" +msgstr "Sr" #: core/doctype/recorder/recorder.js:33 msgid "Stack Trace" @@ -29013,69 +30409,69 @@ msgstr "" #: core/doctype/user_type/user_type_list.js:5 msgid "Standard" -msgstr "Standart" +msgstr "" #. Label of a Check field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "Standard" -msgstr "Standart" +msgstr "" #. Label of a Select field in DocType 'Page' #: core/doctype/page/page.json msgctxt "Page" msgid "Standard" -msgstr "Standart" +msgstr "" #. Label of a Select field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Standard" -msgstr "Standart" +msgstr "" #. Label of a Check field in DocType 'Print Format Field Template' #: printing/doctype/print_format_field_template/print_format_field_template.json msgctxt "Print Format Field Template" msgid "Standard" -msgstr "Standart" +msgstr "" #. Label of a Check field in DocType 'Print Style' #: printing/doctype/print_style/print_style.json msgctxt "Print Style" msgid "Standard" -msgstr "Standart" +msgstr "" #. Label of a Check field in DocType 'Web Template' #: website/doctype/web_template/web_template.json msgctxt "Web Template" msgid "Standard" -msgstr "Standart" +msgstr "" -#: model/delete_doc.py:79 +#: model/delete_doc.py:78 msgid "Standard DocType can not be deleted." msgstr "" -#: core/doctype/doctype/doctype.py:228 +#: core/doctype/doctype/doctype.py:223 msgid "Standard DocType cannot have default print format, use Customize Form" -msgstr "Standart DocType varsayılan yazdırma biçimine sahip olamaz, Formu Özelleştir'i kullanın" +msgstr "" -#: desk/doctype/dashboard/dashboard.py:59 +#: desk/doctype/dashboard/dashboard.py:58 msgid "Standard Not Set" -msgstr "Standart Ayarlanmadı" +msgstr "" -#: printing/doctype/print_format/print_format.py:74 +#: printing/doctype/print_format/print_format.py:73 msgid "Standard Print Format cannot be updated" -msgstr "Standart Baskı Biçimi güncellenen olamaz" +msgstr "" #: printing/doctype/print_style/print_style.py:31 msgid "Standard Print Style cannot be changed. Please duplicate to edit." -msgstr "Standart Baskı Stili değiştirilemez. Düzenlemek için lütfen çoğaltın." +msgstr "" -#: desk/reportview.py:316 +#: desk/reportview.py:333 msgid "Standard Reports cannot be deleted" msgstr "" -#: desk/reportview.py:287 +#: desk/reportview.py:304 msgid "Standard Reports cannot be edited" msgstr "" @@ -29083,15 +30479,23 @@ msgstr "" #: website/doctype/portal_settings/portal_settings.json msgctxt "Portal Settings" msgid "Standard Sidebar Menu" -msgstr "Standart Kenar Çubuğu Menüsü" +msgstr "" -#: core/doctype/role/role.py:61 +#: website/doctype/web_form/web_form.js:40 +msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." +msgstr "" + +#: website/doctype/web_page/web_page.js:92 +msgid "Standard rich text editor with controls" +msgstr "" + +#: core/doctype/role/role.py:65 msgid "Standard roles cannot be disabled" -msgstr "Standart roller devre dışı bırakılamaz" +msgstr "" -#: core/doctype/role/role.py:48 +#: core/doctype/role/role.py:51 msgid "Standard roles cannot be renamed" -msgstr "Standart roller yeniden adlandırılamaz" +msgstr "" #: core/doctype/user_type/user_type.py:60 msgid "Standard user type {0} can not be deleted." @@ -29099,10 +30503,10 @@ msgstr "" #: templates/emails/energy_points_summary.html:33 msgid "Standings" -msgstr "Sıralamalar" +msgstr "" -#: core/doctype/recorder/recorder_list.js:91 printing/page/print/print.js:289 -#: printing/page/print/print.js:336 +#: core/doctype/recorder/recorder_list.js:87 printing/page/print/print.js:296 +#: printing/page/print/print.js:343 msgid "Start" msgstr "Başlangıç" @@ -29132,17 +30536,21 @@ msgstr "Başlangıç Tarihi" #: desk/doctype/calendar_view/calendar_view.json msgctxt "Calendar View" msgid "Start Date Field" -msgstr "Başlangıç Tarihi Alanı" +msgstr "" #: core/doctype/data_import/data_import.js:110 msgid "Start Import" -msgstr "İçe Aktarmayı Başlat" +msgstr "" + +#: core/doctype/recorder/recorder_list.js:201 +msgid "Start Recording" +msgstr "" #. Label of a Datetime field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "Start Time" -msgstr "Başlama Zamanı" +msgstr "Başlangıç Zamanı" #: templates/includes/comments/comments.html:8 msgid "Start a new discussion" @@ -29150,23 +30558,23 @@ msgstr "" #: core/doctype/data_export/exporter.py:22 msgid "Start entering data below this line" -msgstr "Bu çizginin altına verileri girmeye başlayın" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:165 msgid "Start new Format" -msgstr "Yeni Format başlat" +msgstr "" #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json msgctxt "LDAP Settings" msgid "StartTLS" -msgstr "StartTLS" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' #: core/doctype/prepared_report/prepared_report.json msgctxt "Prepared Report" msgid "Started" -msgstr "Başlatılan" +msgstr "" #. Label of a Datetime field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -29176,13 +30584,17 @@ msgstr "" #: desk/page/setup_wizard/setup_wizard.js:274 msgid "Starting Frappe ..." -msgstr "Frappe başlıyor ..." +msgstr "" #. Label of a Datetime field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Starts on" -msgstr "Başlıyor" +msgstr "" + +#: workflow/doctype/workflow/workflow.js:162 +msgid "State" +msgstr "Eyalet" #. Label of a Data field in DocType 'Contact Us Settings' #: website/doctype/contact_us_settings/contact_us_settings.json @@ -29218,244 +30630,252 @@ msgstr "Eyalet" #: contacts/doctype/address/address.json msgctxt "Address" msgid "State/Province" -msgstr "Eyalet / İl" +msgstr "" #. Label of a Table field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "States" -msgstr "Durumlar" +msgstr "" #. Label of a Table field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "States" -msgstr "Durumlar" +msgstr "" #. Label of a Section Break field in DocType 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "States" -msgstr "Durumlar" +msgstr "" #. Label of a Table field in DocType 'SMS Settings' #: core/doctype/sms_settings/sms_settings.json msgctxt "SMS Settings" msgid "Static Parameters" -msgstr "Statik Parametreleri" +msgstr "" #. Label of a Section Break field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "Statistics" -msgstr "" +msgstr "İstatistik" #: public/js/frappe/form/dashboard.js:43 +#: public/js/frappe/form/templates/form_dashboard.html:13 msgid "Stats" -msgstr "İstatistikler" +msgstr "" #. Label of a Section Break field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Stats" -msgstr "İstatistikler" +msgstr "" #. Label of a Select field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Stats Time Interval" -msgstr "İstatistikler Zaman Aralığı" +msgstr "" + +#: social/doctype/energy_point_log/energy_point_log.py:389 +msgid "Stats based on last month's performance (from {0} to {1})" +msgstr "" #: social/doctype/energy_point_log/energy_point_log.py:391 -msgid "Stats based on last month's performance (from {0} to {1})" -msgstr "Geçen ayın performansına göre istatistikler ({0} - {1} arası)" - -#: social/doctype/energy_point_log/energy_point_log.py:393 msgid "Stats based on last week's performance (from {0} to {1})" -msgstr "Geçen haftaki performansa dayalı istatistikler ({0} - {1} arası)" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:911 +#: core/doctype/data_import/data_import.js:489 +#: public/js/frappe/views/reports/report_view.js:908 msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Section Break field in DocType 'Communication' #. Label of a Select field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Email Queue Recipient' #: email/doctype/email_queue_recipient/email_queue_recipient.json msgctxt "Email Queue Recipient" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Event' #: desk/doctype/event/event.json msgctxt "Event" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Integration Request' #: integrations/doctype/integration_request/integration_request.json msgctxt "Integration Request" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Section Break field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'OAuth Bearer Token' #: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgctxt "OAuth Bearer Token" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Personal Data Deletion Request' #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgctxt "Personal Data Deletion Request" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Personal Data Deletion Step' #: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgctxt "Personal Data Deletion Step" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Prepared Report' #: core/doctype/prepared_report/prepared_report.json msgctxt "Prepared Report" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json msgctxt "RQ Job" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Data field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json msgctxt "RQ Worker" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Scheduled Job Log' #: core/doctype/scheduled_job_log/scheduled_job_log.json msgctxt "Scheduled Job Log" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Section Break field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Submission Queue' #: core/doctype/submission_queue/submission_queue.json msgctxt "Submission Queue" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'ToDo' #: desk/doctype/todo/todo.json msgctxt "ToDo" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. Label of a Select field in DocType 'Workflow Action' #: workflow/doctype/workflow_action/workflow_action.json msgctxt "Workflow Action" msgid "Status" -msgstr "Durum" +msgstr "Durumu" #: www/update-password.html:161 msgid "Status Updated" -msgstr "Durum Güncellendi" +msgstr "" #: www/message.html:40 msgid "Status: {0}" -msgstr "Durum: {0}" +msgstr "" #. Label of a Link field in DocType 'Onboarding Step Map' #: desk/doctype/onboarding_step_map/onboarding_step_map.json msgctxt "Onboarding Step Map" msgid "Step" -msgstr "Adım" +msgstr "" #. Label of a Table field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Steps" -msgstr "Adımlar" +msgstr "" #. Label of a Table field in DocType 'Module Onboarding' #: desk/doctype/module_onboarding/module_onboarding.json msgctxt "Module Onboarding" msgid "Steps" -msgstr "Adımlar" +msgstr "" #: www/qrcode.html:11 msgid "Steps to verify your login" -msgstr "Girişinizi doğrulamak için gereken adımlar" - -#: core/doctype/recorder/recorder_list.js:91 -msgid "Stop" msgstr "" +#: core/doctype/recorder/recorder_list.js:87 +msgid "Stop" +msgstr "Durdur" + #. Label of a Check field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Stopped" msgstr "Durduruldu" +#. Label of a Check field in DocType 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "Store Attached PDF Document" +msgstr "" + #. Description of the 'Last Known Versions' (Text) field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes." -msgstr "Mağazalar, çeşitli yüklü uygulamalar bilinen en son sürümlerinin JSON. Bu sürüm notları göstermek için kullanılır." +msgstr "" #. Description of the 'Last Reset Password Key Generated On' (Datetime) field #. in DocType 'User' @@ -29464,9 +30884,9 @@ msgctxt "User" msgid "Stores the datetime when the last reset password key was generated." msgstr "" -#: utils/password_strength.py:99 +#: utils/password_strength.py:97 msgid "Straight rows of keys are easy to guess" -msgstr "tuşları düz satırlar tahmin etmek kolaydır" +msgstr "" #. Label of a Check field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -29482,52 +30902,52 @@ msgstr "" #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Style" -msgstr "Stil" +msgstr "" #. Label of a Select field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "Style" -msgstr "Stil" +msgstr "" #. Label of a Section Break field in DocType 'Print Format' #: printing/doctype/print_format/print_format.json msgctxt "Print Format" msgid "Style Settings" -msgstr "Stil Ayarları" +msgstr "" #. Description of the 'Style' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange" -msgstr "Yeşil, Tehlike - - Kırmızı, Ters - Siyah, İlköğretim - Koyu Mavi, Bilgileri - Açık Mavi, Uyarı - Turuncu Başarı: Stil düğme rengini temsil" +msgstr "" #. Label of a Tab Break field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Stylesheet" -msgstr "Stil sayfası" +msgstr "" #. Description of the 'Fraction' (Data) field in DocType 'Currency' #: geo/doctype/currency/currency.json msgctxt "Currency" msgid "Sub-currency. For e.g. \"Cent\"" -msgstr "Alt para birimi. Örneğin: \"Kuruş\"" +msgstr "" #. Description of the 'Subdomain' (Small Text) field in DocType 'Website #. Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Sub-domain provided by erpnext.com" -msgstr "Erpnext.com tarafından sağlanan Sub-domain" +msgstr "" #. Label of a Small Text field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Subdomain" -msgstr "Subdomain" +msgstr "" -#: public/js/frappe/views/communication.js:103 +#: public/js/frappe/views/communication.js:107 #: public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Konu" @@ -29591,23 +31011,23 @@ msgstr "Konu" #: desk/doctype/calendar_view/calendar_view.json msgctxt "Calendar View" msgid "Subject Field" -msgstr "Konu Alanı" +msgstr "" #. Label of a Data field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Subject Field" -msgstr "Konu Alanı" +msgstr "" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Subject Field" -msgstr "Konu Alanı" +msgstr "" -#: core/doctype/doctype/doctype.py:1878 +#: core/doctype/doctype/doctype.py:1874 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" -msgstr "Konu Alan türü Veri, Metin, Uzun Metin, Küçük Metin, Metin Düzenleyici olmalıdır" +msgstr "" #. Name of a DocType #: core/doctype/submission_queue/submission_queue.json @@ -29615,77 +31035,81 @@ msgid "Submission Queue" msgstr "" #: core/doctype/user_permission/user_permission_list.js:138 -#: public/js/frappe/form/quick_entry.js:193 +#: public/js/frappe/form/quick_entry.js:198 #: public/js/frappe/form/sidebar/review.js:116 -#: public/js/frappe/ui/capture.js:299 +#: public/js/frappe/ui/capture.js:307 #: social/doctype/energy_point_log/energy_point_log.js:39 #: social/doctype/energy_point_settings/energy_point_settings.js:47 -#: website/doctype/web_form/templates/web_form.html:44 msgid "Submit" -msgstr "Gönder" +msgstr "Gönder/İşle" -#: public/js/frappe/list/list_view.js:1916 +#: public/js/frappe/list/list_view.js:1986 msgctxt "Button in list view actions menu" msgid "Submit" -msgstr "Gönder" +msgstr "Gönder/İşle" + +#: website/doctype/web_form/templates/web_form.html:44 +msgctxt "Button in web form" +msgid "Submit" +msgstr "Gönder/İşle" #. Label of a Check field in DocType 'Custom DocPerm' #: core/doctype/custom_docperm/custom_docperm.json msgctxt "Custom DocPerm" msgid "Submit" -msgstr "Gönder" +msgstr "Gönder/İşle" #. Label of a Check field in DocType 'DocPerm' #: core/doctype/docperm/docperm.json msgctxt "DocPerm" msgid "Submit" -msgstr "Gönder" +msgstr "Gönder/İşle" #. Label of a Check field in DocType 'DocShare' #: core/doctype/docshare/docshare.json msgctxt "DocShare" msgid "Submit" -msgstr "Gönder" +msgstr "Gönder/İşle" #. Option for the 'For Document Event' (Select) field in DocType 'Energy Point #. Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "Submit" -msgstr "Gönder" +msgstr "Gönder/İşle" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Submit" -msgstr "Gönder" +msgstr "Gönder/İşle" #: public/js/frappe/ui/dialog.js:60 msgctxt "Primary action in dialog" msgid "Submit" -msgstr "Gönder" +msgstr "Gönder/İşle" #: public/js/frappe/ui/messages.js:97 msgctxt "Primary action of prompt dialog" msgid "Submit" -msgstr "Gönder" +msgstr "Gönder/İşle" #: public/js/frappe/desk.js:206 msgctxt "Submit password for Email Account" msgid "Submit" -msgstr "Gönder" +msgstr "Gönder/İşle" #. Label of a Check field in DocType 'User Document Type' #: core/doctype/user_document_type/user_document_type.json msgctxt "User Document Type" msgid "Submit" -msgstr "Gönder" +msgstr "Gönder/İşle" #. Label of a Check field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Submit After Import" -msgstr "İçe Aktardıktan Sonra Gönder" +msgstr "" #. Label of a Data field in DocType 'Web Form' #: website/doctype/web_form/web_form.json @@ -29693,7 +31117,12 @@ msgctxt "Web Form" msgid "Submit Button Label" msgstr "" +#: core/page/permission_manager/permission_manager_help.html:39 +msgid "Submit an Issue" +msgstr "" + #: website/doctype/web_form/templates/web_form.html:153 +msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -29705,38 +31134,38 @@ msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:400 msgid "Submit this document to complete this step." -msgstr "Bu adımı tamamlamak için bu belgeyi gönderin." +msgstr "" #: public/js/frappe/form/form.js:1194 msgid "Submit this document to confirm" -msgstr "Onaylamak için bu belgeyi gönder" +msgstr "" -#: public/js/frappe/list/list_view.js:1921 +#: public/js/frappe/list/list_view.js:1991 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" -msgstr "{0} dokümanı gönderilsin mi?" +msgstr "" #: public/js/frappe/model/indicator.js:95 -#: public/js/frappe/ui/filters/filter.js:494 +#: public/js/frappe/ui/filters/filter.js:495 #: website/doctype/web_form/templates/web_form.html:133 msgid "Submitted" -msgstr "Tanzim Edildi" +msgstr "İşlendi" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Submitted" -msgstr "Tanzim Edildi" +msgstr "İşlendi" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Submitted" -msgstr "Tanzim Edildi" +msgstr "İşlendi" -#: workflow/doctype/workflow/workflow.py:106 +#: workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" -msgstr "Ekleyen Belge taslak geri dönüştürülemez. Geçiş satır {0}" +msgstr "" #: public/js/workflow_builder/utils.js:176 msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State" @@ -29745,9 +31174,9 @@ msgstr "" #: public/js/frappe/form/save.js:10 msgctxt "Freeze message while submitting a document" msgid "Submitting" -msgstr "Tanzim Ediliyor" +msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:91 +#: desk/doctype/bulk_update/bulk_update.py:89 msgid "Submitting {0}" msgstr "" @@ -29755,7 +31184,7 @@ msgstr "" #: contacts/doctype/address/address.json msgctxt "Address" msgid "Subsidiary" -msgstr "Yardımcı" +msgstr "" #. Label of a Data field in DocType 'Blog Settings' #: website/doctype/blog_settings/blog_settings.json @@ -29769,13 +31198,15 @@ msgctxt "Module Onboarding" msgid "Subtitle" msgstr "Alt yazı" -#: core/doctype/data_import/data_import.js:470 +#: core/doctype/data_import/data_import.js:465 #: desk/doctype/bulk_update/bulk_update.js:31 -#: desk/doctype/desktop_icon/desktop_icon.py:452 -#: public/js/frappe/form/grid.js:1133 +#: desk/doctype/desktop_icon/desktop_icon.py:446 +#: public/js/frappe/form/grid.js:1139 #: public/js/frappe/views/translation_manager.js:21 +#: templates/includes/login/login.js:231 templates/includes/login/login.js:237 +#: templates/includes/login/login.js:270 templates/includes/login/login.js:278 #: templates/pages/integrations/gcalendar-success.html:9 -#: workflow/doctype/workflow_action/workflow_action.py:171 +#: workflow/doctype/workflow_action/workflow_action.py:166 msgid "Success" msgstr "Başarılı" @@ -29806,19 +31237,19 @@ msgstr "Başarılı" #. Name of a DocType #: core/doctype/success_action/success_action.json msgid "Success Action" -msgstr "Başarı Eylemi" +msgstr "" #. Label of a Data field in DocType 'Module Onboarding' #: desk/doctype/module_onboarding/module_onboarding.json msgctxt "Module Onboarding" msgid "Success Message" -msgstr "Başarı Mesajı" +msgstr "" #. Label of a Text field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Success Message" -msgstr "Başarı Mesajı" +msgstr "" #. Label of a Data field in DocType 'Web Form' #: website/doctype/web_form/web_form.json @@ -29836,11 +31267,11 @@ msgstr "" #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Success URL" -msgstr "Başarı URL" +msgstr "" #: www/update-password.html:79 msgid "Success! You are good to go 👍" -msgstr "Başarı! İlerleme için iyi durumdasın 👍" +msgstr "" #. Label of a Int field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json @@ -29848,79 +31279,71 @@ msgctxt "RQ Worker" msgid "Successful Job Count" msgstr "" -#: model/workflow.py:306 +#: model/workflow.py:299 msgid "Successful Transactions" -msgstr "Başarılı İşlemler" +msgstr "" -#: model/rename_doc.py:684 +#: model/rename_doc.py:676 msgid "Successful: {0} to {1}" -msgstr "Başarılı: {0} için {1}" +msgstr "" #: social/doctype/energy_point_settings/energy_point_settings.js:41 msgid "Successfully Done" -msgstr "Başarıyla tamamlandı" +msgstr "" #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 msgid "Successfully Updated" -msgstr "Başarıyla güncellendi" +msgstr "" -#: core/doctype/data_import/data_import.js:434 +#: core/doctype/data_import/data_import.js:429 msgid "Successfully imported {0}" msgstr "" -#: desk/doctype/form_tour/form_tour.py:86 +#: core/doctype/data_import/data_import.js:144 +msgid "Successfully imported {0} out of {1} records." +msgstr "" + +#: desk/doctype/form_tour/form_tour.py:87 msgid "Successfully reset onboarding status for all users." msgstr "" #: public/js/frappe/views/translation_manager.js:22 msgid "Successfully updated translations" -msgstr "Başarıyla güncellenen çeviriler" +msgstr "" -#: core/doctype/data_import/data_import.js:442 +#: core/doctype/data_import/data_import.js:437 msgid "Successfully updated {0}" msgstr "" #: core/doctype/data_import/data_import.js:149 -msgid "Successfully {0} 1 record." +msgid "Successfully updated {0} out of {1} records." msgstr "" -#: core/doctype/data_import/data_import.js:156 -msgid "Successfully {0} {1} record out of {2}. Click on Export Errored Rows, fix the errors and import again." -msgstr "" - -#: core/doctype/data_import/data_import.js:161 -msgid "Successfully {0} {1} records out of {2}. Click on Export Errored Rows, fix the errors and import again." -msgstr "" - -#: core/doctype/data_import/data_import.js:151 -msgid "Successfully {0} {1} records." -msgstr "" - -#: core/doctype/user/user.py:679 +#: core/doctype/user/user.py:727 msgid "Suggested Username: {0}" -msgstr "Önerilen adı: {0}" +msgstr "" #: public/js/frappe/ui/group_by/group_by.js:20 msgid "Sum" -msgstr "toplam" +msgstr "" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Sum" -msgstr "toplam" +msgstr "" #. Option for the 'Function' (Select) field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "Sum" -msgstr "toplam" +msgstr "" -#: public/js/frappe/ui/group_by/group_by.js:330 +#: public/js/frappe/ui/group_by/group_by.js:328 msgid "Sum of {0}" -msgstr "{0} toplamı" +msgstr "" #: public/js/frappe/views/interaction.js:88 msgid "Summary" @@ -29959,9 +31382,9 @@ msgstr "Pazar" #: email/doctype/email_queue/email_queue_list.js:27 msgid "Suspend Sending" -msgstr "gönderme Askıya" +msgstr "" -#: public/js/frappe/ui/capture.js:268 +#: public/js/frappe/ui/capture.js:276 msgid "Switch Camera" msgstr "" @@ -29971,9 +31394,9 @@ msgstr "" #: templates/includes/navbar/navbar_login.html:17 msgid "Switch To Desk" -msgstr "Kontrol Paneline Geç" +msgstr "" -#: public/js/frappe/ui/capture.js:273 +#: public/js/frappe/ui/capture.js:281 msgid "Switching Camera" msgstr "" @@ -29981,33 +31404,33 @@ msgstr "" #: geo/doctype/currency/currency.json msgctxt "Currency" msgid "Symbol" -msgstr "Sembol" +msgstr "" #. Label of a Section Break field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" msgid "Sync" -msgstr "Eşitleme" +msgstr "" #. Label of a Section Break field in DocType 'Google Contacts' #: integrations/doctype/google_contacts/google_contacts.json msgctxt "Google Contacts" msgid "Sync" -msgstr "Eşitleme" +msgstr "" #: integrations/doctype/google_calendar/google_calendar.js:28 msgid "Sync Calendar" -msgstr "Takvimi Senkronize Et" +msgstr "" #: integrations/doctype/google_contacts/google_contacts.js:28 msgid "Sync Contacts" -msgstr "Kişileri Eşitle" +msgstr "" #: custom/doctype/customize_form/customize_form.js:214 msgid "Sync on Migrate" -msgstr "Migrate senkronizasyon" +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:295 +#: integrations/doctype/google_calendar/google_calendar.py:296 msgid "Sync token was invalid and has been reset, Retry syncing." msgstr "" @@ -30015,13 +31438,13 @@ msgstr "" #: desk/doctype/event/event.json msgctxt "Event" msgid "Sync with Google Calendar" -msgstr "Google Takvim ile senkronize et" +msgstr "" #. Label of a Check field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Sync with Google Contacts" -msgstr "Google Kişileri ile senkronize et" +msgstr "" #: custom/doctype/doctype_layout/doctype_layout.js:46 msgid "Sync {0} Fields" @@ -30034,13 +31457,13 @@ msgstr "" #: integrations/doctype/google_calendar/google_calendar.js:31 #: integrations/doctype/google_contacts/google_contacts.js:31 msgid "Syncing" -msgstr "Senkronize ediliyor" +msgstr "" #: integrations/doctype/google_calendar/google_calendar.js:19 msgid "Syncing {0} of {1}" -msgstr "{1} üzerinden {0} senkronizasyonu" +msgstr "" -#: utils/data.py:2424 +#: utils/data.py:2427 msgid "Syntax Error" msgstr "" @@ -30048,12 +31471,12 @@ msgstr "" #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "System" -msgstr "Sistem" +msgstr "" #. Name of a DocType #: desk/doctype/system_console/system_console.json msgid "System Console" -msgstr "Sistem Konsolu" +msgstr "" #: custom/doctype/custom_field/custom_field.py:358 msgid "System Generated Fields can not be renamed" @@ -30062,7 +31485,7 @@ msgstr "" #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "System Logs" -msgstr "" +msgstr "Sistem Logları" #. Name of a role #: automation/doctype/assignment_rule/assignment_rule.json @@ -30165,6 +31588,7 @@ msgstr "" #: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: integrations/doctype/oauth_client/oauth_client.json #: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: integrations/doctype/push_notification_settings/push_notification_settings.json #: integrations/doctype/s3_backup_settings/s3_backup_settings.json #: integrations/doctype/slack_webhook_url/slack_webhook_url.json #: integrations/doctype/social_login_key/social_login_key.json @@ -30203,7 +31627,7 @@ msgstr "" #: email/doctype/notification/notification.json msgctxt "Notification" msgid "System Notification" -msgstr "Sistem Bildirimi" +msgstr "" #. Label of a Section Break field in DocType 'Notification Settings' #: desk/doctype/notification_settings/notification_settings.json @@ -30215,25 +31639,25 @@ msgstr "" #: core/doctype/page/page.json msgctxt "Page" msgid "System Page" -msgstr "Sistem Sayfası" +msgstr "" #. Name of a DocType #: core/doctype/system_settings/system_settings.json msgid "System Settings" -msgstr "Sistem Ayarları" +msgstr "" #. Label of a shortcut in the Build Workspace #: core/workspace/build/build.json msgctxt "System Settings" msgid "System Settings" -msgstr "Sistem Ayarları" +msgstr "" #. Description of the 'Allow Roles' (Table MultiSelect) field in DocType #. 'Module Onboarding' #: desk/doctype/module_onboarding/module_onboarding.json msgctxt "Module Onboarding" msgid "System managers are allowed by default" -msgstr "Sistem yöneticilerine varsayılan olarak izin verilir" +msgstr "" #: public/js/frappe/utils/number_systems.js:5 msgctxt "Number system" @@ -30259,38 +31683,43 @@ msgid "Tab Break" msgstr "" #: core/doctype/data_export/exporter.py:23 +#: printing/page/print_format_builder/print_format_builder_field.html:38 msgid "Table" -msgstr "Tablo" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Table" -msgstr "Tablo" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Table" -msgstr "Tablo" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Table" -msgstr "Tablo" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Table" -msgstr "Tablo" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Table Break" -msgstr "Masa Arası" +msgstr "" + +#: core/doctype/version/version_view.html:72 +msgid "Table Field" +msgstr "" #. Label of a Data field in DocType 'DocType Link' #: core/doctype/doctype_link/doctype_link.json @@ -30298,7 +31727,7 @@ msgctxt "DocType Link" msgid "Table Fieldname" msgstr "" -#: core/doctype/doctype/doctype.py:1154 +#: core/doctype/doctype/doctype.py:1152 msgid "Table Fieldname Missing" msgstr "" @@ -30306,33 +31735,33 @@ msgstr "" #: core/doctype/version/version.json msgctxt "Version" msgid "Table HTML" -msgstr "Tablo HTML" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Table MultiSelect" -msgstr "Tablo Çoklu Seçim" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Table MultiSelect" -msgstr "Tablo Çoklu Seçim" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Table MultiSelect" -msgstr "Tablo Çoklu Seçim" +msgstr "" -#: public/js/frappe/form/grid.js:1132 +#: public/js/frappe/form/grid.js:1138 msgid "Table updated" -msgstr "Tablo güncellendi" +msgstr "" -#: model/document.py:1366 +#: model/document.py:1370 msgid "Table {0} cannot be empty" -msgstr "Tablo {0} boş olamaz" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json @@ -30348,28 +31777,29 @@ msgstr "Etiket" #. Name of a DocType #: desk/doctype/tag_link/tag_link.json msgid "Tag Link" -msgstr "Etiket Bağlantısı" +msgstr "" -#: model/__init__.py:148 model/meta.py:52 -#: public/js/frappe/list/bulk_operations.js:365 +#: model/meta.py:52 public/js/frappe/form/templates/form_sidebar.html:100 +#: public/js/frappe/list/bulk_operations.js:400 +#: public/js/frappe/list/list_sidebar.html:50 #: public/js/frappe/list/list_sidebar.js:226 public/js/frappe/model/meta.js:204 #: public/js/frappe/model/model.js:123 #: public/js/frappe/ui/toolbar/awesome_bar.js:171 msgid "Tags" -msgstr "Etiketler" +msgstr "" -#: integrations/doctype/google_drive/google_drive.js:28 +#: integrations/doctype/google_drive/google_drive.js:29 msgid "Take Backup" -msgstr "Yedekleme al" +msgstr "" #: integrations/doctype/dropbox_settings/dropbox_settings.js:39 #: integrations/doctype/s3_backup_settings/s3_backup_settings.js:12 msgid "Take Backup Now" -msgstr "Şimdi Yedekleme alın" +msgstr "" -#: public/js/frappe/ui/capture.js:212 +#: public/js/frappe/ui/capture.js:220 msgid "Take Photo" -msgstr "Fotoğraf çek" +msgstr "" #. Label of a Data field in DocType 'Portal Menu Item' #: website/doctype/portal_menu_item/portal_menu_item.json @@ -30389,20 +31819,20 @@ msgstr "Görev" #: www/about.html:45 msgid "Team Members" -msgstr "Ekip Üyeleri" +msgstr "" #. Label of a Section Break field in DocType 'About Us Settings' #. Label of a Table field in DocType 'About Us Settings' #: website/doctype/about_us_settings/about_us_settings.json msgctxt "About Us Settings" msgid "Team Members" -msgstr "Ekip Üyeleri" +msgstr "" #. Label of a Data field in DocType 'About Us Settings' #: website/doctype/about_us_settings/about_us_settings.json msgctxt "About Us Settings" msgid "Team Members Heading" -msgstr "Ekip Üyeleri Başlığı" +msgstr "" #. Label of a Small Text field in DocType 'About Us Settings' #: website/doctype/about_us_settings/about_us_settings.json @@ -30440,10 +31870,10 @@ msgctxt "Web Template" msgid "Template" msgstr "Şablon" -#: core/doctype/data_import/importer.py:468 -#: core/doctype/data_import/importer.py:596 +#: core/doctype/data_import/importer.py:464 +#: core/doctype/data_import/importer.py:591 msgid "Template Error" -msgstr "Şablon Hatası" +msgstr "" #. Label of a Data field in DocType 'Print Format Field Template' #: printing/doctype/print_format_field_template/print_format_field_template.json @@ -30455,105 +31885,111 @@ msgstr "" #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Template Options" -msgstr "Şablon Seçenekleri" +msgstr "" #. Label of a Code field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Template Warnings" -msgstr "Şablon Uyarıları" +msgstr "" #: public/js/frappe/views/workspace/blocks/paragraph.js:78 msgid "Templates" msgstr "" -#: core/doctype/user/user.py:983 +#: core/doctype/user/user.py:1023 msgid "Temporarily Disabled" -msgstr "Geçici Olarak Devre Dışı Bırakıldı" +msgstr "" #: email/doctype/newsletter/newsletter.py:94 msgid "Test email sent to {0}" -msgstr "{0} adresine test e-postası gönderildi" +msgstr "" -#: core/doctype/file/test_file.py:357 +#: core/doctype/file/test_file.py:361 msgid "Test_Folder" -msgstr "Test_Folder" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Text" -msgstr "Metin" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Text" -msgstr "Metin" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Text" -msgstr "Metin" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Text" -msgstr "Metin" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: website/doctype/web_template_field/web_template_field.json msgctxt "Web Template Field" msgid "Text" -msgstr "Metin" +msgstr "" #. Label of a Select field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Text Align" -msgstr "Metin Hizala" +msgstr "" #. Label of a Link field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Text Color" -msgstr "Metin Rengi" +msgstr "" #. Label of a Code field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Text Content" -msgstr "Metin İçerik" +msgstr "" #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Text Editor" -msgstr "Metin Düzenleyici" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Text Editor" -msgstr "Metin Düzenleyici" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Text Editor" -msgstr "Metin Düzenleyici" +msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: website/doctype/web_form_field/web_form_field.json msgctxt "Web Form Field" msgid "Text Editor" -msgstr "Metin Düzenleyici" +msgstr "" #: templates/emails/password_reset.html:5 msgid "Thank you" -msgstr "Teşekkürler" +msgstr "" + +#: www/contact.py:37 +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 "" #: website/doctype/web_form/templates/web_form.html:137 msgid "Thank you for spending your valuable time to fill this form" @@ -30561,15 +31997,15 @@ msgstr "" #: templates/emails/auto_reply.html:1 msgid "Thank you for your email" -msgstr "E-postanız için teşekkür ederiz" +msgstr "" #: website/doctype/help_article/templates/help_article.html:27 msgid "Thank you for your feedback!" -msgstr "Geri bildiriminiz için teşekkür ederiz!" +msgstr "" #: email/doctype/newsletter/newsletter.py:332 msgid "Thank you for your interest in subscribing to our updates" -msgstr "Güncellemeler için abone olduğunuzdan dolayı teşekkür ederiz" +msgstr "" #: templates/emails/new_user.html:16 msgid "Thanks" @@ -30577,36 +32013,39 @@ msgstr "" #: templates/emails/auto_repeat_fail.html:3 msgid "The Auto Repeat for this document has been disabled." -msgstr "Bu belge için Otomatik Tekrarlama devre dışı bırakıldı." +msgstr "" -#: public/js/frappe/form/grid.js:1155 +#: public/js/frappe/form/grid.js:1161 msgid "The CSV format is case sensitive" -msgstr "CSV biçimi büyük / küçük harf duyarlıdır" +msgstr "" #. Description of the 'Client ID' (Data) field in DocType 'Google Settings' #: integrations/doctype/google_settings/google_settings.json msgctxt "Google Settings" -msgid "" -"The Client ID obtained from the Google Cloud Console under \n" +msgid "The Client ID obtained from the Google Cloud Console under \n" "\"APIs & Services\" > \"Credentials\"\n" "" msgstr "" -#: email/doctype/notification/notification.py:129 +#: email/doctype/notification/notification.py:130 msgid "The Condition '{0}' is invalid" -msgstr "Durum '{0}' geçersiz" +msgstr "" #: core/doctype/file/file.py:205 msgid "The File URL you've entered is incorrect" msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:364 +#: 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 "" + +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:363 msgid "The User record for this request has been auto-deleted due to inactivity by system admins." msgstr "" #: public/js/frappe/desk.js:127 msgid "The application has been updated to a new version, please refresh this page" -msgstr "Uygulama yeni bir sürüme güncellendi, lütfen bu sayfayı yenileyin" +msgstr "" #. Description of the 'Application Name' (Data) field in DocType 'System #. Settings' @@ -30617,36 +32056,39 @@ msgstr "" #: public/js/frappe/views/interaction.js:324 msgid "The attachments could not be correctly linked to the new document" -msgstr "Ekler yeni belgeye doğru şekilde bağlanılamıyor" +msgstr "" #. Description of the 'API Key' (Data) field in DocType 'Google Settings' #: integrations/doctype/google_settings/google_settings.json msgctxt "Google Settings" -msgid "" -"The browser API key obtained from the Google Cloud Console under \n" +msgid "The browser API key obtained from the Google Cloud Console under \n" "\"APIs & Services\" > \"Credentials\"\n" "" msgstr "" -#: database/database.py:388 +#: database/database.py:425 msgid "The changes have been reverted." msgstr "" -#: core/doctype/data_import/importer.py:962 +#: core/doctype/data_import/importer.py:959 msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." -msgstr "{0} sütununda {1} farklı tarih biçimi var. {2} en yaygın biçim olarak varsayılan biçim olarak otomatik olarak ayarlanıyor. Lütfen bu sütundaki diğer değerleri bu biçime değiştirin." +msgstr "" #: templates/includes/comments/comments.py:34 msgid "The comment cannot be empty" -msgstr "Yorum boş olamaz" +msgstr "" + +#: public/js/frappe/list/list_view.js:629 +msgid "The count shown is an estimated count. Click here to see the accurate count." +msgstr "" #: public/js/frappe/views/interaction.js:301 msgid "The document could not be correctly assigned" -msgstr "Doküman doğru bir şekilde atanamadı" +msgstr "" #: public/js/frappe/views/interaction.js:295 msgid "The document has been assigned to {0}" -msgstr "Belge {0} olarak atandı" +msgstr "" #. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard #. Chart' @@ -30670,11 +32112,19 @@ msgstr "" msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" -#: core/doctype/data_import/importer.py:1035 +#: automation/doctype/assignment_rule/assignment_rule.py:60 +msgid "The following Assignment Days have been repeated: {0}" +msgstr "" + +#: 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 "" + +#: core/doctype/data_import/importer.py:1030 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "" -#: core/doctype/data_import/importer.py:998 +#: core/doctype/data_import/importer.py:993 msgid "The following values do not exist for {0}: {1}" msgstr "" @@ -30686,23 +32136,23 @@ msgstr "" msgid "The link will expire in {0} minutes" msgstr "" -#: www/login.py:178 +#: www/login.py:179 msgid "The link you trying to login is invalid or expired." msgstr "" #: 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 "Meta açıklama, bir web sayfasının kısa bir özetini sağlayan bir HTML özelliğidir. Google gibi arama motorları genellikle meta açıklamayı arama sonuçlarında görüntüler ve bu da tıklama oranlarını etkileyebilir." +msgstr "" #: 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 "Meta görüntü, sayfanın içeriğini temsil eden benzersiz bir görüntüdür. Bu Kart için resimler en az 280 piksel genişliğinde ve en az 150 piksel yüksekliğinde olmalıdır." +msgstr "" #. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar' #: integrations/doctype/google_calendar/google_calendar.json msgctxt "Google Calendar" msgid "The name that will appear in Google Calendar" -msgstr "Google Takvim’de görünecek isim" +msgstr "" #. Description of the 'Track Steps' (Check) field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -30722,46 +32172,49 @@ msgstr "" #: www/update-password.html:86 msgid "The password of your account has expired." -msgstr "Hesabınızın şifresinin süresi doldu." +msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:395 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:394 msgid "The process for deletion of {0} data associated with {1} has been initiated." -msgstr "{1} ile ilişkili {0} verilerinin silinmesi işlemi başlatıldı." +msgstr "" #. Description of the 'App ID' (Data) field in DocType 'Google Settings' #: integrations/doctype/google_settings/google_settings.json msgctxt "Google Settings" -msgid "" -"The project number obtained from Google Cloud Console under \n" +msgid "The project number obtained from Google Cloud Console under \n" "\"IAM & Admin\" > \"Settings\"\n" "" msgstr "" -#: core/doctype/user/user.py:943 +#: core/doctype/user/user.py:983 msgid "The reset password link has been expired" msgstr "" -#: core/doctype/user/user.py:945 +#: core/doctype/user/user.py:985 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: app.py:364 public/js/frappe/request.js:147 +#: app.py:363 public/js/frappe/request.js:147 msgid "The resource you are looking for is not available" -msgstr "Aradığınız kaynak mevcut değildir" +msgstr "" #: core/doctype/user_type/user_type.py:113 msgid "The role {0} should be a custom role." msgstr "" -#: core/doctype/audit_trail/audit_trail.py:45 +#: core/doctype/audit_trail/audit_trail.py:46 msgid "The selected document {0} is not a {1}." msgstr "" -#: utils/response.py:321 +#: utils/response.py:317 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" -#: public/js/frappe/form/grid_row.js:615 +#: 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 "" + +#: public/js/frappe/form/grid_row.js:636 msgid "The total column width cannot be more than 10." msgstr "" @@ -30774,7 +32227,7 @@ msgstr "" #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "The user from this field will be rewarded points" -msgstr "Bu alandaki kullanıcı ödüllendirilecek puanlar olacak" +msgstr "" #: public/js/frappe/form/controls/data.js:24 msgid "The value you pasted was {0} characters long. Max allowed characters is {1}." @@ -30784,24 +32237,24 @@ msgstr "" #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "The webhook will be triggered if this expression is true" -msgstr "Bu ifade doğruysa web kancası tetiklenir" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:168 +#: automation/doctype/auto_repeat/auto_repeat.py:169 msgid "The {0} is already on auto repeat {1}" -msgstr "{0} zaten {1} otomatik tekrarında" +msgstr "" #. Label of a Section Break field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Theme" -msgstr "Tema" +msgstr "" #. Label of a Data field in DocType 'Website Theme' #. Label of a Code field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Theme" -msgstr "Tema" +msgstr "" #: public/js/frappe/ui/theme_switcher.js:130 msgid "Theme Changed" @@ -30811,70 +32264,86 @@ msgstr "" #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Theme Configuration" -msgstr "Tema Yapılandırması" +msgstr "" #. Label of a Data field in DocType 'Website Theme' #: website/doctype/website_theme/website_theme.json msgctxt "Website Theme" msgid "Theme URL" -msgstr "Tema URL'si" +msgstr "" + +#: 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 "" + +#: public/js/frappe/ui/notifications/notifications.js:428 +msgid "There are no upcoming events for you." +msgstr "" #: website/web_template/discussions/discussions.html:3 msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: website/doctype/web_form/web_form.js:72 -#: website/doctype/web_form/web_form.js:308 +#: public/js/frappe/views/reports/query_report.js:891 +msgid "There are {0} with the same filters already in the queue:" +msgstr "" + +#: website/doctype/web_form/web_form.js:81 +#: website/doctype/web_form/web_form.js:317 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: core/doctype/doctype/doctype.py:1394 +#: core/doctype/doctype/doctype.py:1392 msgid "There can be only one Fold in a form" -msgstr "Bir formda tek bir kat olabilir" +msgstr "" -#: contacts/doctype/address/address.py:185 +#: contacts/doctype/address/address.py:183 msgid "There is an error in your Address Template {0}" -msgstr "Adres Şablon bir hata var {0}" +msgstr "" #: core/doctype/data_export/exporter.py:162 msgid "There is no data to be exported" -msgstr "Dışa aktarılacak veri yok" +msgstr "" -#: core/doctype/file/file.py:571 utils/file_manager.py:376 +#: core/doctype/file/file.py:571 utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" -msgstr "Dosya url ile bazı sorun var: {0}" +msgstr "" -#: core/page/permission_manager/permission_manager.py:150 +#: public/js/frappe/views/reports/query_report.js:888 +msgid "There is {0} with the same filters already in the queue:" +msgstr "" + +#: core/page/permission_manager/permission_manager.py:155 msgid "There must be atleast one permission rule." -msgstr "En az bir izin kuralı olmalıdır." +msgstr "" -#: core/doctype/user/user.py:499 +#: core/doctype/user/user.py:535 msgid "There should remain at least one System Manager" -msgstr "En az bir Sistem Yöneticisi orada kalmalıdır" +msgstr "" #: www/error.py:16 msgid "There was an error building this page" -msgstr "Bu sayfa oluşturulurken bir hata meydana geldi" +msgstr "" #: public/js/frappe/views/kanban/kanban_view.js:180 msgid "There was an error saving filters" -msgstr "Filtreler kaydedilirken bir hata oluştu" +msgstr "" #: public/js/frappe/form/sidebar/attachments.js:201 msgid "There were errors" -msgstr "Hatalar vardı" +msgstr "" #: public/js/frappe/views/interaction.js:276 msgid "There were errors while creating the document. Please try again." -msgstr "Belge oluşturulurken hatalar vardı. Lütfen tekrar deneyin." +msgstr "" -#: public/js/frappe/views/communication.js:728 +#: public/js/frappe/views/communication.js:820 msgid "There were errors while sending email. Please try again." msgstr "E-posta gönderirken hatalar vardı. Lütfen tekrar deneyin." -#: model/naming.py:449 +#: model/naming.py:470 msgid "There were some errors setting the name, please contact the administrator" -msgstr "Adını ayarı bazı hatalar vardı, yöneticinizle irtibata geçiniz" +msgstr "" #: www/404.html:15 msgid "There's nothing here" @@ -30891,21 +32360,21 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" 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 "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 "" #: www/third_party_apps.html:3 www/third_party_apps.html:13 msgid "Third Party Apps" -msgstr "Üçüncü Taraf Uygulamaları" +msgstr "" #. Label of a Section Break field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Third Party Authentication" -msgstr "Üçüncü Taraf Doğrulama" +msgstr "" #: geo/doctype/currency/currency.js:8 msgid "This Currency is disabled. Enable to use in transactions" -msgstr "Bu para birimi devre dışıdır. İşlemlerde kullanmak için etkinleştirin" +msgstr "" #: geo/utils.py:84 msgid "This Doctype does not contain latitude and longitude fields" @@ -30917,68 +32386,74 @@ msgstr "" #: public/js/frappe/views/kanban/kanban_view.js:388 msgid "This Kanban Board will be private" -msgstr "Bu Kanban Kurulu özel olacak" +msgstr "" -#: __init__.py:917 +#: __init__.py:1013 msgid "This action is only allowed for {}" -msgstr "Bu eyleme yalnızca {}" +msgstr "" -#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:720 +#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:725 msgid "This cannot be undone" -msgstr "Bu geri alınamaz" +msgstr "" #. Description of the 'Is Public' (Check) field in DocType 'Number Card' #: desk/doctype/number_card/number_card.json msgctxt "Number Card" msgid "This card will be available to all Users if this is set" -msgstr "Ayarlanırsa bu kart tüm Kullanıcılar tarafından kullanılabilir olacaktır" +msgstr "" #. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "This chart will be available to all Users if this is set" -msgstr "Ayarlanırsa bu grafik tüm Kullanıcılar tarafından kullanılabilir olacaktır" +msgstr "" #: desk/doctype/workspace/workspace.js:23 msgid "This document allows you to edit limited fields. For all kinds of workspace customization, use the Edit button located on the workspace page" msgstr "" +#: model/delete_doc.py:112 +msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." +msgstr "" + #: social/doctype/energy_point_log/energy_point_log.py:90 msgid "This document cannot be reverted" -msgstr "Bu belge geri alınamaz" +msgstr "" #: www/confirm_workflow_action.html:8 msgid "This document has been modified after the email was sent." -msgstr "Bu doküman e-posta gönderildikten sonra değiştirildi." +msgstr "" #: social/doctype/energy_point_log/energy_point_log.js:8 msgid "This document has been reverted" -msgstr "Bu belge geri alındı" +msgstr "" #: public/js/frappe/form/form.js:1075 msgid "This document is already amended, you cannot ammend it again" -msgstr "Bu belge zaten değiştirildi, onu bir daha değiştiremezsiniz" +msgstr "" -#: model/document.py:1518 -msgid "This document is currently queued for execution. Please try again" -msgstr "Bu belge şu anda yürütülmesi için sıraya. Lütfen tekrar deneyin" +#: model/document.py:1537 +msgid "This document is currently locked and queued for execution. Please try again after some time." +msgstr "" #: templates/emails/auto_repeat_fail.html:7 msgid "This email is autogenerated" -msgstr "Bu e-posta otomatik olarak oluşturuldu" +msgstr "" -#: printing/doctype/network_printer_settings/network_printer_settings.py:29 -msgid "" -"This feature can not be used as dependencies are missing.\n" +#: printing/doctype/network_printer_settings/network_printer_settings.py:30 +msgid "This feature can not be used as dependencies are missing.\n" "\t\t\t\tPlease contact your system manager to enable this by installing pycups!" msgstr "" +#: public/js/frappe/form/templates/form_sidebar.html:23 +msgid "This feature is brand new and still experimental" +msgstr "" + #. Description of the 'Depends On' (Code) field in DocType 'Customize Form #. Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" -msgid "" -"This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" +msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" "myfield\n" "eval:doc.myfield=='My Value'\n" "eval:doc.age>18" @@ -30986,11 +32461,11 @@ msgstr "" #: core/doctype/file/file.js:10 msgid "This file is public. It can be accessed without authentication." -msgstr "" +msgstr "Bu dosya herkese açıktır. Kimlik doğrulaması olmadan erişilebilir." #: public/js/frappe/form/form.js:1172 msgid "This form has been modified after you have loaded it" -msgstr "Bunu yükledikten sonra Bu form modifiye edilmiştir" +msgstr "" #: public/js/frappe/form/form.js:457 msgid "This form is not editable due to a Workflow." @@ -31000,30 +32475,30 @@ msgstr "" #: contacts/doctype/address_template/address_template.json msgctxt "Address Template" msgid "This format is used if country specific format is not found" -msgstr "Ülkeye özgü format bulunamazsa bu format kullanılır" +msgstr "" #. Description of the 'Header' (HTML Editor) field in DocType 'Website #. Slideshow' #: website/doctype/website_slideshow/website_slideshow.json msgctxt "Website Slideshow" msgid "This goes above the slideshow." -msgstr "Bu slayt üzerinde gider." +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1995 +#: public/js/frappe/views/reports/query_report.js:2012 msgid "This is a background report. Please set the appropriate filters and then generate a new one." -msgstr "Bu bir arka plan raporu. Lütfen uygun filtreleri ayarlayın ve sonra yeni bir tane oluşturun." +msgstr "" + +#: utils/password_strength.py:158 +msgid "This is a top-10 common password." +msgstr "" + +#: utils/password_strength.py:160 +msgid "This is a top-100 common password." +msgstr "" #: utils/password_strength.py:162 -msgid "This is a top-10 common password." -msgstr "Bu bir üst-10 ortak şifredir." - -#: utils/password_strength.py:164 -msgid "This is a top-100 common password." -msgstr "Bu bir üst-100 yaygın şifredir." - -#: utils/password_strength.py:166 msgid "This is a very common password." -msgstr "Bu çok yaygın bir şifredir." +msgstr "" #: core/doctype/rq_job/rq_job.js:9 msgid "This is a virtual doctype and data is cleared periodically." @@ -31031,41 +32506,41 @@ msgstr "" #: templates/emails/auto_reply.html:5 msgid "This is an automatically generated reply" -msgstr "Bu otomatik olarak oluşturulmuş Cevap" +msgstr "" #. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog #. Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "This is an example Google SERP Preview." -msgstr "Bu, örnek bir Google SERP Önizlemesidir." +msgstr "" -#: utils/password_strength.py:168 +#: utils/password_strength.py:164 msgid "This is similar to a commonly used password." -msgstr "Bu yaygın olarak kullanılan bir şifre benzer." +msgstr "" #. Description of the 'Current Value' (Int) field in DocType 'Document Naming #. Settings' #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "This is the number of the last created transaction with this prefix" -msgstr "Bu ön ekle son genişleme miktarıdır" +msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:404 +#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:403 msgid "This link has already been activated for verification." -msgstr "Bu bağlantı doğrulama için zaten aktive edildi." +msgstr "" #: utils/verified_command.py:49 msgid "This link is invalid or expired. Please make sure you have pasted correctly." -msgstr "Bu bağlantı geçersiz veya süresi dolmuş. Linkin doğru yapıştırıldığından emin olun." +msgstr "" -#: printing/page/print/print.js:403 +#: printing/page/print/print.js:410 msgid "This may get printed on multiple pages" -msgstr "Bu birden fazla sayfaya yazdırılabilir" +msgstr "" #: utils/goal.py:109 msgid "This month" -msgstr "Bu ay" +msgstr "" #: email/doctype/newsletter/newsletter.js:223 msgid "This newsletter is scheduled to be sent on {0}" @@ -31075,17 +32550,21 @@ msgstr "" msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" msgstr "" +#: public/js/frappe/views/reports/query_report.js:963 +msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." +msgstr "" + #: templates/emails/auto_email_report.html:57 msgid "This report was generated on {0}" -msgstr "Bu rapor {0} tarihinde oluşturuldu" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:782 +#: public/js/frappe/views/reports/query_report.js:786 msgid "This report was generated {0}." -msgstr "Bu rapor {0} oluşturuldu." +msgstr "" #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:118 msgid "This request has not yet been approved by the user." -msgstr "Bu istek henüz kullanıcı tarafından onaylanmadı." +msgstr "" #: templates/includes/navbar/navbar_items.html:95 msgid "This site is in read only mode, full functionality will be restored soon." @@ -31097,7 +32576,7 @@ msgstr "" #: website/doctype/web_page/web_page.js:71 msgid "This title will be used as the title of the webpage as well as in meta tags" -msgstr "Bu başlık, meta etiketlerinde olduğu gibi web sayfasının başlığı olarak kullanılacaktır." +msgstr "" #: public/js/frappe/form/controls/base_input.js:120 msgid "This value is fetched from {0}'s {1} field" @@ -31105,29 +32584,29 @@ msgstr "" #: website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" -msgstr "Bu, sayfayı yayınladığınızda otomatik olarak oluşturulacaktır, isterseniz kendiniz de bir rota girebilirsiniz" +msgstr "" #. Description of the 'Callback Message' (Small Text) field in DocType #. 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "This will be shown in a modal after routing" -msgstr "Bu, yönlendirmeden sonra bir modelde gösterilecektir" +msgstr "" #. Description of the 'Report Description' (Data) field in DocType 'Onboarding #. Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "This will be shown to the user in a dialog after routing to the report" -msgstr "Bu, rapora yönlendirildikten sonra kullanıcıya bir iletişim kutusunda gösterilecektir" +msgstr "" #: www/third_party_apps.html:21 msgid "This will log out {0} from all other devices" -msgstr "Bu, tüm diğer cihazlardan {0} çıkış yapacak" +msgstr "" #: templates/emails/delete_data_confirmation.html:3 msgid "This will permanently remove your data." -msgstr "Bu, verilerinizi kalıcı olarak kaldıracak." +msgstr "" #: desk/doctype/form_tour/form_tour.js:103 msgid "This will reset this tour and show it to all users. Are you sure?" @@ -31137,15 +32616,15 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: core/doctype/user/user.py:1209 +#: core/doctype/user/user.py:1243 msgid "Throttled" -msgstr "throttled" +msgstr "" #. Label of a Small Text field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "Thumbnail URL" -msgstr "Küçük resim URL" +msgstr "" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #: automation/doctype/assignment_rule_day/assignment_rule_day.json @@ -31228,25 +32707,25 @@ msgstr "Zaman" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Time Format" -msgstr "Zaman formatı" +msgstr "" #. Label of a Select field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Time Interval" -msgstr "Zaman aralığı" +msgstr "" #. Label of a Check field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Time Series" -msgstr "Zaman serisi" +msgstr "" #. Label of a Select field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Time Series Based On" -msgstr "Dayalı Zaman Serileri" +msgstr "" #. Label of a Duration field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -31262,37 +32741,37 @@ msgstr "" #: desk/page/setup_wizard/setup_wizard.js:395 msgid "Time Zone" -msgstr "Saat Dilimi" +msgstr "" #. Label of a Select field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Time Zone" -msgstr "Saat Dilimi" +msgstr "" #. Label of a Autocomplete field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Time Zone" -msgstr "Saat Dilimi" +msgstr "" #. Label of a Data field in DocType 'Web Page View' #: website/doctype/web_page_view/web_page_view.json msgctxt "Web Page View" msgid "Time Zone" -msgstr "Saat Dilimi" +msgstr "" #. Label of a Text field in DocType 'Country' #: geo/doctype/country/country.json msgctxt "Country" msgid "Time Zones" -msgstr "Saat Dilimleri" +msgstr "" #. Label of a Data field in DocType 'Country' #: geo/doctype/country/country.json msgctxt "Country" msgid "Time format" -msgstr "Zaman formatı" +msgstr "" #. Label of a Float field in DocType 'Recorder' #: core/doctype/recorder/recorder.json @@ -31305,15 +32784,15 @@ msgstr "" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Time in seconds to retain QR code image on server. Min:240" -msgstr "Sunucuda QR kodu görüntüsü tutmak için saniye cinsinden süre. Min: 240" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:413 +#: desk/doctype/dashboard_chart/dashboard_chart.py:403 msgid "Time series based on is required to create a dashboard chart" -msgstr "Bir gösterge tablosu grafiği oluşturmak için zamana dayalı zaman serileri gerekir" +msgstr "" -#: public/js/frappe/form/controls/time.js:104 +#: public/js/frappe/form/controls/time.js:107 msgid "Time {0} must be in format: {1}" -msgstr "{0} süresi şu biçimde olmalıdır: {1}" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #: core/doctype/data_import/data_import.json @@ -31329,40 +32808,40 @@ msgstr "" #: core/doctype/role/role.json msgctxt "Role" msgid "Timeline" -msgstr "" +msgstr "Zaman cetveli" #. Label of a Link field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Timeline DocType" -msgstr "Zaman Çizelgesi DocType" +msgstr "" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Timeline Field" -msgstr "Zaman Çizelgesi Alan" +msgstr "" #. Label of a Section Break field in DocType 'Communication' #. Label of a Table field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Timeline Links" -msgstr "Zaman Çizelgesi Bağlantıları" +msgstr "" #. Label of a Dynamic Link field in DocType 'Activity Log' #: core/doctype/activity_log/activity_log.json msgctxt "Activity Log" msgid "Timeline Name" -msgstr "Zaman Çizelgesi Ad" +msgstr "" -#: core/doctype/doctype/doctype.py:1489 +#: core/doctype/doctype/doctype.py:1487 msgid "Timeline field must be a Link or Dynamic Link" -msgstr "Timeline alan Bağlantı veya Dynamic Link olmalı" +msgstr "" -#: core/doctype/doctype/doctype.py:1485 +#: core/doctype/doctype/doctype.py:1483 msgid "Timeline field must be a valid fieldname" -msgstr "Zaman alanı geçerli AlanAdı olmalıdır" +msgstr "" #. Label of a Duration field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -31374,39 +32853,40 @@ msgstr "" #: desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgctxt "Dashboard Chart Source" msgid "Timeseries" -msgstr "Zaman serisi" +msgstr "" #: desk/page/leaderboard/leaderboard.js:123 #: public/js/frappe/ui/filters/filter.js:28 msgid "Timespan" -msgstr "Zaman aralığı" +msgstr "" #. Label of a Select field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Timespan" -msgstr "Zaman aralığı" +msgstr "" #: core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" -msgstr "Zaman Damgası" +msgstr "" #. Label of a Datetime field in DocType 'Access Log' #: core/doctype/access_log/access_log.json msgctxt "Access Log" msgid "Timestamp" -msgstr "Zaman Damgası" +msgstr "" #. Label of a Datetime field in DocType 'Transaction Log' #: core/doctype/transaction_log/transaction_log.json msgctxt "Transaction Log" msgid "Timestamp" -msgstr "Zaman Damgası" +msgstr "" -#: public/js/form_builder/store.js:89 -#: public/js/frappe/views/workspace/workspace.js:599 -#: public/js/frappe/views/workspace/workspace.js:928 -#: public/js/frappe/views/workspace/workspace.js:1175 +#: core/doctype/doctype/boilerplate/controller_list.html:14 +#: core/doctype/doctype/boilerplate/controller_list.html:23 +#: public/js/frappe/views/workspace/workspace.js:610 +#: public/js/frappe/views/workspace/workspace.js:939 +#: public/js/frappe/views/workspace/workspace.js:1186 msgid "Title" msgstr "Başlık" @@ -31534,44 +33014,44 @@ msgstr "Başlık" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Title Field" -msgstr "Başlık Alan" +msgstr "" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Title Field" -msgstr "Başlık Alan" +msgstr "" #. Label of a Data field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Title Prefix" -msgstr "Başlık Öneki" +msgstr "" -#: core/doctype/doctype/doctype.py:1426 +#: core/doctype/doctype/doctype.py:1424 msgid "Title field must be a valid fieldname" -msgstr "Başlık alanı geçerli bir fieldname olmalı" +msgstr "" #: website/doctype/web_page/web_page.js:70 msgid "Title of the page" -msgstr "Sayfanın başlığı" +msgstr "" -#: public/js/frappe/views/communication.js:52 +#: public/js/frappe/views/communication.js:53 #: public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" -msgstr "Bitiş" +msgstr "Kime" #. Label of a Code field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "To" -msgstr "Bitiş" +msgstr "Kime" #. Label of a Section Break field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" msgid "To" -msgstr "Bitiş" +msgstr "Kime" #: website/report/website_analytics/website_analytics.js:14 msgid "To Date" @@ -31587,53 +33067,47 @@ msgstr "Bitiş Tarihi" #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "To Date Field" -msgstr "Tarih Alanına" +msgstr "" -#: desk/doctype/todo/todo_list.js:12 +#: desk/doctype/todo/todo_list.js:6 msgid "To Do" -msgstr "Yapılacaklar" +msgstr "" #. Label of a Link in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "ToDo" msgid "To Do" -msgstr "Yapılacaklar" +msgstr "" #: public/js/frappe/form/sidebar/review.js:50 msgid "To User" -msgstr "Kullanıcıya" +msgstr "" #. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' #: automation/doctype/auto_repeat/auto_repeat.json msgctxt "Auto Repeat" -msgid "" -"To add dynamic subject, use jinja tags like\n" -"\n" +msgid "To add dynamic subject, use jinja tags like\n\n" "
New {{ doc.doctype }} #{{ doc.name }}
" msgstr "" #. Description of the 'Subject' (Data) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" -msgid "" -"To add dynamic subject, use jinja tags like\n" -"\n" +msgid "To add dynamic subject, use jinja tags like\n\n" "
{{ doc.name }} Delivered
" msgstr "" #. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" -msgid "" -"To add dynamic values from the document, use jinja tags like\n" -"\n" +msgid "To add dynamic values from the document, use jinja tags like\n\n" "
\n" "
{ \"id\": \"{{ doc.name }}\" }\n"
 "
\n" "
" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:101 +#: email/doctype/auto_email_report/auto_email_report.py:107 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -31641,23 +33115,34 @@ msgstr "" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "To and CC" -msgstr "To ve CC" +msgstr "" + +#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto +#. Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." +msgstr "" #: automation/doctype/auto_repeat/auto_repeat.js:35 msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." -msgstr "Otomatik Tekrarı yapılandırmak için {0} 'dan 'Otomatik Tekrarlamaya İzin Ver' i etkinleştirin." +msgstr "" #: www/login.html:73 msgid "To enable it follow the instructions in the following link: {0}" -msgstr "Etkinleştirmek için aşağıdaki bağlantıdaki talimatları izleyin: {0}" +msgstr "" + +#: core/doctype/server_script/server_script.js:37 +msgid "To enable server scripts, read the {0}." +msgstr "" #: desk/doctype/onboarding_step/onboarding_step.js:18 msgid "To export this step as JSON, link it in a Onboarding document and save the document." msgstr "" -#: public/js/frappe/views/reports/query_report.js:783 +#: public/js/frappe/views/reports/query_report.js:787 msgid "To get the updated report, click on {0}." -msgstr "Güncellenen raporu almak için {0} seçeneğini tıklayın." +msgstr "" #: www/me.html:51 msgid "To manage your authorized third party apps" @@ -31675,15 +33160,15 @@ msgstr "" #: integrations/doctype/google_calendar/google_calendar.js:8 msgid "To use Google Calendar, enable {0}." -msgstr "Google Takvim’i kullanmak için {0} seçeneğini etkinleştirin." +msgstr "" #: integrations/doctype/google_contacts/google_contacts.js:8 msgid "To use Google Contacts, enable {0}." -msgstr "Google Kişileri'ni kullanmak için {0} seçeneğini etkinleştirin." +msgstr "" #: integrations/doctype/google_drive/google_drive.js:8 msgid "To use Google Drive, enable {0}." -msgstr "Google Drive'ı kullanmak için {0} seçeneğini etkinleştirin." +msgstr "" #. Description of the 'Enable Google indexing' (Check) field in DocType #. 'Website Settings' @@ -31698,7 +33183,7 @@ msgctxt "Notification" msgid "To use Slack Channel, add a Slack Webhook URL." msgstr "" -#: public/js/frappe/utils/diffview.js:43 +#: public/js/frappe/utils/diffview.js:44 msgid "To version" msgstr "" @@ -31706,64 +33191,64 @@ msgstr "" #. Name of a report #: desk/doctype/todo/todo.json desk/report/todo/todo.json msgid "ToDo" -msgstr "Yapılacaklar" +msgstr "" #. Label of a shortcut in the Tools Workspace #: automation/workspace/tools/tools.json msgctxt "ToDo" msgid "ToDo" -msgstr "Yapılacaklar" +msgstr "" #. Linked DocType in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "ToDo" -msgstr "Yapılacaklar" +msgstr "" #: public/js/frappe/form/controls/date.js:58 -#: public/js/frappe/views/calendar/calendar.js:267 +#: public/js/frappe/views/calendar/calendar.js:268 msgid "Today" -msgstr "Bugün" +msgstr "" #: public/js/frappe/ui/notifications/notifications.js:55 msgid "Today's Events" -msgstr "Bugünkü Etkinlikler" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1495 +#: public/js/frappe/views/reports/report_view.js:1492 msgid "Toggle Chart" -msgstr "Grafik Çal" +msgstr "" #. Label of a standard navbar item #. Type: Action #: hooks.py msgid "Toggle Full Width" -msgstr "Tam Genişliği Değiştir" +msgstr "" #: public/js/frappe/views/file/file_view.js:33 msgid "Toggle Grid View" -msgstr "Izgara Görünümünü Aç / Kapat" +msgstr "" #: public/js/frappe/ui/page.js:193 public/js/frappe/ui/page.js:195 -#: public/js/frappe/views/reports/report_view.js:1499 +#: public/js/frappe/views/reports/report_view.js:1496 msgid "Toggle Sidebar" -msgstr "Kenar Çubuğunu Aç / Kapat" +msgstr "" -#: public/js/frappe/list/list_view.js:1681 +#: public/js/frappe/list/list_view.js:1727 msgctxt "Button in list view menu" msgid "Toggle Sidebar" -msgstr "Kenar Çubuğunu Aç / Kapat" +msgstr "" #. Label of a standard navbar item #. Type: Action #: hooks.py msgid "Toggle Theme" -msgstr "Temayı Değiştir" +msgstr "" #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" msgid "Token" -msgstr "Jeton" +msgstr "" #. Name of a DocType #: integrations/doctype/token_cache/token_cache.json @@ -31794,48 +33279,48 @@ msgctxt "Connected App" msgid "Token URI" msgstr "" -#: utils/oauth.py:184 +#: utils/oauth.py:179 msgid "Token is missing" -msgstr "Jetonu eksik" +msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:70 model/workflow.py:253 +#: desk/doctype/bulk_update/bulk_update.py:69 model/workflow.py:246 msgid "Too Many Documents" msgstr "" #: rate_limiter.py:88 msgid "Too Many Requests" -msgstr "Çok fazla istek" +msgstr "" -#: database/database.py:387 +#: database/database.py:424 msgid "Too many changes to database in single action." msgstr "" -#: core/doctype/user/user.py:984 +#: core/doctype/user/user.py:1024 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" -msgstr "Çok fazla kullanıcı son zamanlarda kaydoldum, bu yüzden kayıt devre dışı bırakılır. Bir saat içinde geri deneyin" +msgstr "" #. Name of a Workspace #. Label of a Card Break in the Tools Workspace #: automation/workspace/tools/tools.json msgid "Tools" -msgstr "" +msgstr "Araçlar" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json msgctxt "Form Tour Step" msgid "Top" -msgstr "Üst" +msgstr "" #. Name of a DocType #: website/doctype/top_bar_item/top_bar_item.json msgid "Top Bar Item" -msgstr "Top Bar Ürün" +msgstr "" #. Label of a Table field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Top Bar Items" -msgstr "Top Bar Ürünleri" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -31857,11 +33342,11 @@ msgstr "" #: templates/emails/energy_points_summary.html:3 msgid "Top Performer" -msgstr "En İyi Performans" +msgstr "" #: templates/emails/energy_points_summary.html:18 msgid "Top Reviewer" -msgstr "En Çok Oylananlar" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: desk/doctype/form_tour_step/form_tour_step.json @@ -31877,18 +33362,22 @@ msgstr "" #: templates/emails/energy_points_summary.html:33 msgid "Top {0}" -msgstr "Üst {0}" +msgstr "" #. Label of a Link field in DocType 'Discussion Reply' #: website/doctype/discussion_reply/discussion_reply.json msgctxt "Discussion Reply" msgid "Topic" -msgstr "konu" +msgstr "" -#: desk/query_report.py:503 +#: desk/query_report.py:497 public/js/frappe/views/reports/print_grid.html:45 msgid "Total" msgstr "Toplam" +#: public/js/frappe/ui/capture.js:259 +msgid "Total Images" +msgstr "" + #. Label of a Int field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" @@ -31899,13 +33388,13 @@ msgstr "" #: email/doctype/email_group/email_group.json msgctxt "Email Group" msgid "Total Subscribers" -msgstr "Toplam Aboneler" +msgstr "" #. Label of a Read Only field in DocType 'Newsletter Email Group' #: email/doctype/newsletter_email_group/newsletter_email_group.json msgctxt "Newsletter Email Group" msgid "Total Subscribers" -msgstr "Toplam Aboneler" +msgstr "" #. Label of a Int field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json @@ -31924,16 +33413,16 @@ msgstr "" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Total number of emails to sync in initial sync process " -msgstr "e-posta sayısı başlangıç senkronizasyon sürecinde senkronize etmek için" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1181 -#: public/js/frappe/views/reports/report_view.js:1477 +#: public/js/frappe/views/reports/report_view.js:1178 +#: public/js/frappe/views/reports/report_view.js:1474 msgid "Totals" msgstr "Toplamlar" -#: public/js/frappe/views/reports/report_view.js:1156 +#: public/js/frappe/views/reports/report_view.js:1153 msgid "Totals Row" -msgstr "Toplamlar Satır" +msgstr "" #. Label of a Data field in DocType 'Error Log' #: core/doctype/error_log/error_log.json @@ -31945,37 +33434,37 @@ msgstr "" #: core/doctype/patch_log/patch_log.json msgctxt "Patch Log" msgid "Traceback" -msgstr "Geri takip" +msgstr "" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Track Changes" -msgstr "Parça değişiklikleri" +msgstr "" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Track Changes" -msgstr "Parça değişiklikleri" +msgstr "" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Track Email Status" -msgstr "E-posta Durumunu İzle" +msgstr "" #. Label of a Data field in DocType 'Milestone' #: automation/doctype/milestone/milestone.json msgctxt "Milestone" msgid "Track Field" -msgstr "Parça alanı" +msgstr "" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Track Seen" -msgstr "Görüldüğünü takip et" +msgstr "" #. Label of a Check field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -31987,25 +33476,29 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Track Views" -msgstr "İzlenme Sayısı" +msgstr "" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Track Views" -msgstr "İzlenme Sayısı" +msgstr "" #. Description of the 'Track Email Status' (Check) field in DocType 'Email #. Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" -msgid "" -"Track if your email has been opened by the recipient.\n" +msgid "Track if your email has been opened by the recipient.\n" "
\n" "Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" msgstr "" -#: public/js/frappe/utils/utils.js:1744 +#. Description of a DocType +#: automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + +#: public/js/frappe/utils/utils.js:1757 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -32013,118 +33506,118 @@ msgstr "" #: core/doctype/transaction_log/transaction_log.json msgctxt "Transaction Log" msgid "Transaction Hash" -msgstr "İşlem Hash" +msgstr "" #. Name of a DocType #: core/doctype/transaction_log/transaction_log.json msgid "Transaction Log" -msgstr "İşlem Günlüğü" +msgstr "" #. Name of a report #: core/report/transaction_log_report/transaction_log_report.json msgid "Transaction Log Report" -msgstr "İşlem Günlüğü Raporu" +msgstr "" #. Label of a Section Break field in DocType 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Transition Rules" -msgstr "İşlem Kuralları" +msgstr "" #. Label of a Table field in DocType 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Transitions" -msgstr "Geçişler" +msgstr "" #. Label of a Check field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Translatable" -msgstr "çevrilebilir" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Translatable" -msgstr "çevrilebilir" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Translatable" -msgstr "çevrilebilir" +msgstr "" #. Label of a Check field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Translate Link Fields" -msgstr "" +msgstr "Bağlantı Alanlarını Çevir" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Translate Link Fields" -msgstr "" +msgstr "Bağlantı Alanlarını Çevir" #: public/js/frappe/views/translation_manager.js:11 msgid "Translate {0}" -msgstr "{0} çevir" +msgstr "" #. Label of a Code field in DocType 'Translation' #: core/doctype/translation/translation.json msgctxt "Translation" msgid "Translated Text" -msgstr "Çeviri Metin" +msgstr "" #. Name of a DocType #: core/doctype/translation/translation.json msgid "Translation" -msgstr "Çeviri" +msgstr "" #: public/js/frappe/views/translation_manager.js:46 msgid "Translations" -msgstr "Çeviriler" +msgstr "" #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Trash" -msgstr "Çöp" +msgstr "" #. Option for the 'View' (Select) field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "Tree" -msgstr "ağaç" +msgstr "" #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Tree" -msgstr "ağaç" +msgstr "" #. Description of the 'Is Tree' (Check) field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Tree structures are implemented using Nested Set" -msgstr "Ağaç yapıları, Yuvalanmış Küme kullanılarak uygulanır" +msgstr "" #: public/js/frappe/views/treeview.js:20 msgid "Tree view is not available for {0}" -msgstr "Ağaç görünümü {0} için kullanılamaz" +msgstr "" #. Label of a Data field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Trigger Method" -msgstr "tetik Yöntemi" +msgstr "" -#: public/js/frappe/ui/keyboard.js:191 +#: public/js/frappe/ui/keyboard.js:194 msgid "Trigger Primary Action" -msgstr "Birincil İşlemi Tetikle" +msgstr "" -#: tests/test_translate.py:55 +#: tests/test_translate.py:54 msgid "Trigger caching" msgstr "" @@ -32132,7 +33625,7 @@ msgstr "" #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" -msgstr "'Before_insert', 'after_update', vb gibi geçerli yöntemler hakkında Tetik (seçilen DocType bağlıdır)" +msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:323 msgid "Try Again" @@ -32144,13 +33637,17 @@ msgctxt "Document Naming Settings" msgid "Try a Naming Series" msgstr "" -#: utils/password_strength.py:108 -msgid "Try to avoid repeated words and characters" -msgstr "tekrarlanan kelimeleri ve karakterleri önlemek için deneyin" +#: printing/page/print/print.js:189 printing/page/print/print.js:195 +msgid "Try the new Print Designer" +msgstr "" -#: utils/password_strength.py:100 +#: utils/password_strength.py:106 +msgid "Try to avoid repeated words and characters" +msgstr "" + +#: utils/password_strength.py:98 msgid "Try to use a longer keyboard pattern with more turns" -msgstr "Daha fazla dönüşler ile daha uzun klavye desen kullanmayı deneyin" +msgstr "" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #: automation/doctype/assignment_rule_day/assignment_rule_day.json @@ -32187,19 +33684,23 @@ msgstr "Salı" #: core/doctype/role/role.json msgctxt "Role" msgid "Two Factor Authentication" -msgstr "İki Faktörlü Kimlik Doğrulama" +msgstr "" #. Label of a Section Break field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Two Factor Authentication" -msgstr "İki Faktörlü Kimlik Doğrulama" +msgstr "" #. Label of a Select field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Two Factor Authentication method" -msgstr "İki Faktörlü Kimlik Doğrulama Metodu" +msgstr "" + +#: public/js/frappe/views/file/file_view.js:318 +msgid "Type" +msgstr "Türü" #. Label of a Select field in DocType 'Communication' #: core/doctype/communication/communication.json @@ -32279,15 +33780,21 @@ msgctxt "Workspace Shortcut" msgid "Type" msgstr "Türü" +#: desk/page/user_profile/user_profile.html:17 +msgid "Type Distribution" +msgstr "" + #: public/js/frappe/form/controls/comment.js:78 msgid "Type a reply / comment" msgstr "" #: templates/includes/search_template.html:51 msgid "Type something in the search box to search" -msgstr "arama yapmak için arama kutusuna bir şey yazın" +msgstr "" #: templates/discussions/comment_box.html:8 +#: templates/discussions/reply_section.html:53 +#: templates/discussions/topic_modal.html:11 msgid "Type title" msgstr "" @@ -32297,7 +33804,7 @@ msgstr "" #: core/doctype/data_export/exporter.py:143 msgid "Type:" -msgstr "Türü:" +msgstr "" #. Label of a Check field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json @@ -32315,55 +33822,54 @@ msgstr "" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "UID" -msgstr "UID" +msgstr "" #. Label of a Data field in DocType 'Email Flag Queue' #: email/doctype/email_flag_queue/email_flag_queue.json msgctxt "Email Flag Queue" msgid "UID" -msgstr "UID" +msgstr "" #. Label of a Data field in DocType 'Unhandled Email' #: email/doctype/unhandled_email/unhandled_email.json msgctxt "Unhandled Email" msgid "UID" -msgstr "UID" +msgstr "" #. Label of a Int field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "UIDNEXT" -msgstr "UIDNEXT" +msgstr "" #. Label of a Data field in DocType 'IMAP Folder' #: email/doctype/imap_folder/imap_folder.json msgctxt "IMAP Folder" msgid "UIDNEXT" -msgstr "UIDNEXT" +msgstr "" #. Label of a Data field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "UIDVALIDITY" -msgstr "UIDVALIDITY" +msgstr "" #. Label of a Data field in DocType 'IMAP Folder' #: email/doctype/imap_folder/imap_folder.json msgctxt "IMAP Folder" msgid "UIDVALIDITY" -msgstr "UIDVALIDITY" +msgstr "" #. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "UNSEEN" -msgstr "GÖRÜLMEMESİNİN" +msgstr "" #. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' #: integrations/doctype/oauth_client/oauth_client.json msgctxt "OAuth Client" -msgid "" -"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" +msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" "
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" msgstr "" @@ -32402,7 +33908,7 @@ msgstr "URL" #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "URL for documentation or help" -msgstr "Dokümantasyon veya yardım için URL" +msgstr "" #: core/doctype/file/file.py:216 msgid "URL must start with http:// or https://" @@ -32410,59 +33916,59 @@ msgstr "" #: website/doctype/web_page/web_page.js:84 msgid "URL of the page" -msgstr "Sayfanın URL'si" +msgstr "" #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: website/doctype/website_slideshow_item/website_slideshow_item.json msgctxt "Website Slideshow Item" msgid "URL to go to on clicking the slideshow image" -msgstr "Slayt gösterisi resmine tıklandığında gidilecek URL" +msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:68 +#: core/doctype/document_naming_settings/document_naming_settings.py:67 msgid "Unable to find DocType {0}" -msgstr "DocType {0} bulunamadı" +msgstr "" -#: public/js/frappe/ui/capture.js:330 +#: public/js/frappe/ui/capture.js:338 msgid "Unable to load camera." -msgstr "Kamera yüklenemedi." +msgstr "" #: public/js/frappe/model/model.js:258 msgid "Unable to load: {0}" -msgstr "Yüklenemiyor: {0}" +msgstr "" #: utils/csvutils.py:35 msgid "Unable to open attached file. Did you export it as CSV?" -msgstr "Ekli dosya açılamıyor. Eğer CSV olarak dışa mı?" +msgstr "" -#: core/doctype/file/utils.py:99 core/doctype/file/utils.py:128 +#: core/doctype/file/utils.py:98 core/doctype/file/utils.py:130 msgid "Unable to read file format for {0}" -msgstr "{0} için dosya biçimi okunamıyor" +msgstr "" -#: core/doctype/communication/email.py:173 +#: core/doctype/communication/email.py:179 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" -#: public/js/frappe/views/calendar/calendar.js:439 +#: public/js/frappe/views/calendar/calendar.js:440 msgid "Unable to update event" -msgstr "Etkinlik güncellenemedi" +msgstr "" #: core/doctype/file/file.py:458 msgid "Unable to write file format for {0}" -msgstr "{0} için dosya biçimi yazılamıyor" +msgstr "" #. Label of a Code field in DocType 'Assignment Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Unassign Condition" -msgstr "Atama Koşulu" +msgstr "" #: www/error.py:15 msgid "Uncaught Server Exception" -msgstr "Yakalanmamış Sunucu İstisnası" +msgstr "" #: public/js/frappe/form/toolbar.js:93 msgid "Unchanged" -msgstr "Değiştirilmedi" +msgstr "" #: public/js/frappe/form/toolbar.js:450 msgid "Undo" @@ -32473,15 +33979,16 @@ msgid "Undo last action" msgstr "" #: public/js/frappe/form/sidebar/form_sidebar.js:232 +#: public/js/frappe/form/templates/form_sidebar.html:132 msgid "Unfollow" -msgstr "Takip etmekten vazgeç" +msgstr "" #. Name of a DocType #: email/doctype/unhandled_email/unhandled_email.json msgid "Unhandled Email" -msgstr "İşlenmemiş E-posta" +msgstr "" -#: public/js/frappe/views/workspace/workspace.js:556 +#: public/js/frappe/views/workspace/workspace.js:567 msgid "Unhide Workspace" msgstr "" @@ -32489,42 +33996,46 @@ msgstr "" #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Unique" -msgstr "Benzersiz" +msgstr "" #. Label of a Check field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Unique" -msgstr "Benzersiz" +msgstr "" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Unique" -msgstr "Benzersiz" +msgstr "" + +#: website/report/website_analytics/website_analytics.js:60 +msgid "Unknown" +msgstr "Bilinmiyor" #: public/js/frappe/model/model.js:199 msgid "Unknown Column: {0}" -msgstr "Bilinmeyen Sütun: {0}" +msgstr "" -#: utils/data.py:1215 +#: utils/data.py:1193 msgid "Unknown Rounding Method: {}" msgstr "" -#: auth.py:299 +#: auth.py:293 msgid "Unknown User" -msgstr "Bilinmeyen kullanıcı" +msgstr "" #: utils/csvutils.py:52 msgid "Unknown file encoding. Tried utf-8, windows-1250, windows-1252." -msgstr "Bilinmeyen dosya kodlama. Denenmiş utf-8, windows-1250, windows-1252." +msgstr "" #: core/doctype/submission_queue/submission_queue.js:7 msgid "Unlock Reference Document" msgstr "" #: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:77 +#: website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -32532,87 +34043,92 @@ msgstr "" #: email/doctype/email_flag_queue/email_flag_queue.json msgctxt "Email Flag Queue" msgid "Unread" -msgstr "Okunmamış" +msgstr "" #. Label of a Check field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Unread Notification Sent" -msgstr "Gönderilen Okunmamış Bildirimi" +msgstr "" -#: utils/safe_exec.py:438 +#: utils/safe_exec.py:435 msgid "Unsafe SQL query" msgstr "" +#: public/js/frappe/data_import/data_exporter.js:158 +#: public/js/frappe/form/controls/multicheck.js:166 +msgid "Unselect All" +msgstr "" + #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Unshared" -msgstr "Paylaşılmayan" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Unshared" -msgstr "Paylaşılmayan" +msgstr "" -#: email/queue.py:68 +#: email/queue.py:66 msgid "Unsubscribe" -msgstr "Aboneliği Kaldır" +msgstr "" #. Label of a Data field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Unsubscribe Method" -msgstr "Abonelik İptal Yöntemi" +msgstr "" #. Label of a Data field in DocType 'Email Queue' #: email/doctype/email_queue/email_queue.json msgctxt "Email Queue" msgid "Unsubscribe Param" -msgstr "Abonelik İptal Parametresi" +msgstr "" -#: email/queue.py:126 +#: email/queue.py:122 msgid "Unsubscribed" -msgstr "Abonelik iptal edildi" +msgstr "Kaydolmamış" #. Label of a Check field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "Unsubscribed" -msgstr "Abonelik iptal edildi" +msgstr "Kaydolmamış" #. Label of a Check field in DocType 'Email Group Member' #: email/doctype/email_group_member/email_group_member.json msgctxt "Email Group Member" msgid "Unsubscribed" -msgstr "Abonelik iptal edildi" +msgstr "Kaydolmamış" #. Label of a Check field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Unsubscribed" -msgstr "Abonelik iptal edildi" +msgstr "Kaydolmamış" #: public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" -msgstr "Başlıksız Sütun" +msgstr "" #: core/doctype/file/file.js:28 msgid "Unzip" -msgstr "Dosyaları Ayıkla" +msgstr "" #: public/js/frappe/views/file/file_view.js:132 msgid "Unzipped {0} files" -msgstr "{0} dosya sıkıştırıldı" +msgstr "" #: public/js/frappe/views/file/file_view.js:125 msgid "Unzipping files..." -msgstr "Dosyalar ayıklanıyor..." +msgstr "" -#: desk/doctype/event/event.py:258 +#: desk/doctype/event/event.py:256 msgid "Upcoming Events for Today" -msgstr "Bugün için Gelecek Etkinlikler" +msgstr "" #: core/doctype/data_import/data_import_list.js:40 #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 @@ -32622,8 +34138,8 @@ msgstr "Bugün için Gelecek Etkinlikler" #: printing/page/print_format_builder/print_format_builder.js:501 #: printing/page/print_format_builder/print_format_builder.js:670 #: printing/page/print_format_builder/print_format_builder.js:757 -#: public/js/frappe/form/grid_row.js:402 -#: public/js/frappe/views/workspace/workspace.js:647 +#: public/js/frappe/form/grid_row.js:403 +#: public/js/frappe/views/workspace/workspace.js:658 msgid "Update" msgstr "Güncelle" @@ -32639,21 +34155,21 @@ msgctxt "Document Naming Settings" msgid "Update Amendment Naming" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:596 +#: public/js/frappe/views/workspace/workspace.js:607 msgid "Update Details" -msgstr "Ayrıntıları Güncelle" +msgstr "" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: core/doctype/data_import/data_import.json msgctxt "Data Import" msgid "Update Existing Records" -msgstr "Mevcut Kayıtları Güncelle" +msgstr "" #. Label of a Select field in DocType 'Workflow Document State' #: workflow/doctype/workflow_document_state/workflow_document_state.json msgctxt "Workflow Document State" msgid "Update Field" -msgstr "Alanı Güncelle" +msgstr "" #: core/doctype/installed_applications/installed_applications.js:6 #: core/doctype/installed_applications/installed_applications.js:13 @@ -32674,62 +34190,62 @@ msgstr "" #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "Update Series Number" -msgstr "Seri Numaralarını Güncelle" +msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Update Settings" -msgstr "Ayarları güncelle" +msgstr "" #: public/js/frappe/views/translation_manager.js:13 msgid "Update Translations" -msgstr "Çevirileri Güncelle" +msgstr "" #. Label of a Small Text field in DocType 'Bulk Update' #: desk/doctype/bulk_update/bulk_update.json msgctxt "Bulk Update" msgid "Update Value" -msgstr "Değer Güncelle" +msgstr "" #. Label of a Data field in DocType 'Workflow Document State' #: workflow/doctype/workflow_document_state/workflow_document_state.json msgctxt "Workflow Document State" msgid "Update Value" -msgstr "Değer Güncelle" +msgstr "" -#: public/js/frappe/list/bulk_operations.js:310 +#: public/js/frappe/list/bulk_operations.js:345 msgid "Update {0} records" -msgstr "{0} Kaydı Güncelle" +msgstr "" -#: desk/doctype/desktop_icon/desktop_icon.py:452 +#: desk/doctype/desktop_icon/desktop_icon.py:446 #: public/js/frappe/web_form/web_form.js:423 msgid "Updated" -msgstr "Güncellendi" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Updated" -msgstr "Güncellendi" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Updated" -msgstr "Güncellendi" +msgstr "" #: desk/doctype/bulk_update/bulk_update.js:32 msgid "Updated Successfully" -msgstr "başarıyla güncellendi" +msgstr "" #: public/js/frappe/desk.js:420 msgid "Updated To A New Version 🎉" -msgstr "Yeni Bir Sürüme Güncellenmiş 🎉" +msgstr "" -#: public/js/frappe/list/bulk_operations.js:307 +#: public/js/frappe/list/bulk_operations.js:342 msgid "Updated successfully" -msgstr "Başarıyla güncellendi" +msgstr "" #. Label of a Tab Break field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json @@ -32737,16 +34253,16 @@ msgctxt "System Settings" msgid "Updates" msgstr "" -#: utils/response.py:320 +#: utils/response.py:316 msgid "Updating" -msgstr "Güncelleniyor" +msgstr "" #: public/js/frappe/form/save.js:11 msgctxt "Freeze message while updating a document" msgid "Updating" -msgstr "Güncelleniyor" +msgstr "" -#: email/doctype/email_queue/email_queue.py:406 +#: email/doctype/email_queue/email_queue.py:428 msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." msgstr "" @@ -32754,7 +34270,7 @@ msgstr "" msgid "Updating counter may lead to document name conflicts if not done properly" msgstr "" -#: desk/page/setup_wizard/setup_wizard.py:23 +#: desk/page/setup_wizard/setup_wizard.py:22 msgid "Updating global settings" msgstr "" @@ -32766,30 +34282,44 @@ msgstr "" msgid "Updating related fields..." msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:98 +#: desk/doctype/bulk_update/bulk_update.py:96 msgid "Updating {0}" -msgstr "{0} güncelleniyor" +msgstr "" #: core/doctype/data_import/data_import.js:36 msgid "Updating {0} of {1}, {2}" -msgstr "{1}, {2} ürününün {0} güncellenmesi" +msgstr "" #: public/js/frappe/file_uploader/file_uploader.bundle.js:121 #: public/js/frappe/file_uploader/file_uploader.bundle.js:122 +#: public/js/frappe/form/grid.js:63 +#: public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" -msgstr "Karşıya Yükle" +msgstr "" #. Label of a Check field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "Uploaded To Dropbox" -msgstr "Dropbox'a Yüklendi" +msgstr "" #. Label of a Check field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "Uploaded To Google Drive" -msgstr "Google Drive'a Yüklendi" +msgstr "" + +#: integrations/doctype/google_drive/google_drive.py:196 +msgid "Uploading backup to Google Drive." +msgstr "" + +#: integrations/doctype/google_drive/google_drive.py:201 +msgid "Uploading successful." +msgstr "" + +#: integrations/doctype/google_drive/google_drive.js:16 +msgid "Uploading to Google Drive" +msgstr "" #. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding #. Step' @@ -32803,7 +34333,13 @@ msgstr "" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Use ASCII encoding for password" -msgstr "Şifre için ASCII kodlamasını kullan" +msgstr "" + +#. Label of a Check field in DocType 'Auto Email Report' +#: email/doctype/auto_email_report/auto_email_report.json +msgctxt "Auto Email Report" +msgid "Use First Day of Period" +msgstr "" #. Label of a Check field in DocType 'Email Template' #: email/doctype/email_template/email_template.json @@ -32815,37 +34351,37 @@ msgstr "" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Use IMAP" -msgstr "IMAP Kullan" +msgstr "" #. Label of a Check field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Use IMAP" -msgstr "IMAP Kullan" +msgstr "" #. Label of a Check field in DocType 'SMS Settings' #: core/doctype/sms_settings/sms_settings.json msgctxt "SMS Settings" msgid "Use POST" -msgstr "POST'u Kullan" +msgstr "" #. Label of a Check field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Use Report Chart" -msgstr "Rapor Grafiğini Kullan" +msgstr "" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Use SSL" -msgstr "SSL Kullan" +msgstr "" #. Label of a Check field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Use SSL" -msgstr "SSL Kullan" +msgstr "" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json @@ -32863,33 +34399,33 @@ msgstr "" #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Use TLS" -msgstr "TLS Kullan" +msgstr "" #. Label of a Check field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "Use TLS" -msgstr "TLS Kullan" +msgstr "" #: utils/password_strength.py:44 msgid "Use a few words, avoid common phrases." -msgstr "Birkaç kelime kullanın, yaygın ifadelerden kaçının." +msgstr "" #. Label of a Check field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Use different Email ID" -msgstr "Farklı E-posta kullan" +msgstr "" -#: model/db_query.py:434 +#: model/db_query.py:423 msgid "Use of function {0} in field is restricted" msgstr "" -#: model/db_query.py:413 +#: model/db_query.py:402 msgid "Use of sub-query or function is restricted" -msgstr "Alt sorgu veya işlev kullanımı kısıtlıdır" +msgstr "" -#: printing/page/print/print.js:272 +#: printing/page/print/print.js:279 msgid "Use the new Print Format Builder" msgstr "" @@ -32897,7 +34433,7 @@ msgstr "" #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "Use this fieldname to generate title" -msgstr "Başlığı oluşturmak için bu alan adı kullanın" +msgstr "" #. Label of a Check field in DocType 'User Email' #: core/doctype/user_email/user_email.json @@ -32909,6 +34445,7 @@ msgstr "" #: core/doctype/user/user.json #: core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: desk/page/user_profile/user_profile_controller.js:65 +#: public/js/frappe/form/templates/set_sharing.html:3 #: templates/emails/energy_points_summary.html:38 msgid "User" msgstr "Kullanıcı" @@ -33011,10 +34548,9 @@ msgstr "Kullanıcı" #. Label of a Link field in DocType 'Permission Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "User" -msgstr "kullanıcı" +msgstr "Kullanıcı" #. Label of a Link field in DocType 'Personal Data Download Request' #: website/doctype/personal_data_download_request/personal_data_download_request.json @@ -33083,9 +34619,9 @@ msgctxt "Access Log" msgid "User " msgstr "" -#: core/doctype/has_role/has_role.py:24 +#: core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" -msgstr "Kullanıcı '{0}' zaten bir role sahip '{1}'" +msgstr "" #. Name of a DocType #: core/doctype/report/user_activity_report.json @@ -33101,31 +34637,31 @@ msgstr "" #: website/doctype/web_page_view/web_page_view.json msgctxt "Web Page View" msgid "User Agent" -msgstr "Kullanıcı Aracısı" +msgstr "" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "User Cannot Create" -msgstr "Kullanıcı oluşturulamıyor" +msgstr "" #. Label of a Check field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "User Cannot Search" -msgstr "Kullanıcı aranamıyor" +msgstr "" #. Label of a Table field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "User Defaults" -msgstr "Kullanıcı Varsayılanları" +msgstr "" #. Label of a Tab Break field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "User Details" -msgstr "" +msgstr "Kullanıcı Detayları" #. Name of a DocType #: core/doctype/user_document_type/user_document_type.json @@ -33139,19 +34675,19 @@ msgstr "" #. Name of a DocType #: core/doctype/user_email/user_email.json msgid "User Email" -msgstr "Kullanıcı E-Posta" +msgstr "" #. Label of a Table field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "User Emails" -msgstr "Kullanıcı e-postalar" +msgstr "" #. Label of a Select field in DocType 'Energy Point Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "User Field" -msgstr "Kullanıcı Alanı" +msgstr "" #. Name of a DocType #: core/doctype/user_group/user_group.json @@ -33173,19 +34709,24 @@ msgstr "" #: core/doctype/user_social_login/user_social_login.json msgctxt "User Social Login" msgid "User ID" -msgstr "Kullanıcı kimliği" +msgstr "Kullanıcı ID" #. Label of a Data field in DocType 'Social Login Key' #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "User ID Property" -msgstr "Kullanıcı Kimliği Özelliği" +msgstr "" + +#. Description of a DocType +#: website/doctype/blogger/blogger.json +msgid "User ID of a Blogger" +msgstr "" #. Label of a Link field in DocType 'Contact' #: contacts/doctype/contact/contact.json msgctxt "Contact" msgid "User Id" -msgstr "Kullanıcı kimliği" +msgstr "" #. Label of a Select field in DocType 'User Type' #: core/doctype/user_type/user_type.json @@ -33201,49 +34742,58 @@ msgstr "" #: core/doctype/user/user.json msgctxt "User" msgid "User Image" -msgstr "Kullanıcı Resmi" +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:114 +msgid "User Menu" +msgstr "" #. Label of a Data field in DocType 'Personal Data Download Request' #: website/doctype/personal_data_download_request/personal_data_download_request.json msgctxt "Personal Data Download Request" msgid "User Name" -msgstr "Kullanıcı adı" +msgstr "" #. Name of a DocType #: core/doctype/user_permission/user_permission.json msgid "User Permission" -msgstr "Kullanıcı İzni" +msgstr "" #. Linked DocType in User's connections #: core/doctype/user/user.json msgctxt "User" msgid "User Permission" -msgstr "Kullanıcı İzni" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1772 -#: public/js/frappe/views/reports/report_view.js:1657 +#: core/page/permission_manager/permission_manager_help.html:30 +#: public/js/frappe/views/reports/query_report.js:1789 +#: public/js/frappe/views/reports/report_view.js:1654 msgid "User Permissions" -msgstr "Kullanıcı İzinleri" +msgstr "" -#: public/js/frappe/list/list_view.js:1639 +#: public/js/frappe/list/list_view.js:1685 msgctxt "Button in list view menu" msgid "User Permissions" -msgstr "Kullanıcı İzinleri" +msgstr "" #. Label of a Link in the Users Workspace #: core/workspace/users/users.json msgctxt "User Permission" msgid "User Permissions" -msgstr "Kullanıcı İzinleri" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "" #: core/doctype/user_permission/user_permission_list.js:124 -msgid "User Permissions created sucessfully" -msgstr "Kullanıcı İzinleri başarıyla oluşturuldu" +msgid "User Permissions created successfully" +msgstr "" #. Label of a shortcut in the Users Workspace #: core/workspace/users/users.json msgid "User Profile" -msgstr "Kullanıcı Profili" +msgstr "" #. Label of a Link field in DocType 'LDAP Group Mapping' #: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json @@ -33251,38 +34801,47 @@ msgctxt "LDAP Group Mapping" msgid "User Role" msgstr "" +#. Name of a DocType +#: core/doctype/user_role_profile/user_role_profile.json +msgid "User Role Profile" +msgstr "" + #. Name of a DocType #: core/doctype/user_select_document_type/user_select_document_type.json msgid "User Select Document Type" msgstr "" +#: desk/page/user_profile/user_profile_sidebar.html:52 +msgid "User Settings" +msgstr "" + #. Name of a DocType #: core/doctype/user_social_login/user_social_login.json msgid "User Social Login" -msgstr "Kullanıcı Sosyal Girişi" +msgstr "" #. Label of a Data field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "User Tags" -msgstr "Kullanıcı Etiketleri" +msgstr "" #. Name of a DocType #: core/doctype/user_type/user_type.json core/doctype/user_type/user_type.py:82 msgid "User Type" -msgstr "Kullanıcı Türü" +msgstr "" #. Label of a Link field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "User Type" -msgstr "Kullanıcı Türü" +msgstr "" #. Label of a shortcut in the Users Workspace #: core/workspace/users/users.json msgctxt "User Type" msgid "User Type" -msgstr "Kullanıcı Türü" +msgstr "" #. Name of a DocType #: core/doctype/user_type_module/user_type_module.json @@ -33300,42 +34859,46 @@ msgstr "" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "User can login using Email id or Mobile number" -msgstr "Kullanıcı e-posta kimliği veya Cep telefonu numarası kullanarak giriş yapabilir" +msgstr "" #. Description of the 'Allow Login using User Name' (Check) field in DocType #. 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "User can login using Email id or User Name" -msgstr "Kullanıcı e-posta kimliği veya Kullanıcı Adı'nı kullanarak giriş yapabilir" +msgstr "" #: desk/page/user_profile/user_profile_controller.js:26 msgid "User does not exist" -msgstr "Kullanıcı yok" +msgstr "" + +#: templates/includes/login/login.js:293 +msgid "User does not exist." +msgstr "" #: core/doctype/user_type/user_type.py:82 msgid "User does not have permission to create the new {0}" msgstr "" -#: core/doctype/docshare/docshare.py:55 +#: core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" -msgstr "Paylaşım için bir kullanıcı zorunludur" +msgstr "" #. Label of a Check field in DocType 'Document Naming Settings' #: core/doctype/document_naming_settings/document_naming_settings.json msgctxt "Document Naming Settings" msgid "User must always select" -msgstr "Kullanıcı her zaman seçmelidir" +msgstr "" -#: model/delete_doc.py:224 +#: model/delete_doc.py:235 msgid "User not allowed to delete {0}: {1}" -msgstr "Kullanıcıya silme izni verilmedi {0}: {1}" +msgstr "" -#: core/doctype/user_permission/user_permission.py:59 +#: core/doctype/user_permission/user_permission.py:60 msgid "User permission already exists" -msgstr "Kullanıcı izni zaten mevcut" +msgstr "" -#: www/login.py:153 +#: www/login.py:151 msgid "User with email address {0} does not exist" msgstr "" @@ -33343,32 +34906,36 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: core/doctype/user/user.py:504 +#: core/doctype/user/user.py:540 msgid "User {0} cannot be deleted" -msgstr "Kullanıcı {0} silinemez" +msgstr "" -#: core/doctype/user/user.py:242 +#: core/doctype/user/user.py:279 msgid "User {0} cannot be disabled" -msgstr "Kullanıcı {0} devre dışı edilemez" +msgstr "" -#: core/doctype/user/user.py:564 +#: core/doctype/user/user.py:609 msgid "User {0} cannot be renamed" -msgstr "Kullanıcı {0} adı değiştirilemez" +msgstr "" -#: permissions.py:139 +#: permissions.py:137 msgid "User {0} does not have access to this document" -msgstr "{0} kullanıcısı bu dokümana erişemiyor" +msgstr "" -#: permissions.py:162 +#: permissions.py:160 msgid "User {0} does not have doctype access via role permission for document {1}" -msgstr "{0} kullanıcısı, {1} dokümanı için rol izni yoluyla doktip erişimine sahip değil" +msgstr "" #: templates/emails/data_deletion_approval.html:1 #: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:108 msgid "User {0} has requested for data deletion" -msgstr "{0} kullanıcısı veri silme talebinde bulundu" +msgstr "" -#: utils/oauth.py:272 +#: core/doctype/user/user.py:1372 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: utils/oauth.py:265 msgid "User {0} is disabled" msgstr "Kullanıcı {0} devre dışı" @@ -33384,23 +34951,23 @@ msgstr "" #: www/login.py:99 msgid "Username" -msgstr "Kullanıcı adı" +msgstr "" #. Label of a Data field in DocType 'User' #: core/doctype/user/user.json msgctxt "User" msgid "Username" -msgstr "Kullanıcı adı" +msgstr "" #. Label of a Data field in DocType 'User Social Login' #: core/doctype/user_social_login/user_social_login.json msgctxt "User Social Login" msgid "Username" -msgstr "Kullanıcı adı" +msgstr "" -#: core/doctype/user/user.py:644 +#: core/doctype/user/user.py:694 msgid "Username {0} already exists" -msgstr "Kullanıcı adı {0} zaten mevcut" +msgstr "" #. Name of a Workspace #. Label of a Card Break in the Users Workspace @@ -33419,11 +34986,11 @@ msgstr "Kullanıcılar" #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "Users assigned to the reference document will get points." -msgstr "Referans dokümana atanan kullanıcılar puan kazanacaktır." +msgstr "" -#: core/page/permission_manager/permission_manager.js:345 +#: core/page/permission_manager/permission_manager.js:349 msgid "Users with role {0}:" -msgstr "Rolüne sahip kullanıcılar {0}:" +msgstr "" #: public/js/frappe/ui/theme_switcher.js:70 msgid "Uses system's theme to switch between light and dark mode" @@ -33431,7 +34998,7 @@ msgstr "" #: public/js/frappe/desk.js:112 msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." -msgstr "Bu konsolu kullanmak, saldırganların sizi taklit etmesine ve bilgilerinizi çalmasına izin verebilir. Anlamadığınız kodu girmeyin veya yapıştırmayın." +msgstr "" #. Label of a Percent field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json @@ -33444,17 +35011,25 @@ msgstr "" #: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgctxt "OAuth Authorization Code" msgid "Valid" -msgstr "Geçerli" +msgstr "" + +#: templates/includes/login/login.js:53 templates/includes/login/login.js:66 +msgid "Valid Login id required." +msgstr "" + +#: templates/includes/login/login.js:40 +msgid "Valid email and name required" +msgstr "" #. Label of a Check field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Validate Field" -msgstr "Alanı Doğrula" +msgstr "" #: public/js/frappe/web_form/web_form.js:356 msgid "Validation Error" -msgstr "Doğrulama Hatası" +msgstr "" #. Label of a Select field in DocType 'OAuth Authorization Code' #: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json @@ -33462,9 +35037,16 @@ msgctxt "OAuth Authorization Code" msgid "Validity" msgstr "Geçerlilik" +#: core/doctype/prepared_report/prepared_report.js:8 +#: desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: desk/doctype/number_card/number_card.js:205 +#: desk/doctype/number_card/number_card.js:333 #: email/doctype/auto_email_report/auto_email_report.js:92 -#: public/js/frappe/list/bulk_operations.js:271 -#: public/js/frappe/list/bulk_operations.js:333 +#: public/js/frappe/list/bulk_operations.js:306 +#: public/js/frappe/list/bulk_operations.js:368 +#: public/js/frappe/list/list_view_permission_restrictions.html:4 +#: website/doctype/web_form/web_form.js:197 msgid "Value" msgstr "Değer" @@ -33514,151 +35096,163 @@ msgstr "Değer" #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Value Based On" -msgstr "Değere Dayalı" +msgstr "" #. Option for the 'For Document Event' (Select) field in DocType 'Energy Point #. Rule' #: social/doctype/energy_point_rule/energy_point_rule.json msgctxt "Energy Point Rule" msgid "Value Change" -msgstr "Değer Değiştirme" +msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Value Change" -msgstr "Değer Değiştirme" +msgstr "" #. Label of a Select field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Value Changed" -msgstr "Değer Değişti" +msgstr "" #. Label of a Data field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "Value To Be Set" -msgstr "Ayarlanacak Değer" +msgstr "" -#: model/base_document.py:930 model/document.py:648 +#: model/base_document.py:955 model/document.py:668 msgid "Value cannot be changed for {0}" -msgstr "Değer için değiştirilemez {0}" +msgstr "" -#: model/document.py:593 +#: model/document.py:614 msgid "Value cannot be negative for" -msgstr "Değer negatif olamaz" +msgstr "" -#: model/document.py:597 +#: model/document.py:618 msgid "Value cannot be negative for {0}: {1}" -msgstr "{0} için değer negatif olamaz: {1}" +msgstr "" #: custom/doctype/property_setter/property_setter.js:7 msgid "Value for a check field can be either 0 or 1" -msgstr "Bir kontrol alanı için değer 0 ya da 1 olabilir, ya da" +msgstr "" -#: custom/doctype/customize_form/customize_form.py:611 +#: custom/doctype/customize_form/customize_form.py:607 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" -msgstr "{0} alanının değeri, {1} içinde çok uzun. Uzunluk {2} karakterden az olmalıdır" +msgstr "" -#: model/base_document.py:360 +#: model/base_document.py:379 msgid "Value for {0} cannot be a list" -msgstr "{0} bir liste olamaz değer" +msgstr "" #. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment #. Rule' #: automation/doctype/assignment_rule/assignment_rule.json msgctxt "Assignment Rule" msgid "Value from this field will be set as the due date in the ToDo" -msgstr "Bu alandaki değer, Yapılacak İşte son tarih olarak ayarlanacaktır" +msgstr "" -#: model/base_document.py:712 +#: model/base_document.py:733 msgid "Value missing for" -msgstr "Bunun için değer eksik" +msgstr "" -#: core/doctype/data_import/importer.py:698 +#: core/doctype/data_import/importer.py:695 msgid "Value must be one of {0}" -msgstr "Değer, {0} 'dan biri olmalı" +msgstr "" #. Label of a Data field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Value to Validate" -msgstr "Doğrulanacak Değer" +msgstr "" -#: model/base_document.py:997 +#: model/base_document.py:1022 msgid "Value too big" -msgstr "çok büyük bir değer" +msgstr "" -#: core/doctype/data_import/importer.py:711 +#: core/doctype/data_import/importer.py:708 msgid "Value {0} missing for {1}" -msgstr "{1} için {0} değeri eksik" +msgstr "" -#: core/doctype/data_import/importer.py:742 utils/data.py:877 +#: core/doctype/data_import/importer.py:739 utils/data.py:861 msgid "Value {0} must be in the valid duration format: d h m s" -msgstr "{0} değeri, geçerli süre biçiminde olmalıdır: dhms" +msgstr "" -#: core/doctype/data_import/importer.py:729 +#: core/doctype/data_import/importer.py:726 msgid "Value {0} must in {1} format" -msgstr "Değer {0}, {1} biçiminde olmalıdır" +msgstr "" + +#: core/doctype/version/version_view.html:8 +msgid "Values Changed" +msgstr "Değerler Değişti" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: printing/doctype/print_settings/print_settings.json msgctxt "Print Settings" msgid "Verdana" -msgstr "Verdana" +msgstr "" -#: twofactor.py:362 +#: twofactor.py:357 msgid "Verfication Code" -msgstr "Verfication Kodu" +msgstr "" #: templates/emails/delete_data_confirmation.html:10 msgid "Verification Link" -msgstr "Doğrulama bağlantısı" +msgstr "" -#: twofactor.py:251 +#: templates/includes/login/login.js:391 +msgid "Verification code email not sent. Please contact Administrator." +msgstr "" + +#: twofactor.py:248 msgid "Verification code has been sent to your registered email address." -msgstr "Doğrulama kodu, kayıtlı e-posta adresinize gönderildi." +msgstr "" #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' #: core/doctype/translation/translation.json msgctxt "Translation" msgid "Verified" -msgstr "Doğrulanmış" +msgstr "" -#: public/js/frappe/ui/messages.js:352 +#: public/js/frappe/ui/messages.js:350 msgid "Verify" -msgstr "Doğrulama" +msgstr "" -#: public/js/frappe/ui/messages.js:351 +#: public/js/frappe/ui/messages.js:349 msgid "Verify Password" -msgstr "Şifrenizi denetleyin" +msgstr "" + +#: templates/includes/login/login.js:172 +msgid "Verifying..." +msgstr "" #. Name of a DocType #: core/doctype/version/version.json msgid "Version" -msgstr "Sürüm" +msgstr "" #: public/js/frappe/desk.js:131 msgid "Version Updated" -msgstr "Sürüm Güncellendi" +msgstr "" #. Label of a Data field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Video URL" -msgstr "Video linki" +msgstr "" #. Label of a Select field in DocType 'Form Tour' #: desk/doctype/form_tour/form_tour.json msgctxt "Form Tour" msgid "View" -msgstr "" +msgstr "Göster" #: core/doctype/success_action/success_action.js:58 #: public/js/frappe/form/success_action.js:89 msgid "View All" -msgstr "Hepsini gör" +msgstr "" #: public/js/frappe/form/toolbar.js:507 msgid "View Audit Trail" @@ -33668,51 +35262,56 @@ msgstr "" msgid "View Blog Post" msgstr "" -#: templates/includes/comments/comments.py:58 +#: templates/includes/comments/comments.py:56 msgid "View Comment" -msgstr "Yorumu Gör" +msgstr "" + +#: public/js/frappe/ui/notifications/notifications.js:213 +msgid "View Full Log" +msgstr "" #: public/js/frappe/views/treeview.js:467 +#: public/js/frappe/widgets/quick_list_widget.js:245 msgid "View List" -msgstr "Görünümü listesi" +msgstr "" #. Name of a DocType #: core/doctype/view_log/view_log.json msgid "View Log" -msgstr "Günlüğü Görüntüle" +msgstr "" -#: core/doctype/user/user.js:133 +#: core/doctype/user/user.js:137 #: core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" -msgstr "İzin Verilen Belgeleri Görüntüle" +msgstr "" #. Label of a Button field in DocType 'Notification' #: email/doctype/notification/notification.json msgctxt "Notification" msgid "View Properties (via Customize Form)" -msgstr "(Özelleştir Formu aracılığıyla) Görünüm Özellikleri" +msgstr "" #: social/doctype/energy_point_log/energy_point_log_list.js:20 msgid "View Ref" -msgstr "Ref görüntüle" +msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "View Report" -msgstr "Raporu Görüntüle" +msgstr "" #. Label of a Section Break field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" msgid "View Settings" -msgstr "Görünüm Ayarları" +msgstr "" #. Label of a Section Break field in DocType 'DocType' #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "View Settings" -msgstr "Görünüm Ayarları" +msgstr "" #. Label of a Check field in DocType 'Role' #: core/doctype/role/role.json @@ -33724,11 +35323,11 @@ msgstr "" #. Type: Action #: hooks.py website/doctype/website_settings/website_settings.js:16 msgid "View Website" -msgstr "Website Görünümü" +msgstr "" #: www/confirm_workflow_action.html:12 msgid "View document" -msgstr "Belgeyi görüntüle" +msgstr "" #: core/doctype/file/file.js:31 msgid "View file" @@ -33736,34 +35335,39 @@ msgstr "" #: templates/emails/auto_email_report.html:60 msgid "View report in your browser" -msgstr "Raporu tarayıcınızda görüntüleyin" +msgstr "" #: templates/emails/print_link.html:2 msgid "View this in your browser" -msgstr "Bu öğeyi tarayıcıda görüntüle" +msgstr "" + +#: public/js/frappe/web_form/web_form.js:450 +msgctxt "Button in web form" +msgid "View your response" +msgstr "" #: automation/doctype/auto_repeat/auto_repeat.js:43 #: desk/doctype/calendar_view/calendar_view_list.js:10 #: desk/doctype/dashboard/dashboard_list.js:10 msgid "View {0}" -msgstr "{0} görüntüleme" +msgstr "" #. Label of a Data field in DocType 'View Log' #: core/doctype/view_log/view_log.json msgctxt "View Log" msgid "Viewed By" -msgstr "Tarafından görüntülendi" +msgstr "" #. Label of a Card Break in the Build Workspace #: core/workspace/build/build.json msgid "Views" -msgstr "" +msgstr "Görüntüleme" #. Group in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Views" -msgstr "" +msgstr "Görüntüleme" #. Label of a Check field in DocType 'DocField' #: core/doctype/docfield/docfield.json @@ -33771,11 +35375,11 @@ msgctxt "DocField" msgid "Virtual" msgstr "" -#: model/virtual_doctype.py:78 +#: model/virtual_doctype.py:76 msgid "Virtual DocType {} requires a static method called {} found {}" msgstr "" -#: model/virtual_doctype.py:91 +#: model/virtual_doctype.py:89 msgid "Virtual DocType {} requires overriding an instance method called {} found {}" msgstr "" @@ -33789,11 +35393,11 @@ msgstr "" #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Visit" -msgstr "Ziyaret" +msgstr "" #: website/doctype/website_route_meta/website_route_meta.js:7 msgid "Visit Web Page" -msgstr "Web Sayfasını Ziyaret Edin" +msgstr "" #. Label of a Data field in DocType 'Web Page View' #: website/doctype/web_page_view/web_page_view.json @@ -33801,7 +35405,7 @@ msgctxt "Web Page View" msgid "Visitor ID" msgstr "" -#: templates/discussions/reply_section.html:38 +#: templates/discussions/reply_section.html:39 msgid "Want to discuss?" msgstr "" @@ -33819,7 +35423,7 @@ msgstr "Uyarı" #: public/js/frappe/model/meta.js:179 msgid "Warning: Unable to find {0} in any table related to {1}" -msgstr "Uyarı: {1} ile ilgili herhangi bir tabloda {0} bulunamıyor" +msgstr "" #. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' #: core/doctype/document_naming_rule/document_naming_rule.json @@ -33829,13 +35433,17 @@ msgstr "" #: website/doctype/help_article/templates/help_article.html:24 msgid "Was this article helpful?" -msgstr "Bu makale yardımcı oldu mu?" +msgstr "" + +#: public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "Eğitimi izleyin" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: desk/doctype/onboarding_step/onboarding_step.json msgctxt "Onboarding Step" msgid "Watch Video" -msgstr "Video izle" +msgstr "" #: desk/doctype/workspace/workspace.js:38 msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" @@ -33843,11 +35451,15 @@ msgstr "" #: templates/emails/delete_data_confirmation.html:2 msgid "We have received a request for deletion of {0} data associated with: {1}" -msgstr "{1} ile ilişkili {0} verilerinin silinmesi için bir istek aldık." +msgstr "" #: templates/emails/download_data.html:2 msgid "We have received a request from you to download your {0} data associated with: {1}" -msgstr "{1} ile ilişkili {0} verilerinizi indirmeniz için bir istek aldık." +msgstr "" + +#: www/contact.py:48 +msgid "We've received your query!" +msgstr "" #: public/js/frappe/form/controls/password.js:88 msgid "Weak" @@ -33856,37 +35468,37 @@ msgstr "" #. Name of a DocType #: website/doctype/web_form/web_form.json msgid "Web Form" -msgstr "Web Formu" +msgstr "" #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Web Form" -msgstr "Web Formu" +msgstr "" #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Web Form" -msgstr "Web Formu" +msgstr "" #. Label of a Link in the Website Workspace #. Label of a shortcut in the Website Workspace #: website/workspace/website/website.json msgctxt "Web Form" msgid "Web Form" -msgstr "Web Formu" +msgstr "" #. Name of a DocType #: website/doctype/web_form_field/web_form_field.json msgid "Web Form Field" -msgstr "Web Form Alanı" +msgstr "" #. Label of a Table field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Web Form Fields" -msgstr "Web Form Alanları" +msgstr "" #. Name of a DocType #: website/doctype/web_form_list_column/web_form_list_column.json @@ -33896,67 +35508,67 @@ msgstr "" #. Name of a DocType #: website/doctype/web_page/web_page.json msgid "Web Page" -msgstr "Web Sayfası" +msgstr "" #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Web Page" -msgstr "Web Sayfası" +msgstr "" #. Label of a Link in the Website Workspace #. Label of a shortcut in the Website Workspace #: website/workspace/website/website.json msgctxt "Web Page" msgid "Web Page" -msgstr "Web Sayfası" +msgstr "" #. Name of a DocType #: website/doctype/web_page_block/web_page_block.json msgid "Web Page Block" -msgstr "Web Sayfası Bloğu" +msgstr "" -#: public/js/frappe/utils/utils.js:1697 +#: public/js/frappe/utils/utils.js:1698 msgid "Web Page URL" msgstr "" #. Name of a DocType #: website/doctype/web_page_view/web_page_view.json msgid "Web Page View" -msgstr "Web Sayfası Görünümü" +msgstr "" #. Label of a Card Break in the Website Workspace #: website/workspace/website/website.json msgid "Web Site" -msgstr "Web Sitesi" +msgstr "" #. Name of a DocType #: website/doctype/web_template/web_template.json msgid "Web Template" -msgstr "Web Şablonu" +msgstr "" #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Web Template" -msgstr "Web Şablonu" +msgstr "" #. Label of a Link field in DocType 'Web Page Block' #: website/doctype/web_page_block/web_page_block.json msgctxt "Web Page Block" msgid "Web Template" -msgstr "Web Şablonu" +msgstr "" #. Name of a DocType #: website/doctype/web_template_field/web_template_field.json msgid "Web Template Field" -msgstr "Web Şablonu Alanı" +msgstr "" #. Label of a Code field in DocType 'Web Page Block' #: website/doctype/web_page_block/web_page_block.json msgctxt "Web Page Block" msgid "Web Template Values" -msgstr "Web Şablonu Değerleri" +msgstr "" #: utils/jinja_globals.py:48 msgid "Web Template is not specified" @@ -33966,58 +35578,58 @@ msgstr "" #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Web View" -msgstr "Web Görünümü" +msgstr "" #. Name of a DocType #: integrations/doctype/webhook/webhook.json msgid "Webhook" -msgstr "Webhook" +msgstr "" #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Webhook" -msgstr "Webhook" +msgstr "" #. Label of a Link in the Integrations Workspace #: integrations/workspace/integrations/integrations.json msgctxt "Webhook" msgid "Webhook" -msgstr "Webhook" +msgstr "" #. Label of a Link field in DocType 'Webhook Request Log' #: integrations/doctype/webhook_request_log/webhook_request_log.json msgctxt "Webhook Request Log" msgid "Webhook" -msgstr "Webhook" +msgstr "" #. Name of a DocType #: integrations/doctype/webhook_data/webhook_data.json msgid "Webhook Data" -msgstr "Webhook Veri" +msgstr "" #. Label of a Section Break field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Webhook Data" -msgstr "Webhook Veri" +msgstr "" #. Name of a DocType #: integrations/doctype/webhook_header/webhook_header.json msgid "Webhook Header" -msgstr "Webhook Başlığı" +msgstr "" #. Label of a Section Break field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Webhook Headers" -msgstr "Webhook Başlıklar" +msgstr "" #. Label of a Section Break field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Webhook Request" -msgstr "Webhook İsteği" +msgstr "" #. Name of a DocType #: integrations/doctype/webhook_request_log/webhook_request_log.json @@ -34034,42 +35646,43 @@ msgstr "" #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Webhook Secret" -msgstr "Webhook Secret" +msgstr "" #. Label of a Section Break field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Webhook Security" -msgstr "Webhook Güvenliği" +msgstr "" #. Label of a Section Break field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "Webhook Trigger" -msgstr "Web Kancası Tetikleyici" +msgstr "" #. Label of a Data field in DocType 'Slack Webhook URL' #: integrations/doctype/slack_webhook_url/slack_webhook_url.json msgctxt "Slack Webhook URL" msgid "Webhook URL" -msgstr "Web sayfası URL'si" +msgstr "" #. Name of a Workspace -#: email/doctype/newsletter/newsletter.py:451 +#: email/doctype/newsletter/newsletter.py:449 +#: public/js/frappe/ui/toolbar/about.js:8 #: website/workspace/website/website.json msgid "Website" -msgstr "Web sitesi" +msgstr "Website" #. Group in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Website" -msgstr "Web sitesi" +msgstr "Website" #. Name of a report #: website/report/website_analytics/website_analytics.json msgid "Website Analytics" -msgstr "Web Sitesi Analizi" +msgstr "" #. Name of a role #: core/doctype/comment/comment.json @@ -34094,34 +35707,34 @@ msgstr "Web Yöneticisi" #. Name of a DocType #: website/doctype/website_meta_tag/website_meta_tag.json msgid "Website Meta Tag" -msgstr "Website Meta Etiketi" +msgstr "" #. Name of a DocType #: website/doctype/website_route_meta/website_route_meta.json msgid "Website Route Meta" -msgstr "Website Rotası Meta" +msgstr "" #. Label of a Link in the Website Workspace #: website/workspace/website/website.json msgctxt "Website Route Meta" msgid "Website Route Meta" -msgstr "Website Rotası Meta" +msgstr "" #. Name of a DocType #: website/doctype/website_route_redirect/website_route_redirect.json msgid "Website Route Redirect" -msgstr "Website Rotası Yönlendirme" +msgstr "" #. Name of a DocType #: website/doctype/website_script/website_script.json msgid "Website Script" -msgstr "Website Script" +msgstr "" #. Label of a Link in the Website Workspace #: website/workspace/website/website.json msgctxt "Website Script" msgid "Website Script" -msgstr "Website Script" +msgstr "" #. Label of a Data field in DocType 'DocType' #: core/doctype/doctype/doctype.json @@ -34129,7 +35742,7 @@ msgctxt "DocType" msgid "Website Search Field" msgstr "" -#: core/doctype/doctype/doctype.py:1473 +#: core/doctype/doctype/doctype.py:1471 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -34148,80 +35761,80 @@ msgstr "Web Sitesi Ayarları" #. Name of a DocType #: website/doctype/website_sidebar/website_sidebar.json msgid "Website Sidebar" -msgstr "Website Kenar Çubuğu" +msgstr "" #. Label of a Link field in DocType 'Web Form' #: website/doctype/web_form/web_form.json msgctxt "Web Form" msgid "Website Sidebar" -msgstr "Website Kenar Çubuğu" +msgstr "" #. Label of a Link field in DocType 'Web Page' #: website/doctype/web_page/web_page.json msgctxt "Web Page" msgid "Website Sidebar" -msgstr "Website Kenar Çubuğu" +msgstr "" #. Label of a Link in the Website Workspace #: website/workspace/website/website.json msgctxt "Website Sidebar" msgid "Website Sidebar" -msgstr "Website Kenar Çubuğu" +msgstr "" #. Name of a DocType #: website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Website Sidebar Item" -msgstr "Website Kenar Çubuğu Öğe" +msgstr "" #. Name of a DocType #: website/doctype/website_slideshow/website_slideshow.json msgid "Website Slideshow" -msgstr "Website Slayt" +msgstr "" #. Label of a Link in the Website Workspace #: website/workspace/website/website.json msgctxt "Website Slideshow" msgid "Website Slideshow" -msgstr "Website Slayt" +msgstr "" #. Name of a DocType #: website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Website Slideshow Item" -msgstr "Website Slayt Ürün" +msgstr "" #. Name of a DocType #: website/doctype/website_theme/website_theme.json msgid "Website Theme" -msgstr "Website Teması" +msgstr "" #. Linked DocType in Module Def's connections #: core/doctype/module_def/module_def.json msgctxt "Module Def" msgid "Website Theme" -msgstr "Website Teması" +msgstr "" #. Label of a Link field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Website Theme" -msgstr "Website Teması" +msgstr "" #. Label of a Link in the Website Workspace #: website/workspace/website/website.json msgctxt "Website Theme" msgid "Website Theme" -msgstr "Website Teması" +msgstr "" #. Name of a DocType #: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json msgid "Website Theme Ignore App" -msgstr "Web Sitesi Teması Yoksay Uygulaması" +msgstr "" #. Label of a Image field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json msgctxt "Website Settings" msgid "Website Theme Image" -msgstr "Website Tema Resmi" +msgstr "" #. Label of a Code field in DocType 'Website Settings' #: website/doctype/website_settings/website_settings.json @@ -34260,15 +35873,15 @@ msgctxt "System Settings" msgid "Wednesday" msgstr "Çarşamba" -#: public/js/frappe/views/calendar/calendar.js:269 +#: public/js/frappe/views/calendar/calendar.js:270 msgid "Week" -msgstr "Hafta" +msgstr "Haftalık" #. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Weekdays" -msgstr "Hafta içi" +msgstr "" #: public/js/frappe/utils/common.js:399 #: website/report/website_analytics/website_analytics.js:24 @@ -34355,13 +35968,13 @@ msgstr "Haftalık" #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" msgid "Weekly Long" -msgstr "Haftalık Uzun" +msgstr "" #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: core/doctype/server_script/server_script.json msgctxt "Server Script" msgid "Weekly Long" -msgstr "Haftalık Uzun" +msgstr "" #: desk/page/setup_wizard/setup_wizard.js:372 msgid "Welcome" @@ -34371,13 +35984,13 @@ msgstr "" #: email/doctype/email_group/email_group.json msgctxt "Email Group" msgid "Welcome Email Template" -msgstr "Hoş Geldiniz E-posta Şablonu" +msgstr "" #. Label of a Link field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Welcome Email Template" -msgstr "Hoş Geldiniz E-posta Şablonu" +msgstr "" #. Label of a Data field in DocType 'Email Group' #: email/doctype/email_group/email_group.json @@ -34386,15 +35999,15 @@ msgid "Welcome URL" msgstr "" #. Name of a Workspace -#: core/workspace/welcome_workspace/welcome_workspace.json desk/desktop.py:468 +#: core/workspace/welcome_workspace/welcome_workspace.json desk/desktop.py:470 msgid "Welcome Workspace" msgstr "" -#: core/doctype/user/user.py:361 +#: core/doctype/user/user.py:397 msgid "Welcome email sent" -msgstr "Hoşgeldiniz e-posta adresine gönderildi" +msgstr "Hoşgeldiniz e-posta gönderimi yapılır" -#: core/doctype/user/user.py:436 +#: core/doctype/user/user.py:472 msgid "Welcome to {0}" msgstr "Hoşgeldiniz {0}" @@ -34403,7 +36016,14 @@ msgstr "Hoşgeldiniz {0}" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." -msgstr "Etkinleştirildiğinde, konukların uygulamanıza dosya yüklemelerine olanak tanır, örneğin, iş başvuruları web formunda, oturum açmaya gerek kalmadan kullanıcılardan dosya toplamak isterseniz bunu etkinleştirebilirsiniz." +msgstr "" + +#. Description of the 'Store Attached PDF Document' (Check) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." +msgstr "" #. Description of the 'Force Web Capture Mode for Uploads' (Check) field in #. DocType 'System Settings' @@ -34412,52 +36032,64 @@ msgctxt "System Settings" msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:440 +#: core/page/permission_manager/permission_manager_help.html:18 +msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." +msgstr "" + +#: public/js/frappe/widgets/widget_dialog.js:479 msgid "Which view of the associated DocType should this shortcut take you to?" -msgstr "Bu kısayol sizi ilişkili DocType'ın hangi görünümüne götürmeli?" +msgstr "" #. Description of the 'DocType View' (Select) field in DocType 'Workspace #. Shortcut' #: desk/doctype/workspace_shortcut/workspace_shortcut.json msgctxt "Workspace Shortcut" msgid "Which view of the associated DocType should this shortcut take you to?" -msgstr "Bu kısayol sizi ilişkili DocType'ın hangi görünümüne götürmeli?" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_column_selector.html:8 +msgid "Width" +msgstr "" #. Label of a Data field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" msgid "Width" -msgstr "Genişlik" +msgstr "" #. Label of a Data field in DocType 'Customize Form Field' #: custom/doctype/customize_form_field/customize_form_field.json msgctxt "Customize Form Field" msgid "Width" -msgstr "Genişlik" +msgstr "" #. Label of a Select field in DocType 'Dashboard Chart Link' #: desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgctxt "Dashboard Chart Link" msgid "Width" -msgstr "Genişlik" +msgstr "" #. Label of a Data field in DocType 'DocField' #: core/doctype/docfield/docfield.json msgctxt "DocField" msgid "Width" -msgstr "Genişlik" +msgstr "" #. Label of a Int field in DocType 'Report Column' #: core/doctype/report_column/report_column.json msgctxt "Report Column" msgid "Width" -msgstr "Genişlik" +msgstr "" + +#: printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "" #. Label of a Check field in DocType 'Report Filter' #: core/doctype/report_filter/report_filter.json msgctxt "Report Filter" msgid "Wildcard Filter" -msgstr "Joker Karakter Filtresi" +msgstr "" #. Description of the 'Wildcard Filter' (Check) field in DocType 'Report #. Filter' @@ -34470,30 +36102,30 @@ msgstr "" #: website/doctype/blogger/blogger.json msgctxt "Blogger" msgid "Will be used in url (usually first name)." -msgstr "Url (genellikle ilk adı) kullanılır." +msgstr "" #: desk/page/setup_wizard/setup_wizard.js:470 msgid "Will be your login ID" -msgstr "Oturum açma kimliğiniz olacak" +msgstr "" #: printing/page/print_format_builder/print_format_builder.js:424 msgid "Will only be shown if section headings are enabled" -msgstr "bölüm başlıkları etkinse yalnızca gösterilir" +msgstr "" #. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field #. in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0." -msgstr "Etkin olmayan siteler için planlanan işleri günde yalnızca bir kez çalıştırır. Varsayılan 0 ise 0 gündür." +msgstr "" #: public/js/frappe/form/print_utils.js:13 msgid "With Letter head" -msgstr "Antetli" +msgstr "" #: workflow/doctype/workflow/workflow.js:140 msgid "Worflow States Don't Exist" -msgstr "Worflow Eyaletleri Yok" +msgstr "" #. Label of a Section Break field in DocType 'RQ Worker' #: core/doctype/rq_worker/rq_worker.json @@ -34508,51 +36140,53 @@ msgid "Worker Name" msgstr "" #. Name of a DocType +#: public/js/workflow_builder/store.js:129 #: workflow/doctype/workflow/workflow.json msgid "Workflow" -msgstr "Workflow" +msgstr "İş Akışı" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: core/doctype/comment/comment.json msgctxt "Comment" msgid "Workflow" -msgstr "Workflow" +msgstr "İş Akışı" #. Option for the 'Comment Type' (Select) field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" msgid "Workflow" -msgstr "Workflow" +msgstr "İş Akışı" #. Group in DocType's connections #. Linked DocType in DocType's connections #: core/doctype/doctype/doctype.json msgctxt "DocType" msgid "Workflow" -msgstr "Workflow" +msgstr "İş Akışı" #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Workflow" msgid "Workflow" -msgstr "Workflow" +msgstr "İş Akışı" #. Name of a DocType #: workflow/doctype/workflow_action/workflow_action.json -#: workflow/doctype/workflow_action/workflow_action.py:486 +#: workflow/doctype/workflow_action/workflow_action.py:438 msgid "Workflow Action" -msgstr "Workflow İşlemi" +msgstr "" #. Name of a DocType +#. Description of a DocType #: workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" -msgstr "Workflow İşlem Master" +msgstr "" #. Label of a Data field in DocType 'Workflow Action Master' #: workflow/doctype/workflow_action_master/workflow_action_master.json msgctxt "Workflow Action Master" msgid "Workflow Action Name" -msgstr "Workflow İşlem Adı" +msgstr "" #. Name of a DocType #: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json @@ -34564,8 +36198,10 @@ msgstr "" #: workflow/doctype/workflow_document_state/workflow_document_state.json msgctxt "Workflow Document State" msgid "Workflow Action is not created for optional states" -msgstr "İsteğe bağlı durumlar için İş Akışı Eylemi oluşturulmadı" +msgstr "" +#: public/js/workflow_builder/store.js:129 +#: workflow/doctype/workflow/workflow.js:25 #: workflow/page/workflow_builder/workflow_builder.js:4 msgid "Workflow Builder" msgstr "" @@ -34595,47 +36231,52 @@ msgstr "" #. Name of a DocType #: workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Document State" -msgstr "İş Akışı Belge Durumu" +msgstr "" #. Label of a Data field in DocType 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Workflow Name" -msgstr "Workflow Adı" +msgstr "" #. Name of a DocType #: workflow/doctype/workflow_state/workflow_state.json msgid "Workflow State" -msgstr "Workflow Durumu" +msgstr "" #. Label of a Data field in DocType 'Workflow Action' #: workflow/doctype/workflow_action/workflow_action.json msgctxt "Workflow Action" msgid "Workflow State" -msgstr "Workflow Durumu" +msgstr "" #. Label of a Data field in DocType 'Workflow' #: workflow/doctype/workflow/workflow.json msgctxt "Workflow" msgid "Workflow State Field" -msgstr "Workflow Durumu Tarla" +msgstr "" -#: model/workflow.py:63 +#: model/workflow.py:61 msgid "Workflow State not set" -msgstr "Workflow Durumu ayarlanmadı" +msgstr "" -#: model/workflow.py:201 model/workflow.py:209 +#: model/workflow.py:197 model/workflow.py:205 msgid "Workflow State transition not allowed from {0} to {1}" -msgstr "İş Akışı Durumu geçişine {0} - {1} arasında izin verilmiyor" +msgstr "" -#: model/workflow.py:327 +#: model/workflow.py:320 msgid "Workflow Status" -msgstr "İş Akışı Durumu" +msgstr "" #. Name of a DocType #: workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" -msgstr "Workflow Geçiş" +msgstr "" + +#. Description of a DocType +#: workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" #. Description of the Onboarding Step 'Setup Approval Workflows' #: custom/onboarding_step/workflows/workflows.json @@ -34644,7 +36285,7 @@ msgstr "" #. Name of a DocType #: desk/doctype/workspace/workspace.json -#: public/js/frappe/ui/toolbar/search_utils.js:541 +#: public/js/frappe/ui/toolbar/search_utils.js:557 #: public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" @@ -34655,6 +36296,12 @@ msgctxt "Module Def" msgid "Workspace" msgstr "" +#. Label of a Section Break field in DocType 'User' +#: core/doctype/user/user.json +msgctxt "User" +msgid "Workspace" +msgstr "" + #. Label of a Link in the Build Workspace #: core/workspace/build/build.json msgctxt "Workspace" @@ -34701,15 +36348,19 @@ msgstr "" msgid "Workspace Shortcut" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1265 +#: desk/doctype/workspace/workspace.py:281 +msgid "Workspace not found" +msgstr "" + +#: public/js/frappe/views/workspace/workspace.js:1276 msgid "Workspace {0} Created Successfully" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:894 +#: public/js/frappe/views/workspace/workspace.js:905 msgid "Workspace {0} Deleted Successfully" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:672 +#: public/js/frappe/views/workspace/workspace.js:683 msgid "Workspace {0} Edited Successfully" msgstr "" @@ -34723,77 +36374,77 @@ msgstr "" #: core/doctype/custom_docperm/custom_docperm.json msgctxt "Custom DocPerm" msgid "Write" -msgstr "Yazma" +msgstr "" #. Label of a Check field in DocType 'DocPerm' #: core/doctype/docperm/docperm.json msgctxt "DocPerm" msgid "Write" -msgstr "Yazma" +msgstr "" #. Label of a Check field in DocType 'DocShare' #: core/doctype/docshare/docshare.json msgctxt "DocShare" msgid "Write" -msgstr "Yazma" +msgstr "" #. Label of a Check field in DocType 'User Document Type' #: core/doctype/user_document_type/user_document_type.json msgctxt "User Document Type" msgid "Write" -msgstr "Yazma" +msgstr "" -#: model/base_document.py:840 +#: model/base_document.py:865 msgid "Wrong Fetch From value" -msgstr "Değerden Yanlış Getirme" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:464 +#: public/js/frappe/views/reports/report_view.js:459 msgid "X Axis Field" -msgstr "X Eksen Alanı" +msgstr "" #. Label of a Select field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "X Field" -msgstr "X Alanı" +msgstr "" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "XLSX" -msgstr "XLSX" +msgstr "" #. Label of a Table field in DocType 'Dashboard Chart' #: desk/doctype/dashboard_chart/dashboard_chart.json msgctxt "Dashboard Chart" msgid "Y Axis" -msgstr "Y Ekseni" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:471 +#: public/js/frappe/views/reports/report_view.js:466 msgid "Y Axis Fields" -msgstr "Y Eksen Alanı" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1132 +#: public/js/frappe/views/reports/query_report.js:1146 msgid "Y Field" -msgstr "Y Alanı" +msgstr "" #. Label of a Select field in DocType 'Dashboard Chart Field' #: desk/doctype/dashboard_chart_field/dashboard_chart_field.json msgctxt "Dashboard Chart Field" msgid "Y Field" -msgstr "Y Alanı" +msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Yahoo Mail" -msgstr "Yahoo E-Posta" +msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "Yandex.Mail" -msgstr "Yandex.Mail" +msgstr "" #. Label of a Data field in DocType 'Company History' #: website/doctype/company_history/company_history.json @@ -34857,20 +36508,20 @@ msgstr "Yıllık" #: core/doctype/doctype_state/doctype_state.json msgctxt "DocType State" msgid "Yellow" -msgstr "" +msgstr "Sarı" #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: desk/doctype/kanban_board_column/kanban_board_column.json msgctxt "Kanban Board Column" msgid "Yellow" -msgstr "" +msgstr "Sarı" -#: integrations/doctype/webhook/webhook.py:127 -#: integrations/doctype/webhook/webhook.py:137 +#: integrations/doctype/webhook/webhook.py:130 +#: integrations/doctype/webhook/webhook.py:140 #: public/js/form_builder/utils.js:336 -#: public/js/frappe/form/controls/link.js:471 +#: public/js/frappe/form/controls/link.js:472 #: public/js/frappe/list/list_sidebar_group_by.js:223 -#: public/js/frappe/views/reports/query_report.js:1513 +#: public/js/frappe/views/reports/query_report.js:1530 #: website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Evet" @@ -34880,7 +36531,7 @@ msgctxt "Approve confirmation dialog" msgid "Yes" msgstr "Evet" -#: public/js/frappe/ui/filters/filter.js:500 +#: public/js/frappe/ui/filters/filter.js:501 msgctxt "Checkbox is checked" msgid "Yes" msgstr "Evet" @@ -34913,7 +36564,7 @@ msgstr "Evet" #: public/js/frappe/utils/user.js:33 msgctxt "Name of the current user. For example: You edited this 5 hours ago." msgid "You" -msgstr "Şahsım" +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:462 msgid "You Liked" @@ -34921,69 +36572,73 @@ msgstr "" #: public/js/frappe/dom.js:425 msgid "You are connected to internet." -msgstr "Internete bağlısınız." +msgstr "" -#: permissions.py:417 +#: public/js/frappe/ui/toolbar/navbar.html:20 +msgid "You are impersonating as another user." +msgstr "" + +#: permissions.py:413 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: permissions.py:406 +#: permissions.py:402 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" #: public/js/frappe/views/kanban/kanban_board.bundle.js:69 msgid "You are not allowed to create columns" -msgstr "Sütun oluşturmanıza izin verilmemiştir" +msgstr "" -#: core/doctype/report/report.py:93 +#: core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" -msgstr "Standart Raporu silmenize izin verilmiyor" +msgstr "" -#: website/doctype/website_theme/website_theme.py:74 +#: website/doctype/website_theme/website_theme.py:73 msgid "You are not allowed to delete a standard Website Theme" -msgstr "Standart bir Web Sitesi Temasını silmek için yeterli izniniz yok." +msgstr "" -#: core/doctype/report/report.py:380 +#: core/doctype/report/report.py:383 msgid "You are not allowed to edit the report." msgstr "" -#: permissions.py:614 +#: permissions.py:610 msgid "You are not allowed to export {} doctype" -msgstr "{} Doktipini dışa aktarmanıza izin verilmiyor" +msgstr "" #: public/js/frappe/views/treeview.js:431 msgid "You are not allowed to print this report" -msgstr "Bu raporu yazdırmanıza izin verilmemiştir" +msgstr "" -#: public/js/frappe/views/communication.js:673 +#: public/js/frappe/views/communication.js:764 msgid "You are not allowed to send emails related to this document" -msgstr "Bu belge ile ilgili e-posta göndermenize izin verilmemiştir" +msgstr "" -#: website/doctype/web_form/web_form.py:463 +#: website/doctype/web_form/web_form.py:462 msgid "You are not allowed to update this Web Form Document" -msgstr "Bu Web Form Belgesini güncelleme izniniz yok" +msgstr "" #: public/js/frappe/request.js:35 msgid "You are not connected to Internet. Retry after sometime." -msgstr "İnternet'e bağlı değilsiniz. Bir ara sonra tekrar deneyin." +msgstr "" #: public/js/frappe/web_form/webform_script.js:22 msgid "You are not permitted to access this page without login." msgstr "" -#: www/app.py:25 +#: www/app.py:23 msgid "You are not permitted to access this page." -msgstr "Bu sayfaya erişim izniniz yok." +msgstr "" -#: __init__.py:834 +#: __init__.py:932 msgid "You are not permitted to access this resource." msgstr "" #: public/js/frappe/form/sidebar/document_follow.js:131 msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." -msgstr "Şimdi bu belgeyi takip ediyorsunuz. Günlük güncellemeleri e-posta ile alacaksınız. Bunu Kullanıcı Ayarlarında değiştirebilirsiniz." +msgstr "" -#: core/doctype/installed_applications/installed_applications.py:59 +#: core/doctype/installed_applications/installed_applications.py:60 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -34998,7 +36653,11 @@ msgstr "" #: printing/page/print_format_builder/print_format_builder.js:741 msgid "You can add dynamic properties from the document by using Jinja templating." -msgstr "Jinja şablonları kullanarak daha iyi sonuçlar alabilirsiniz." +msgstr "" + +#: printing/doctype/letter_head/letter_head.js:32 +msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" +msgstr "" #: templates/emails/new_user.html:22 msgid "You can also copy-paste following link in your browser" @@ -35006,11 +36665,15 @@ msgstr "" #: templates/emails/download_data.html:9 msgid "You can also copy-paste this " -msgstr "Bunu kopyalayıp yapıştırabilirsiniz." +msgstr "" #: templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" -msgstr "Ayrıca bu {0} tarayıcınıza kopyalayıp yapıştırabilirsiniz" +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:17 +msgid "You can change Submitted documents by cancelling them and then, amending them." +msgstr "" #: public/js/frappe/logtypes.js:21 msgid "You can change the retention policy from {0}." @@ -35020,6 +36683,10 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" +#: core/doctype/user/user.py:600 +msgid "You can disable the user instead of deleting it." +msgstr "" + #: core/doctype/file/file.py:684 msgid "You can increase the limit from System Settings." msgstr "" @@ -35028,37 +36695,56 @@ msgstr "" msgid "You can manually remove the lock if you think it's safe: {}" msgstr "" -#: public/js/frappe/form/controls/markdown_editor.js:74 +#: public/js/frappe/form/controls/markdown_editor.js:75 msgid "You can only insert images in Markdown fields" msgstr "" +#: public/js/frappe/list/bulk_operations.js:41 +msgid "You can only print upto {0} documents at a time" +msgstr "" + #: core/doctype/user_type/user_type.py:103 msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: handler.py:226 +#: handler.py:225 msgid "You can only upload JPG, PNG, PDF, TXT or Microsoft documents." msgstr "" -#: core/doctype/data_export/exporter.py:201 +#: core/doctype/data_export/exporter.py:199 msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" -msgstr "En fazla 5 bin '5000' kayıt ekleyebilirsiniz bu bazı durumlarda daha azdır" +msgstr "" -#: desk/query_report.py:336 +#: website/doctype/web_page/web_page.js:92 +msgid "You can select one from the following," +msgstr "" + +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: core/doctype/system_settings/system_settings.json +msgctxt "System Settings" +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + +#: desk/query_report.py:332 msgid "You can try changing the filters of your report." -msgstr "Raporunuzun filtrelerini değiştirmeyi deneyebilirsiniz." +msgstr "" + +#: core/page/permission_manager/permission_manager_help.html:27 +msgid "You can use Customize Form to set levels on fields." +msgstr "" #: public/js/frappe/form/link_selector.js:30 msgid "You can use wildcard %" msgstr "" -#: custom/doctype/customize_form/customize_form.py:387 +#: custom/doctype/customize_form/customize_form.py:385 msgid "You can't set 'Options' for field {0}" -msgstr "{0} alanına 'Seçenekler' ayarlayamazsınız" +msgstr "" -#: custom/doctype/customize_form/customize_form.py:391 +#: custom/doctype/customize_form/customize_form.py:389 msgid "You can't set 'Translatable' for field {0}" -msgstr "{0} alanına 'Çevrilemez' ayarını yapamazsınız" +msgstr "" #: public/js/frappe/form/footer/version_timeline_content_builder.js:74 msgctxt "Form timeline" @@ -35070,17 +36756,17 @@ msgctxt "Form timeline" msgid "You cancelled this document {1}" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:417 +#: desk/doctype/dashboard_chart/dashboard_chart.py:407 msgid "You cannot create a dashboard chart from single DocTypes" -msgstr "Tek Doküman Türlerinden bir gösterge tablosu grafiği oluşturamazsınız" +msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:44 +#: social/doctype/energy_point_log/energy_point_log.py:45 msgid "You cannot give review points to yourself" -msgstr "Kendinize inceleme noktaları veremezsiniz" +msgstr "" -#: custom/doctype/customize_form/customize_form.py:383 +#: custom/doctype/customize_form/customize_form.py:381 msgid "You cannot unset 'Read Only' for field {0}" -msgstr "{0} için 'Salt Okunur' ayarını kaldıramazsınız" +msgstr "" #: public/js/frappe/form/footer/version_timeline_content_builder.js:121 msgid "You changed the value of {0}" @@ -35114,91 +36800,100 @@ msgstr "" #: public/js/frappe/request.js:174 msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." -msgstr "Bu kaynağa erişmek için yeterli izinlere sahip değilsiniz. erişmek için yöneticinizle bağlantı kurun." +msgstr "" -#: app.py:355 +#: app.py:354 msgid "You do not have enough permissions to complete the action" -msgstr "Eylemi tamamlamak için yeterli izniniz yok" +msgstr "" #: public/js/frappe/form/sidebar/review.js:91 msgid "You do not have enough points" -msgstr "Yeteri kadar puanın yok" +msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:296 +#: public/js/frappe/form/sidebar/review.js:31 +#: social/doctype/energy_point_log/energy_point_log.py:294 msgid "You do not have enough review points" -msgstr "Yeterli inceleme noktanız yok" +msgstr "" -#: www/printview.py:369 +#: www/printview.py:376 msgid "You do not have permission to view this document" msgstr "" #: public/js/frappe/form/form.js:979 msgid "You do not have permissions to cancel all linked documents." -msgstr "Bağlı tüm belgeleri iptal etme izniniz yok." +msgstr "" #: desk/query_report.py:39 msgid "You don't have access to Report: {0}" -msgstr "Bu rapora yetkiniz yok: {0}" +msgstr "" -#: website/doctype/web_form/web_form.py:699 +#: website/doctype/web_form/web_form.py:698 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: utils/response.py:278 +#: utils/response.py:270 utils/response.py:274 msgid "You don't have permission to access this file" -msgstr "Bu dosyaya erişmek izniniz yok" +msgstr "" #: desk/query_report.py:45 msgid "You don't have permission to get a report on: {0}" -msgstr "Sen bir rapor almak için izniniz yok: {0}" +msgstr "" -#: website/doctype/web_form/web_form.py:167 +#: website/doctype/web_form/web_form.py:168 msgid "You don't have the permissions to access this document" -msgstr "Bu dokümana erişim izniniz yok" +msgstr "" #: social/doctype/energy_point_log/energy_point_log.py:156 msgid "You gained {0} point" -msgstr "{0} puan kazandınız" +msgstr "" #: social/doctype/energy_point_log/energy_point_log.py:158 msgid "You gained {0} points" -msgstr "{0} puan kazandınız" +msgstr "" #: templates/emails/new_message.html:1 msgid "You have a new message from: " -msgstr "Yeni bir mesajınız var:" +msgstr "" #: handler.py:123 msgid "You have been successfully logged out" -msgstr "Başarıyla çıkış yaptınız" +msgstr "" #: custom/doctype/customize_form/customize_form.py:240 msgid "You have hit the row size limit on database table: {0}" msgstr "" -#: public/js/frappe/list/bulk_operations.js:347 +#: public/js/frappe/list/bulk_operations.js:382 msgid "You have not entered a value. The field will be set to empty." -msgstr "Bir değer girmediniz. Alan boş olarak ayarlanacaktır." +msgstr "" #: templates/includes/likes/likes.py:31 msgid "You have received a ❤️ like on your blog post" msgstr "" -#: twofactor.py:455 +#: twofactor.py:448 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" #: public/js/frappe/model/create_new.js:332 msgid "You have unsaved changes in this form. Please save before you continue." -msgstr "Bu formda kaydedilmemiş değişiklikler var. Devam etmeden önce lütfen kaydedin." +msgstr "" -#: core/doctype/log_settings/log_settings.py:127 +#: public/js/frappe/ui/toolbar/navbar.html:50 +msgid "You have unseen notifications" +msgstr "" + +#: core/doctype/log_settings/log_settings.py:126 msgid "You have unseen {0}" -msgstr "{0} görmediniz" +msgstr "" -#: public/js/frappe/list/list_view.js:468 +#: public/js/frappe/views/dashboard/dashboard_view.js:191 +msgid "You haven't added any Dashboard Charts or Number Cards yet." +msgstr "" + +#: public/js/frappe/list/list_view.js:471 msgid "You haven't created a {0} yet" -msgstr "Henüz bir {0} oluşturmadınız" +msgstr "" #: rate_limiter.py:150 msgid "You hit the rate limit because of too many requests. Please try after sometime." @@ -35209,57 +36904,61 @@ msgstr "" msgid "You last edited this" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:308 +#: public/js/frappe/widgets/widget_dialog.js:347 msgid "You must add atleast one link." msgstr "" -#: website/doctype/web_form/web_form.py:669 +#: website/doctype/web_form/web_form.py:668 msgid "You must be logged in to use this form." msgstr "" -#: website/doctype/web_form/web_form.py:503 +#: website/doctype/web_form/web_form.py:502 msgid "You must login to submit this form" -msgstr "Bu formu göndermek için giriş yapmalısınız" +msgstr "" -#: desk/doctype/workspace/workspace.py:69 +#: desk/doctype/workspace/workspace.py:73 msgid "You need to be Workspace Manager to edit this document" msgstr "" -#: website/doctype/web_form/web_form.py:90 +#: website/doctype/web_form/web_form.py:91 msgid "You need to be in developer mode to edit a Standard Web Form" -msgstr "Bir standart bir Web formu düzenlemek için geliştirici modunda olmanız gerekir" +msgstr "" #: utils/response.py:259 msgid "You need to be logged in and have System Manager Role to be able to access backups." -msgstr "Yedek almak için sisteme giriş yapmalı ve sistem yöneticisi rolüne sahip olmalısınız." +msgstr "" #: www/me.py:13 www/third_party_apps.py:10 msgid "You need to be logged in to access this page" -msgstr "Bu sayfaya erişmek için giriş yapmış olmanız gerekmektedir." +msgstr "" -#: website/doctype/web_form/web_form.py:158 +#: website/doctype/web_form/web_form.py:159 msgid "You need to be logged in to access this {0}." -msgstr "{0} öğesine erişim için sisteme giriş yapmalısınız." +msgstr "" + +#: public/js/frappe/widgets/links_widget.js:63 +msgid "You need to create these first: " +msgstr "" #: www/login.html:73 msgid "You need to enable JavaScript for your app to work." -msgstr "Uygulamanızın çalışması için JavaScript'i etkinleştirmeniz gerekir." +msgstr "" #: core/doctype/docshare/docshare.py:62 msgid "You need to have \"Share\" permission" -msgstr "'Paylaş'ım izniniz olması gerekiyor" +msgstr "" -#: utils/print_format.py:156 +#: utils/print_format.py:255 msgid "You need to install pycups to use this feature!" -msgstr "Bu özelliği kullanmak için pycups yüklemeniz gerekiyor!" +msgstr "" -#: email/doctype/email_account/email_account.py:140 +#: email/doctype/email_account/email_account.py:147 msgid "You need to set one IMAP folder for {0}" msgstr "" -#: model/rename_doc.py:385 +#: model/rename_doc.py:377 msgid "You need write permission to rename" -msgstr "Yeniden adlandırmak için yazma izni gerekiyor" +msgstr "" #: client.py:458 msgid "You need {0} permission to fetch values from {1} {2}" @@ -35272,11 +36971,11 @@ msgstr "" #: public/js/frappe/widgets/onboarding_widget.js:525 msgid "You seem good to go!" -msgstr "Gitmek için iyi görünüyorsun!" +msgstr "" -#: public/js/frappe/list/bulk_operations.js:29 +#: public/js/frappe/list/bulk_operations.js:30 msgid "You selected Draft or Cancelled documents" -msgstr "Taslak veya İptal edilmiş belgeleri seçtiniz" +msgstr "" #: public/js/frappe/form/footer/version_timeline_content_builder.js:48 msgctxt "Form timeline" @@ -35290,7 +36989,7 @@ msgstr "" #: public/js/frappe/form/sidebar/document_follow.js:144 msgid "You unfollowed this document" -msgstr "Bu belgeyi takip ettin" +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:182 msgid "You viewed this" @@ -35298,15 +36997,19 @@ msgstr "" #: desk/page/setup_wizard/setup_wizard.js:385 msgid "Your Country" -msgstr "Ülke" +msgstr "" #: desk/page/setup_wizard/setup_wizard.js:377 msgid "Your Language" -msgstr "Dil" +msgstr "" #: templates/includes/comments/comments.html:21 msgid "Your Name" -msgstr "Adınız" +msgstr "" + +#: public/js/frappe/list/bulk_operations.js:123 +msgid "Your PDF is ready for download" +msgstr "" #: patches/v14_0/update_workspace2.py:34 msgid "Your Shortcuts" @@ -35317,21 +37020,29 @@ msgstr "Kısayollar" msgid "Your account has been deleted" msgstr "" -#: auth.py:465 +#: auth.py:472 msgid "Your account has been locked and will resume after {0} seconds" -msgstr "Hesabınız kilitlendi ve {0} saniye sonra devam edecek" +msgstr "" -#: desk/form/assign_to.py:268 +#: desk/form/assign_to.py:276 msgid "Your assignment on {0} {1} has been removed by {2}" -msgstr "{0} {1} ile ilgili ödeviniz {2} tarafından kaldırıldı" +msgstr "" + +#: core/doctype/file/file.js:66 +msgid "Your browser does not support the audio element." +msgstr "" + +#: core/doctype/file/file.js:48 +msgid "Your browser does not support the video element." +msgstr "" #: templates/pages/integrations/gcalendar-success.html:11 msgid "Your connection request to Google Calendar was successfully accepted" -msgstr "Google Takvim’e bağlantı isteğiniz başarıyla kabul edildi" +msgstr "" #: www/contact.html:35 msgid "Your email address" -msgstr "Eposta adresiniz" +msgstr "" #: public/js/frappe/web_form/web_form.js:424 msgid "Your form has been successfully updated" @@ -35339,7 +37050,7 @@ msgstr "" #: templates/emails/new_user.html:6 msgid "Your login id is" -msgstr "Oturum açma kimliğiniz" +msgstr "" #: www/update-password.html:165 msgid "Your new password has been set successfully." @@ -35354,15 +37065,19 @@ msgstr "" #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "Your organization name and address for the email footer." -msgstr "Şirket adınız ve adresiniz emailın alt kısmı için" +msgstr "" #: templates/emails/auto_reply.html:2 msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." -msgstr "Sorgunuz alındı. Biz kısa bir süre geri cevap verecektir. Eğer herhangi bir ek bilgi varsa, bu posta cevap lütfen." +msgstr "" -#: app.py:346 +#: app.py:345 msgid "Your session has expired, please login again to continue." -msgstr "Oturumunuzun süresi doldu, devam etmek için lütfen tekrar giriş yapın." +msgstr "" + +#: public/js/frappe/ui/toolbar/navbar.html:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "" #: templates/emails/verification_code.html:1 msgid "Your verification code is {0}" @@ -35373,30 +37088,34 @@ msgstr "" msgid "Your website is all set up!" msgstr "" -#: utils/data.py:1518 +#: utils/data.py:1496 msgid "Zero" -msgstr "Sıfır" +msgstr "" #. Description of the 'Only Send Records Updated in Last X Hours' (Int) field #. in DocType 'Auto Email Report' #: email/doctype/auto_email_report/auto_email_report.json msgctxt "Auto Email Report" msgid "Zero means send records updated at anytime" -msgstr "Sıfır, istediğiniz zaman güncellenen kayıtları göndermek anlamına gelir." +msgstr "" #. Label of a Link field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "_doctype" -msgstr "_doctype" +msgstr "" #. Label of a Link field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "_report" -msgstr "_rapor" +msgstr "" -#: utils/background_jobs.py:94 +#: database/database.py:314 +msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" +msgstr "" + +#: utils/background_jobs.py:105 msgid "`job_id` paramater is required for deduplication." msgstr "" @@ -35408,47 +37127,46 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "adjust" -msgstr "ayarla" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "after_insert" -msgstr "ekleme_sonrası" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "align-center" -msgstr "Ortaya Hizala" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "align-justify" -msgstr "İki Yana Yasla" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "align-left" -msgstr "sola-hizala" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "align-right" -msgstr "sağa-hizala" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "amend" -msgstr "Değiştir" +msgstr "" -#: public/js/frappe/utils/utils.js:396 utils/data.py:1528 +#: public/js/frappe/utils/utils.js:396 utils/data.py:1504 msgid "and" msgstr "ve" @@ -35456,26 +37174,27 @@ msgstr "ve" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "arrow-down" -msgstr "aşağı-yön" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "arrow-left" -msgstr "sol-yön" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "arrow-right" -msgstr "sağ-yön" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "arrow-up" -msgstr "yukarı-yön" +msgstr "" +#: public/js/frappe/ui/sort_selector.html:5 #: public/js/frappe/ui/sort_selector.js:48 msgid "ascending" msgstr "" @@ -35484,95 +37203,104 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "asterisk" -msgstr "asterisk" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "backward" -msgstr "geri" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "ban-circle" -msgstr "ban-daire" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "barcode" -msgstr "barkod" +msgstr "" -#: model/document.py:1337 +#: model/document.py:1341 msgid "beginning with" -msgstr "ile başlayan" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "bell" -msgstr "çan" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "blue" -msgstr "mavi" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "bold" -msgstr "kalın" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "book" -msgstr "kitap" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "bookmark" -msgstr "Yerimi" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "briefcase" -msgstr "evrak çantası" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "bullhorn" -msgstr "Megafonu" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:270 +#: public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "" + +#. Label of a Code field in DocType 'Recorder' +#: core/doctype/recorder/recorder.json +msgctxt "Recorder" +msgid "cProfile Output" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:286 msgid "calendar" -msgstr "takvim" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "calendar" -msgstr "takvim" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "camera" -msgstr "kamera" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "cancel" -msgstr "İptal" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -35584,85 +37312,88 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "certificate" -msgstr "sertifika" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "check" -msgstr "kontrol et" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "chevron-down" -msgstr "chevron-down" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "chevron-left" -msgstr "chevron-left" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "chevron-right" -msgstr "chevron-right" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "chevron-up" -msgstr "chevron-up" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "circle-arrow-down" -msgstr "circle-arrow-down" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "circle-arrow-left" -msgstr "daire-ok-sol" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "circle-arrow-right" -msgstr "daire-ok-sağ" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "circle-arrow-up" -msgstr "circle-arrow-up" +msgstr "" #: templates/includes/list/filters.html:19 msgid "clear" -msgstr "temizle" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "cog" -msgstr "cog" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "comment" -msgstr "yorum yap" +msgstr "" + +#: public/js/frappe/form/templates/timeline_message_box.html:33 +msgid "commented" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "create" -msgstr "Oluştur" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -35670,38 +37401,38 @@ msgctxt "Workspace" msgid "cyan" msgstr "" -#: public/js/frappe/utils/utils.js:1113 +#: public/js/frappe/utils/utils.js:1114 msgctxt "Days (Field: Duration)" msgid "d" -msgstr "Days (Field: Duration)" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "darkgrey" -msgstr "Koyu gri" +msgstr "" #: core/page/dashboard_view/dashboard_view.js:65 msgid "dashboard" -msgstr "gösterge paneli" +msgstr "" #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "dd-mm-yyyy" -msgstr "gg-aa-yyyy" +msgstr "" #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "dd.mm.yyyy" -msgstr "gg.aa.yyyy" +msgstr "" #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "dd/mm/yyyy" -msgstr "gg / aa / yyyy" +msgstr "" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -35724,157 +37455,155 @@ msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "delete" -msgstr "Sil" +msgstr "" +#: public/js/frappe/ui/sort_selector.html:5 #: public/js/frappe/ui/sort_selector.js:48 msgid "descending" msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:163 msgid "document type..., e.g. customer" -msgstr "belge türü ... örneğin müşteri" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "download" -msgstr "indir" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "download-alt" -msgstr "download-alt" +msgstr "" #. Description of the 'Email Account Name' (Data) field in DocType 'Email #. Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" -msgstr "örneğin \"Destek \",\" Satış \",\" Jerry Yang \"" +msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:183 msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." -msgstr "Örneğin (55 + 434) / 4 veya = Math.sin (Math.PI / 2) ..." +msgstr "" #. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "e.g. pop.gmail.com / imap.gmail.com" -msgstr "Örneğin pop.gmail.com / imap.gmail.com" +msgstr "" #. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "e.g. pop.gmail.com / imap.gmail.com" -msgstr "Örneğin pop.gmail.com / imap.gmail.com" +msgstr "" #. Description of the 'Default Incoming' (Check) field in DocType 'Email #. Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." -msgstr "örneğin replies@yourcomany.com. Tüm yanıtlar bu kutunuza gelecektir." +msgstr "" #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "e.g. smtp.gmail.com" -msgstr "Örneğin smtp.gmail.com" +msgstr "" #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain' #: email/doctype/email_domain/email_domain.json msgctxt "Email Domain" msgid "e.g. smtp.gmail.com" -msgstr "Örneğin smtp.gmail.com" +msgstr "" #: custom/doctype/custom_field/custom_field.js:98 msgid "e.g.:" -msgstr "ör.:" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "edit" -msgstr "düzenle" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "eject" -msgstr "çıkar" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "email" -msgstr "e-posta" +msgstr "" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: website/doctype/social_link_settings/social_link_settings.json msgctxt "Social Link Settings" msgid "email" -msgstr "e-posta" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:289 +#: public/js/frappe/ui/toolbar/search_utils.js:305 msgid "email inbox" -msgstr "email gelen kutusu" +msgstr "" -#: permissions.py:411 permissions.py:422 -#: public/js/frappe/form/controls/link.js:479 +#: permissions.py:407 permissions.py:418 +#: public/js/frappe/form/controls/link.js:481 msgid "empty" -msgstr "boş" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "envelope" -msgstr "zarf" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "exclamation-sign" -msgstr "exclamation-sign" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "export" -msgstr "Dışarı Aktar" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "eye-close" -msgstr "eye-close" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "eye-open" -msgstr "eye-open" +msgstr "" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: website/doctype/social_link_settings/social_link_settings.json msgctxt "Social Link Settings" msgid "facebook" -msgstr "facebook" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "facetime-video" -msgstr "facetime-video" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -35887,37 +37616,37 @@ msgstr "" #: integrations/doctype/social_login_key/social_login_key.json msgctxt "Social Login Key" msgid "fairlogin" -msgstr "fairlogin" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "fast-backward" -msgstr "fast-backward" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "fast-forward" -msgstr "fast-forward" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "file" -msgstr "dosya" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "film" -msgstr "film" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "filter" -msgstr "filtre" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -35929,65 +37658,65 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "fire" -msgstr "yangın" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "flag" -msgstr "bayrak" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "folder-close" -msgstr "folder-close" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "folder-open" -msgstr "folder-open" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "font" -msgstr "font" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "forward" -msgstr "ilet" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "fullscreen" -msgstr "tam ekran" +msgstr "" #: public/js/frappe/utils/energy_point_utils.js:61 msgid "gained by {0} via automatic rule {1}" -msgstr "{0} otomatik kuralı {1} ile kazanılan" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "gift" -msgstr "hediye" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "glass" -msgstr "cam" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "globe" -msgstr "dünya" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -35999,7 +37728,7 @@ msgstr "" #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "green" -msgstr "yeşil" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -36007,116 +37736,115 @@ msgctxt "Workspace" msgid "grey" msgstr "" -#: utils/backups.py:375 +#: utils/backups.py:373 msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: public/js/frappe/utils/utils.js:1117 +#: public/js/frappe/utils/utils.js:1118 msgctxt "Hours (Field: Duration)" msgid "h" -msgstr "Hours (Field: Duration)" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "hand-down" -msgstr "hand-down" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "hand-left" -msgstr "hand-left" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "hand-right" -msgstr "hand-right" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "hand-up" -msgstr "hand-up" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "hdd" -msgstr "hdd" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "headphones" -msgstr "kulaklık" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "heart" -msgstr "yürek" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "home" -msgstr "anasayfa" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:280 +#: public/js/frappe/ui/toolbar/search_utils.js:296 msgid "hub" -msgstr "Hub" +msgstr "" #. Label of a Data field in DocType 'Page' #: core/doctype/page/page.json msgctxt "Page" msgid "icon" -msgstr "ikon" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "import" -msgstr "İçeri Aktar" +msgstr "" #. Description of the 'Read Time' (Int) field in DocType 'Blog Post' #: website/doctype/blog_post/blog_post.json msgctxt "Blog Post" msgid "in minutes" -msgstr "dakikalar içinde" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "inbox" -msgstr "gelen kutusu" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "indent-left" -msgstr "indent-left" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "indent-right" -msgstr "indent-right" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "info-sign" -msgstr "info-sign" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "italic" -msgstr "italic" +msgstr "" #: templates/signup.html:11 www/login.html:10 msgid "jane@example.com" @@ -36124,9 +37852,9 @@ msgstr "" #: public/js/frappe/utils/pretty_date.js:46 msgid "just now" -msgstr "Şu anda" +msgstr "" -#: desk/desktop.py:254 desk/query_report.py:279 +#: desk/desktop.py:255 desk/query_report.py:277 msgid "label" msgstr "" @@ -36134,7 +37862,7 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "leaf" -msgstr "yaprak" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -36146,42 +37874,46 @@ msgstr "" #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "link" -msgstr "link" +msgstr "" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: website/doctype/social_link_settings/social_link_settings.json msgctxt "Social Link Settings" msgid "linkedin" -msgstr "linkedin" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "list" -msgstr "liste" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "list" -msgstr "liste" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "list-alt" -msgstr "list-alt" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "lock" -msgstr "kilitle" +msgstr "" #: www/third_party_apps.html:41 msgid "logged in" -msgstr "Girildi" +msgstr "" + +#: website/doctype/web_form/web_form.js:362 +msgid "login_required" +msgstr "" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -36195,26 +37927,26 @@ msgctxt "RQ Worker" msgid "long" msgstr "" -#: public/js/frappe/utils/utils.js:1121 +#: public/js/frappe/utils/utils.js:1122 msgctxt "Minutes (Field: Duration)" msgid "m" -msgstr "Minutes (Field: Duration)" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "magnet" -msgstr "mıknatıs" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "map-marker" -msgstr "harita işaretleyici" +msgstr "" -#: model/rename_doc.py:214 +#: model/rename_doc.py:212 msgid "merged {0} into {1}" -msgstr "içine {0} birleştirilmiş {1}" +msgstr "" #: website/doctype/blog_post/templates/blog_post.html:25 #: website/doctype/blog_post/templates/blog_post_row.html:36 @@ -36225,61 +37957,61 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "minus" -msgstr "eksi" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "minus-sign" -msgstr "minus-sign" +msgstr "" #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "mm-dd-yyyy" -msgstr "mm-dd-yyyy" +msgstr "" #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "mm/dd/yyyy" -msgstr "mm/dd/yyyy" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "module" -msgstr "modül" +msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:178 msgid "module name..." -msgstr "modül adı ..." +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "move" -msgstr "hareket" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "music" -msgstr "müzik" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:144 +#: public/js/frappe/ui/toolbar/search_utils.js:160 msgid "new" -msgstr "yeni" +msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:158 msgid "new type of document" -msgstr "Belgenin yeni tip" +msgstr "" #. Label of a Int field in DocType 'Email Account' #: email/doctype/email_account/email_account.json msgctxt "Email Account" msgid "no failed attempts" -msgstr "Hiçbir başarısız girişim" +msgstr "" #. Label of a Data field in DocType 'OAuth Authorization Code' #: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json @@ -36287,9 +38019,9 @@ msgctxt "OAuth Authorization Code" msgid "nonce" msgstr "" -#: model/document.py:1336 +#: model/document.py:1340 msgid "none of" -msgstr "hiçbiri" +msgstr "" #. Label of a Check field in DocType 'Reminder' #: automation/doctype/reminder/reminder.json @@ -36299,83 +38031,83 @@ msgstr "" #: public/js/frappe/utils/pretty_date.js:25 msgid "now" -msgstr "şimdi" +msgstr "" + +#: public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "off" -msgstr "kapalı" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "ok" -msgstr "tamam" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "ok-circle" -msgstr "ok-circle" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "ok-sign" -msgstr "ok-sign" +msgstr "" #. Label of a Data field in DocType 'File' #: core/doctype/file/file.json msgctxt "File" msgid "old_parent" -msgstr "old_parent" +msgstr "eski_ebeveyn" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_cancel" -msgstr "on_cancel" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_change" -msgstr "on_change" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_submit" -msgstr "on_submit" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_trash" -msgstr "on_trash" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_update" -msgstr "on_update" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: integrations/doctype/webhook/webhook.json msgctxt "Webhook" msgid "on_update_after_submit" -msgstr "on_update_after_submit" +msgstr "" -#: model/document.py:1335 +#: model/document.py:1339 msgid "one of" -msgstr "biri" +msgstr "" -#: utils/data.py:1535 -msgid "only." -msgstr "Yalnız" - -#: public/js/frappe/utils/utils.js:393 www/login.html:87 +#: public/js/frappe/utils/utils.js:393 www/login.html:87 www/login.py:101 msgid "or" msgstr "veya" @@ -36383,31 +38115,31 @@ msgstr "veya" #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "orange" -msgstr "portakal" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "page" -msgstr "sayfa" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "pause" -msgstr "Duraklat" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "pencil" -msgstr "kalem" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "picture" -msgstr "resim" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json @@ -36426,45 +38158,44 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "plane" -msgstr "düzlem" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "play" -msgstr "play" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "play-circle" -msgstr "play-circle" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "plus" -msgstr "artı" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "plus-sign" -msgstr "plus-sign" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "print" -msgstr "Baskı" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "print" -msgstr "Baskı" +msgstr "" #. Label of a HTML field in DocType 'System Console' #: desk/doctype/system_console/system_console.json @@ -36476,25 +38207,25 @@ msgstr "" #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "purple" -msgstr "mor" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "qrcode" -msgstr "QRCode" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: desk/doctype/desktop_icon/desktop_icon.json msgctxt "Desktop Icon" msgid "query-report" -msgstr "Sorgu raporu" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "question-sign" -msgstr "question-sign" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -36506,118 +38237,116 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "random" -msgstr "rasgele" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "read" -msgstr "Okundu" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "red" -msgstr "kırmızı" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "refresh" -msgstr "yenile" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "remove" -msgstr "Kaldır" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "remove-circle" -msgstr "remove-circle" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "remove-sign" -msgstr "remove-sign" +msgstr "" #: public/js/frappe/form/footer/version_timeline_content_builder.js:221 msgid "removed rows for {0}" msgstr "" -#: model/rename_doc.py:217 +#: model/rename_doc.py:214 msgid "renamed from {0} to {1}" -msgstr "yeniden adlandırıldı {0} ile {1}" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "repeat" -msgstr "tekrar et" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "report" -msgstr "Rapor" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "resize-full" -msgstr "resize-full" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "resize-horizontal" -msgstr "resize-horizontal" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "resize-small" -msgstr "resize-small" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "resize-vertical" -msgstr "resize-vertical" +msgstr "" #. Label of a HTML field in DocType 'Custom Role' #: core/doctype/custom_role/custom_role.json msgctxt "Custom Role" msgid "response" -msgstr "tepki" +msgstr "" -#: core/doctype/deleted_document/deleted_document.py:60 +#: core/doctype/deleted_document/deleted_document.py:61 msgid "restored {0} as {1}" -msgstr "geri {0} olarak {1}" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "retweet" -msgstr "retweet" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "road" -msgstr "yol" +msgstr "" -#: public/js/frappe/utils/utils.js:1125 +#: public/js/frappe/utils/utils.js:1126 msgctxt "Seconds (Field: Duration)" msgid "s" -msgstr "Seconds (Field: Duration)" +msgstr "" #. Option for the 'Code challenge method' (Select) field in DocType 'OAuth #. Authorization Code' @@ -36636,47 +38365,45 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "screenshot" -msgstr "ekran görüntüsü" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "search" -msgstr "arama" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "select" -msgstr "Seç" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "share" -msgstr "paylaş" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "share" -msgstr "paylaş" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "share-alt" -msgstr "share-alt" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "shopping-cart" -msgstr "shopping-cart" +msgstr "" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -36694,35 +38421,35 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "signal" -msgstr "sinyal" +msgstr "" -#: public/js/frappe/widgets/number_card_widget.js:265 +#: public/js/frappe/widgets/number_card_widget.js:282 msgid "since last month" -msgstr "Geçen aydan beri" +msgstr "" -#: public/js/frappe/widgets/number_card_widget.js:264 +#: public/js/frappe/widgets/number_card_widget.js:281 msgid "since last week" -msgstr "Geçen haftadan beri" +msgstr "" -#: public/js/frappe/widgets/number_card_widget.js:266 +#: public/js/frappe/widgets/number_card_widget.js:283 msgid "since last year" -msgstr "Geçen yıldan beri" +msgstr "" -#: public/js/frappe/widgets/number_card_widget.js:263 +#: public/js/frappe/widgets/number_card_widget.js:280 msgid "since yesterday" -msgstr "Dünden beri" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "star" -msgstr "yıldız" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "star-empty" -msgstr "star-empty" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: core/doctype/rq_job/rq_job.json @@ -36738,19 +38465,19 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "step-backward" -msgstr "step-backward" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "step-forward" -msgstr "step-forward" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "stop" -msgstr "durdur" +msgstr "" #. Description of the 'Group Object Class' (Data) field in DocType 'LDAP #. Settings' @@ -36776,72 +38503,71 @@ msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "submit" -msgstr "Gönder" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "tag" -msgstr "etiket" +msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:173 msgid "tag name..., e.g. #tag" -msgstr "etiket adı ..., örneğin #tag" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "tags" -msgstr "etiketler" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "tasks" -msgstr "görevler" +msgstr "" #: public/js/frappe/ui/toolbar/awesome_bar.js:168 msgid "text in document type" -msgstr "belge tipi içindeki yazı" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "text-height" -msgstr "text-height" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "text-width" -msgstr "text-width" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "th" -msgstr "th" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "th-large" -msgstr "th-large" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "th-list" -msgstr "th-list" +msgstr "" #: public/js/frappe/form/controls/data.js:35 msgid "this form" msgstr "" -#: tests/test_translate.py:158 +#: tests/test_translate.py:157 msgid "this shouldn't break" msgstr "" @@ -36849,44 +38575,48 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "thumbs-down" -msgstr "thumbs-down" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "thumbs-up" -msgstr "thumbs-up" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "time" -msgstr "Zaman" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "tint" -msgstr "renk" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "trash" -msgstr "çöp kovası" +msgstr "" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: website/doctype/social_link_settings/social_link_settings.json msgctxt "Social Link Settings" msgid "twitter" -msgstr "twitter" +msgstr "" + +#: public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "upload" -msgstr "yükle" +msgstr "" #: public/js/frappe/ui/filters/filter.js:340 msgid "use % as wildcard" @@ -36896,11 +38626,11 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "user" -msgstr "kullanıcı" +msgstr "" #: public/js/frappe/ui/filters/filter.js:339 msgid "values separated by commas" -msgstr "virgülle ayrılmış değerler" +msgstr "" #. Label of a HTML field in DocType 'Audit Trail' #: core/doctype/audit_trail/audit_trail.json @@ -36908,14 +38638,14 @@ msgctxt "Audit Trail" msgid "version_table" msgstr "" -#: automation/doctype/assignment_rule/assignment_rule.py:386 +#: automation/doctype/assignment_rule/assignment_rule.py:380 msgid "via Assignment Rule" -msgstr "Atama Kuralı aracılığıyla" +msgstr "" -#: core/doctype/data_import/importer.py:259 -#: core/doctype/data_import/importer.py:280 +#: core/doctype/data_import/importer.py:255 +#: core/doctype/data_import/importer.py:276 msgid "via Data Import" -msgstr "Veri Alma yoluyla" +msgstr "" #. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' #: desk/doctype/event/event.json @@ -36923,35 +38653,35 @@ msgctxt "Event" msgid "via Google Meet" msgstr "" -#: email/doctype/notification/notification.py:214 +#: email/doctype/notification/notification.py:215 msgid "via Notification" -msgstr "Bildirim yoluyla" +msgstr "" #: public/js/frappe/utils/energy_point_utils.js:46 msgid "via automatic rule {0} on {1}" -msgstr "{1} tarihinde {0} otomatik kuralı ile" +msgstr "" #: public/js/frappe/form/footer/version_timeline_content_builder.js:17 msgid "via {0}" -msgstr "{0} üzerinden" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "volume-down" -msgstr "volume-down" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "volume-off" -msgstr "sesi-kapa" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "volume-up" -msgstr "sesi-yükselt" +msgstr "" #: templates/includes/oauth_confirmation.html:5 msgid "wants to access the following details from your account" @@ -36961,7 +38691,7 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "warning-sign" -msgstr "warning-sign" +msgstr "" #. Description of the 'Popover Element' (Check) field in DocType 'Form Tour #. Step' @@ -36974,199 +38704,207 @@ msgstr "" #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "wrench" -msgstr "wrench" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy msgctxt "Permission Inspector" msgid "write" -msgstr "Yazma" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: desk/doctype/workspace/workspace.json msgctxt "Workspace" msgid "yellow" -msgstr "sarı" +msgstr "" #: public/js/frappe/utils/pretty_date.js:58 msgid "yesterday" -msgstr "dün" +msgstr "" #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: core/doctype/system_settings/system_settings.json msgctxt "System Settings" msgid "yyyy-mm-dd" -msgstr "yyyy-aa-gg" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "zoom-in" -msgstr "Yakınlaştırın" +msgstr "" #. Option for the 'Icon' (Select) field in DocType 'Workflow State' #: workflow/doctype/workflow_state/workflow_state.json msgctxt "Workflow State" msgid "zoom-out" -msgstr "Uzaklaştırın" +msgstr "" -#: desk/doctype/event/event.js:83 -#: integrations/doctype/google_drive/google_drive.js:19 +#: desk/doctype/event/event.js:87 msgid "{0}" msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:81 -#: public/js/frappe/ui/toolbar/search_utils.js:82 -msgid "{0} ${label}" -msgstr "" - -#: public/js/frappe/ui/toolbar/search_utils.js:177 +#: public/js/frappe/ui/toolbar/search_utils.js:193 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:182 +#: public/js/frappe/ui/toolbar/search_utils.js:198 msgid "{0} ${type}" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:77 +#: public/js/frappe/data_import/data_exporter.js:79 #: public/js/frappe/views/gantt/gantt_view.js:54 msgid "{0} ({1})" msgstr "" #: public/js/frappe/data_import/data_exporter.js:76 msgid "{0} ({1}) (1 row mandatory)" -msgstr "{0} ({1}) (1 satır zorunlu)" +msgstr "" #: public/js/frappe/views/gantt/gantt_view.js:53 msgid "{0} ({1}) - {2}%" msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:346 -#: public/js/frappe/ui/toolbar/awesome_bar.js:349 +#: public/js/frappe/ui/toolbar/awesome_bar.js:348 +#: public/js/frappe/ui/toolbar/awesome_bar.js:351 msgid "{0} = {1}" msgstr "" -#: public/js/frappe/views/calendar/calendar.js:29 +#: public/js/frappe/views/calendar/calendar.js:30 msgid "{0} Calendar" -msgstr "{0} Takvim" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:544 +#: public/js/frappe/views/reports/report_view.js:539 msgid "{0} Chart" -msgstr "{0} Grafik" +msgstr "" #: core/page/dashboard_view/dashboard_view.js:67 -#: public/js/frappe/ui/toolbar/search_utils.js:331 -#: public/js/frappe/ui/toolbar/search_utils.js:332 -#: public/js/frappe/utils/utils.js:929 +#: public/js/frappe/ui/toolbar/search_utils.js:347 +#: public/js/frappe/ui/toolbar/search_utils.js:348 +#: public/js/frappe/utils/utils.js:930 #: public/js/frappe/views/dashboard/dashboard_view.js:10 msgid "{0} Dashboard" -msgstr "{0} Gösterge Tablosu" +msgstr "" -#: public/js/frappe/form/grid_row.js:456 +#: public/js/frappe/form/grid_row.js:457 #: public/js/frappe/list/list_settings.js:224 #: public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" -msgstr "{0} Alanlar" +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:360 +#: integrations/doctype/google_calendar/google_calendar.py:361 msgid "{0} Google Calendar Events synced." -msgstr "{0} Google Takvim Etkinlikleri senkronize edildi." +msgstr "" -#: integrations/doctype/google_contacts/google_contacts.py:190 +#: integrations/doctype/google_contacts/google_contacts.py:193 msgid "{0} Google Contacts synced." -msgstr "{0} Google Kişileri senkronize edildi." +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:463 msgid "{0} Liked" msgstr "" -#: public/js/frappe/utils/utils.js:923 +#: public/js/frappe/ui/toolbar/search_utils.js:83 +#: public/js/frappe/ui/toolbar/search_utils.js:84 +#: public/js/frappe/utils/utils.js:924 #: public/js/frappe/widgets/chart_widget.js:317 www/list.html:4 www/list.html:8 msgid "{0} List" -msgstr "{0} Listesi" +msgstr "" #: public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" -msgstr "{0} M" +msgstr "" #: public/js/frappe/views/map/map_view.js:14 msgid "{0} Map" msgstr "" -#: public/js/frappe/utils/utils.js:926 +#: public/js/frappe/utils/utils.js:927 msgid "{0} Modules" -msgstr "{0} Modüller" +msgstr "" -#: public/js/frappe/form/quick_entry.js:113 +#: public/js/frappe/form/quick_entry.js:118 msgid "{0} Name" -msgstr "{0} Adı" +msgstr "" -#: model/base_document.py:1027 +#: model/base_document.py:1052 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" -#: public/js/frappe/utils/utils.js:920 +#: public/js/frappe/ui/toolbar/search_utils.js:95 +#: public/js/frappe/ui/toolbar/search_utils.js:96 +#: public/js/frappe/utils/utils.js:921 #: public/js/frappe/widgets/chart_widget.js:325 msgid "{0} Report" -msgstr "{0} Raporu" +msgstr "" + +#: public/js/frappe/views/reports/query_report.js:882 +msgid "{0} Reports" +msgstr "" #: public/js/frappe/list/list_settings.js:32 #: public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" -msgstr "{0} Ayarlar" +msgstr "" +#: public/js/frappe/ui/toolbar/search_utils.js:87 +#: public/js/frappe/ui/toolbar/search_utils.js:88 #: public/js/frappe/views/treeview.js:139 msgid "{0} Tree" -msgstr "{0} Ağaç" +msgstr "" -#: public/js/frappe/list/base_list.js:206 +#: public/js/frappe/list/base_list.js:209 msgid "{0} View" msgstr "" #: public/js/frappe/form/footer/form_timeline.js:126 #: public/js/frappe/form/sidebar/form_sidebar.js:86 msgid "{0} Web page views" -msgstr "{0} Sayfa Görüntülemeleri" +msgstr "" + +#: public/js/frappe/ui/toolbar/search_utils.js:91 +#: public/js/frappe/ui/toolbar/search_utils.js:92 +msgid "{0} Workspace" +msgstr "" #: public/js/frappe/form/link_selector.js:225 msgid "{0} added" -msgstr "{0} eklendi" +msgstr "" #: public/js/frappe/form/controls/data.js:203 msgid "{0} already exists. Select another name" -msgstr "{0} zaten var. Başka bir isim seçin" +msgstr "" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:37 +#: email/doctype/email_unsubscribe/email_unsubscribe.py:36 msgid "{0} already unsubscribed" -msgstr "{0} zaten abonelikten çıktı" +msgstr "" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:50 +#: email/doctype/email_unsubscribe/email_unsubscribe.py:49 msgid "{0} already unsubscribed for {1} {2}" -msgstr "{0} zaten {1} {2} aboneliğinden çıktı" +msgstr "" -#: utils/data.py:1715 +#: utils/data.py:1687 msgid "{0} and {1}" -msgstr "{0} ve {1}" +msgstr "" #: public/js/frappe/utils/energy_point_utils.js:38 msgid "{0} appreciated on {1}" -msgstr "{1}, {1} tarihinde takdir edildi" +msgstr "" #: social/doctype/energy_point_log/energy_point_log.py:126 #: social/doctype/energy_point_log/energy_point_log.py:163 msgid "{0} appreciated your work on {1} with {2} point" -msgstr "{0}, {1} için yaptığınız çalışmayı {2} puanla takdir etti" +msgstr "" #: social/doctype/energy_point_log/energy_point_log.py:128 #: social/doctype/energy_point_log/energy_point_log.py:165 msgid "{0} appreciated your work on {1} with {2} points" -msgstr "{0}, {1} için yaptığınız çalışmayı {2} puanla takdir etti" +msgstr "" #: public/js/frappe/utils/energy_point_utils.js:53 msgid "{0} appreciated {1}" -msgstr "{0} takdir {1}" +msgstr "" #: public/js/frappe/form/sidebar/review.js:148 msgid "{0} appreciation point for {1}" @@ -37178,25 +38916,29 @@ msgstr "" #: public/js/frappe/form/sidebar/form_sidebar_users.js:72 msgid "{0} are currently {1}" -msgstr "{0} şu anda {1}" +msgstr "" -#: printing/doctype/print_format/print_format.py:89 +#: printing/doctype/print_format/print_format.py:87 msgid "{0} are required" -msgstr "{0} gerekli" +msgstr "" -#: desk/form/assign_to.py:275 +#: desk/form/assign_to.py:283 msgid "{0} assigned a new task {1} {2} to you" -msgstr "{0} size yeni bir görev {1} {2} verdi" +msgstr "" #: desk/doctype/todo/todo.py:48 msgid "{0} assigned {1}: {2}" -msgstr "{0} atanan {1}: {2}" +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:414 msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" +#: core/doctype/system_settings/system_settings.py:142 +msgid "{0} can not be more than {1}" +msgstr "" + #: public/js/frappe/form/footer/version_timeline_content_builder.js:77 msgid "{0} cancelled this document" msgstr "" @@ -37206,7 +38948,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: public/js/form_builder/store.js:185 +#: public/js/form_builder/store.js:190 msgid "{0} cannot be hidden and mandatory without any default value" msgstr "" @@ -37231,13 +38973,13 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: website/doctype/blog_post/blog_post.py:380 +#: website/doctype/blog_post/blog_post.py:376 msgid "{0} comments" -msgstr "{0} yorumlar" +msgstr "" #: public/js/frappe/views/interaction.js:261 msgid "{0} created successfully" -msgstr "{0} başarıyla oluşturuldu" +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:139 #: public/js/frappe/form/sidebar/form_sidebar.js:107 @@ -37254,40 +38996,40 @@ msgstr "" #: public/js/frappe/utils/energy_point_utils.js:41 msgid "{0} criticized on {1}" -msgstr "{0} {1} tarihinde eleştirildi" +msgstr "" #: social/doctype/energy_point_log/energy_point_log.py:132 #: social/doctype/energy_point_log/energy_point_log.py:170 msgid "{0} criticized your work on {1} with {2} point" -msgstr "{0} çalışmanızı {1} tarihinde {2} puanla eleştirdi" +msgstr "" #: social/doctype/energy_point_log/energy_point_log.py:134 #: social/doctype/energy_point_log/energy_point_log.py:172 msgid "{0} criticized your work on {1} with {2} points" -msgstr "{0} çalışmanızı {1} tarihinde {2} puanla eleştirdi" +msgstr "" #: public/js/frappe/utils/energy_point_utils.js:56 msgid "{0} criticized {1}" -msgstr "{0} eleştirildi {1}" +msgstr "" #: public/js/frappe/utils/pretty_date.js:33 msgid "{0} d" -msgstr "{0} g" +msgstr "" #: public/js/frappe/utils/pretty_date.js:60 msgid "{0} days ago" -msgstr "{0} gün önce" +msgstr "" #: website/doctype/website_settings/website_settings.py:96 #: website/doctype/website_settings/website_settings.py:116 msgid "{0} does not exist in row {1}" -msgstr "{0} aralıksız yoktur {1}" +msgstr "" -#: database/mariadb/schema.py:131 database/postgres/schema.py:184 +#: database/mariadb/schema.py:126 database/postgres/schema.py:178 msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" -msgstr "{1} içinde {0} eşsiz olarak ayarlanamaz, çünkü bir çok normal değer girilmiş" +msgstr "" -#: core/doctype/data_import/importer.py:1017 +#: core/doctype/data_import/importer.py:1012 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -37301,7 +39043,7 @@ msgstr "" #: social/doctype/energy_point_log/energy_point_log.py:120 msgid "{0} gained {1} point for {2} {3}" -msgstr "{0} {2} {3} için {1} puan kazandı" +msgstr "" #: templates/emails/energy_points_summary.html:8 msgid "{0} gained {1} points" @@ -37309,7 +39051,7 @@ msgstr "" #: social/doctype/energy_point_log/energy_point_log.py:122 msgid "{0} gained {1} points for {2} {3}" -msgstr "{0} {2} {3} için {1} puan kazandı" +msgstr "" #: templates/emails/energy_points_summary.html:23 msgid "{0} gave {1} points" @@ -37317,27 +39059,27 @@ msgstr "" #: public/js/frappe/utils/pretty_date.js:29 msgid "{0} h" -msgstr "{0} s" +msgstr "" -#: core/doctype/user_permission/user_permission.py:76 +#: core/doctype/user_permission/user_permission.py:77 msgid "{0} has already assigned default value for {1}." -msgstr "{0}, {1} için zaten varsayılan bir değer atadı." +msgstr "" -#: email/doctype/newsletter/newsletter.py:382 +#: email/doctype/newsletter/newsletter.py:380 msgid "{0} has been successfully added to the Email Group." -msgstr "{0} E-posta grubuna başarı ile eklendi." +msgstr "" -#: email/queue.py:127 +#: email/queue.py:123 msgid "{0} has left the conversation in {1} {2}" -msgstr "{0} isimli kişi {1} {2} konuşmayı bıraktı" +msgstr "" -#: __init__.py:2373 +#: __init__.py:2483 msgid "{0} has no versions tracked." -msgstr "{0} adlı kullanıcının takip edilen sürümü yok." +msgstr "" #: public/js/frappe/utils/pretty_date.js:54 msgid "{0} hours ago" -msgstr "{0} saat önce" +msgstr "" #: website/doctype/web_form/templates/web_form.html:145 msgid "{0} if you are not redirected within {1} seconds" @@ -37346,149 +39088,157 @@ msgstr "" #: website/doctype/website_settings/website_settings.py:102 #: website/doctype/website_settings/website_settings.py:122 msgid "{0} in row {1} cannot have both URL and child items" -msgstr "{0} üst üste {1} URL ve alt öğeleri hem de olamaz" +msgstr "" -#: core/doctype/doctype/doctype.py:916 +#: core/doctype/doctype/doctype.py:915 msgid "{0} is a mandatory field" -msgstr "{0} zorunlu bir alandır" +msgstr "" #: core/doctype/file/file.py:503 msgid "{0} is a not a valid zip file" msgstr "" -#: core/doctype/doctype/doctype.py:1559 +#: core/doctype/doctype/doctype.py:1555 msgid "{0} is an invalid Data field." -msgstr "{0} geçersiz bir Veri alanı." +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:147 +#: automation/doctype/auto_repeat/auto_repeat.py:148 msgid "{0} is an invalid email address in 'Recipients'" -msgstr "{0}, 'Alıcılar' bölümünde geçersiz bir e-posta adresidir" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1394 +#: public/js/frappe/views/reports/report_view.js:1391 msgid "{0} is between {1} and {2}" msgstr "" #: public/js/frappe/form/sidebar/form_sidebar_users.js:41 #: public/js/frappe/form/sidebar/form_sidebar_users.js:69 msgid "{0} is currently {1}" -msgstr "{0} şu anda {1}" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1363 +#: public/js/frappe/views/reports/report_view.js:1360 msgid "{0} is equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1383 +#: public/js/frappe/views/reports/report_view.js:1380 msgid "{0} is greater than or equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1373 +#: public/js/frappe/views/reports/report_view.js:1370 msgid "{0} is greater than {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1388 +#: public/js/frappe/views/reports/report_view.js:1385 msgid "{0} is less than or equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1378 +#: public/js/frappe/views/reports/report_view.js:1375 msgid "{0} is less than {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1413 +#: public/js/frappe/views/reports/report_view.js:1410 msgid "{0} is like {1}" msgstr "" -#: email/doctype/email_account/email_account.py:169 +#: email/doctype/email_account/email_account.py:176 msgid "{0} is mandatory" -msgstr "{0} alanı zorunludur" +msgstr "{0} yaşam alanı" -#: core/doctype/document_naming_rule/document_naming_rule.py:49 +#: core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" -#: www/printview.py:350 +#: www/printview.py:359 msgid "{0} is not a raw printing format." -msgstr "{0} ham bir baskı formatı değil." +msgstr "" -#: public/js/frappe/views/calendar/calendar.js:81 +#: public/js/frappe/views/calendar/calendar.js:82 msgid "{0} is not a valid Calendar. Redirecting to default Calendar." msgstr "" +#: core/doctype/scheduled_job_type/scheduled_job_type.py:62 +msgid "{0} is not a valid Cron expression." +msgstr "" + #: public/js/frappe/form/controls/dynamic_link.js:27 msgid "{0} is not a valid DocType for Dynamic Link" -msgstr "{0}, Dinamik Bağlantı için geçerli bir DocType değil" +msgstr "" -#: email/doctype/email_group/email_group.py:130 utils/__init__.py:189 +#: email/doctype/email_group/email_group.py:131 utils/__init__.py:189 msgid "{0} is not a valid Email Address" -msgstr "{0} geçerli bir e-posta adresi değil" +msgstr "" #: utils/__init__.py:157 msgid "{0} is not a valid Name" -msgstr "{0}, geçerli bir Ad değil" +msgstr "" #: utils/__init__.py:136 msgid "{0} is not a valid Phone Number" -msgstr "{0}, geçerli bir Telefon Numarası değil" +msgstr "" -#: model/workflow.py:186 +#: model/workflow.py:182 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." -msgstr "{0} geçerli bir İş Akışı Durumu değil. Lütfen iş akışınızı güncelleyin ve tekrar deneyin." +msgstr "" -#: permissions.py:795 +#: permissions.py:791 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: permissions.py:815 +#: permissions.py:811 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:109 +#: email/doctype/auto_email_report/auto_email_report.py:115 msgid "{0} is not a valid report format. Report format should one of the following {1}" -msgstr "{0} geçerli bir rapor biçimi değil. Rapor biçimi aşağıdakilerden birini yapmalıdır {1}" +msgstr "" #: core/doctype/file/file.py:483 msgid "{0} is not a zip file" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1368 +#: public/js/frappe/views/reports/report_view.js:1365 msgid "{0} is not equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1415 +#: public/js/frappe/views/reports/report_view.js:1412 msgid "{0} is not like {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1409 +#: public/js/frappe/views/reports/report_view.js:1406 msgid "{0} is not one of {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1419 +#: public/js/frappe/views/reports/report_view.js:1416 msgid "{0} is not set" msgstr "" -#: printing/doctype/print_format/print_format.py:166 +#: printing/doctype/print_format/print_format.py:163 msgid "{0} is now default print format for {1} doctype" -msgstr "{0} artık belge türü {1} için varsayılan yazdırma biçimi" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1402 +#: public/js/frappe/views/reports/report_view.js:1399 msgid "{0} is one of {1}" msgstr "" -#: email/doctype/email_account/email_account.py:263 model/naming.py:201 -#: printing/doctype/print_format/print_format.py:93 utils/csvutils.py:131 +#: email/doctype/email_account/email_account.py:277 model/naming.py:202 +#: printing/doctype/print_format/print_format.py:90 utils/csvutils.py:131 msgid "{0} is required" -msgstr "{0} gereklidir" +msgstr "{0} içerir" -#: public/js/frappe/views/reports/report_view.js:1418 +#: public/js/frappe/views/reports/report_view.js:1415 msgid "{0} is set" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1397 +#: public/js/frappe/views/reports/report_view.js:1394 msgid "{0} is within {1}" msgstr "" -#: public/js/frappe/list/list_view.js:1556 +#: public/js/frappe/list/list_view.js:1602 msgid "{0} items selected" -msgstr "{0} adet ürün seçildi" +msgstr "" + +#: core/doctype/user/user.py:1381 +msgid "{0} just impersonated as you. They gave this reason: {1}" +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:150 #: public/js/frappe/form/sidebar/form_sidebar.js:96 @@ -37497,81 +39247,85 @@ msgstr "" #: core/doctype/activity_log/feed.py:13 msgid "{0} logged in" -msgstr "{0} giriş yaptı" +msgstr "" #: core/doctype/activity_log/feed.py:19 msgid "{0} logged out: {1}" -msgstr "{0} çıkış yaptı: {1}" +msgstr "" #: public/js/frappe/utils/pretty_date.js:27 msgid "{0} m" -msgstr "{0} m" +msgstr "" -#: desk/notifications.py:373 +#: desk/notifications.py:374 msgid "{0} mentioned you in a comment in {1} {2}" -msgstr "{0}, {1} {2} içindeki bir yorumda sizden bahsetti" +msgstr "" #: public/js/frappe/utils/pretty_date.js:50 msgid "{0} minutes ago" -msgstr "{0} dakika önce" +msgstr "" #: public/js/frappe/utils/pretty_date.js:68 msgid "{0} months ago" -msgstr "{0} ay önce" +msgstr "" -#: model/document.py:1564 +#: model/document.py:1594 msgid "{0} must be after {1}" -msgstr "{0}, {1} tarihinden sonra olmalı" +msgstr "" #: utils/csvutils.py:136 msgid "{0} must be one of {1}" -msgstr "{0} mutlaka {1} den olmalıdır" +msgstr "" -#: model/base_document.py:771 +#: model/base_document.py:790 msgid "{0} must be set first" -msgstr "{0} ilk olarak ayarlanması gerekir" +msgstr "" -#: model/base_document.py:629 +#: model/base_document.py:648 msgid "{0} must be unique" -msgstr "{0} benzersiz olmalıdır" +msgstr "" -#: core/doctype/language/language.py:42 -msgid "" -"{0} must begin and end with a letter and can only contain letters,\n" +#: core/doctype/language/language.py:43 +msgid "{0} must begin and end with a letter and can only contain letters,\n" "\t\t\t\thyphen or underscore." msgstr "" -#: workflow/doctype/workflow/workflow.py:93 +#: workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" -msgstr "{0} geçerli bir durum değil" +msgstr "" -#: model/rename_doc.py:388 +#: model/rename_doc.py:380 msgid "{0} not allowed to be renamed" -msgstr "{0} isminin değiştirilmesine izin verilmedi" +msgstr "" -#: desk/doctype/desktop_icon/desktop_icon.py:371 +#: desk/doctype/desktop_icon/desktop_icon.py:365 msgid "{0} not found" -msgstr "{0} bulunamadı" +msgstr "" -#: core/doctype/report/report.py:416 public/js/frappe/list/list_view.js:956 +#: core/doctype/report/report.py:419 public/js/frappe/list/list_view.js:987 msgid "{0} of {1}" -msgstr "{1} / {0}" +msgstr "" -#: public/js/frappe/list/list_view.js:958 +#: public/js/frappe/list/list_view.js:989 msgid "{0} of {1} ({2} rows with children)" -msgstr "{0} / {0} ({2} çocuklu satır)" +msgstr "" #: email/doctype/newsletter/newsletter.js:205 msgid "{0} of {1} sent" msgstr "" -#: utils/data.py:1705 +#: utils/data.py:1507 +msgctxt "Money in words" +msgid "{0} only." +msgstr "" + +#: utils/data.py:1677 msgid "{0} or {1}" -msgstr "{0} veya {1}" +msgstr "" #: core/doctype/user_permission/user_permission_list.js:177 msgid "{0} record deleted" -msgstr "{0} kayıt silindi" +msgstr "" #: public/js/frappe/logtypes.js:22 msgid "{0} records are not automatically deleted." @@ -37583,11 +39337,11 @@ msgstr "" #: core/doctype/user_permission/user_permission_list.js:179 msgid "{0} records deleted" -msgstr "{0} kayıt silindi" +msgstr "" -#: public/js/frappe/data_import/data_exporter.js:225 +#: public/js/frappe/data_import/data_exporter.js:228 msgid "{0} records will be exported" -msgstr "{0} kayıtlar dışa aktarılacak" +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" @@ -37601,45 +39355,49 @@ msgstr "" #: social/doctype/energy_point_log/energy_point_log.py:139 #: social/doctype/energy_point_log/energy_point_log.py:178 msgid "{0} reverted your point on {1}" -msgstr "{0}, {1} tarihinde amacınızı geri aldı" +msgstr "" #: social/doctype/energy_point_log/energy_point_log.py:141 #: social/doctype/energy_point_log/energy_point_log.py:180 msgid "{0} reverted your points on {1}" -msgstr "{0} puanlarınızı {1} için geri aldı" +msgstr "" #: public/js/frappe/utils/energy_point_utils.js:44 #: public/js/frappe/utils/energy_point_utils.js:59 msgid "{0} reverted {1}" -msgstr "{0} {1} geri döndü" +msgstr "" -#: desk/query_report.py:583 +#: public/js/frappe/roles_editor.js:62 +msgid "{0} role does not have permission on any doctype" +msgstr "" + +#: desk/query_report.py:576 msgid "{0} saved successfully" -msgstr "{0} başarıyla kaydedildi" +msgstr "" #: desk/doctype/todo/todo.py:44 msgid "{0} self assigned this task: {1}" -msgstr "{0} bu göreve kendini atadı: {1}" +msgstr "" -#: share.py:238 +#: share.py:233 msgid "{0} shared a document {1} {2} with you" -msgstr "{0} sizinle bir doküman paylaştı {1} {2}" +msgstr "" -#: core/doctype/docshare/docshare.py:79 +#: core/doctype/docshare/docshare.py:77 msgid "{0} shared this document with everyone" -msgstr "{0} herkesle bu belgeyi paylaştı" +msgstr "" -#: core/doctype/docshare/docshare.py:82 +#: core/doctype/docshare/docshare.py:80 msgid "{0} shared this document with {1}" -msgstr "{0} bu belgeyi şu kişi ile paylaştı {1}" +msgstr "" -#: core/doctype/doctype/doctype.py:320 +#: core/doctype/doctype/doctype.py:315 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:136 +#: automation/doctype/auto_repeat/auto_repeat.py:137 msgid "{0} should not be same as {1}" -msgstr "{0}, {1} ile aynı olmamalıdır" +msgstr "" #: public/js/frappe/form/footer/version_timeline_content_builder.js:51 msgid "{0} submitted this document" @@ -37650,32 +39408,32 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: email/doctype/email_group/email_group.py:61 -#: email/doctype/email_group/email_group.py:132 +#: email/doctype/email_group/email_group.py:62 +#: email/doctype/email_group/email_group.py:133 msgid "{0} subscribers added" -msgstr "{0} aboneler eklendi" +msgstr "" -#: email/queue.py:70 +#: email/queue.py:68 msgid "{0} to stop receiving emails of this type" -msgstr "Bu tür e-postaları almayı durdurmak için {0}" +msgstr "" #: public/js/frappe/form/controls/date_range.js:46 #: public/js/frappe/form/controls/date_range.js:62 -#: public/js/frappe/form/formatters.js:218 +#: public/js/frappe/form/formatters.js:234 msgid "{0} to {1}" -msgstr "{0} ile {1} arasında" +msgstr "" -#: core/doctype/docshare/docshare.py:91 +#: core/doctype/docshare/docshare.py:89 msgid "{0} un-shared this document with {1}" -msgstr "{0} belge paylaşımını şu kişiden sildi {1}" +msgstr "" #: custom/doctype/customize_form/customize_form.py:249 msgid "{0} updated" -msgstr "{0} güncellendi" +msgstr "" -#: public/js/frappe/form/controls/multiselect_list.js:162 +#: public/js/frappe/form/controls/multiselect_list.js:182 msgid "{0} values selected" -msgstr "{0} değer seçildi" +msgstr "" #: public/js/frappe/form/footer/form_timeline.js:183 msgid "{0} viewed this" @@ -37683,165 +39441,169 @@ msgstr "" #: public/js/frappe/utils/pretty_date.js:35 msgid "{0} w" -msgstr "{0} h" +msgstr "" #: public/js/frappe/utils/pretty_date.js:64 msgid "{0} weeks ago" -msgstr "{0} hafta önce" +msgstr "" #: public/js/frappe/utils/pretty_date.js:39 msgid "{0} y" -msgstr "{0} y" +msgstr "" #: public/js/frappe/utils/pretty_date.js:72 msgid "{0} years ago" -msgstr "{0} yıl önce" +msgstr "" #: public/js/frappe/form/link_selector.js:219 msgid "{0} {1} added" -msgstr "{0} {1} eklendi" +msgstr "" #: public/js/frappe/utils/dashboard_utils.js:270 msgid "{0} {1} added to Dashboard {2}" -msgstr "{0} {1} Gösterge Tablosuna eklendi {2}" +msgstr "" -#: model/base_document.py:562 model/rename_doc.py:112 +#: model/base_document.py:581 model/rename_doc.py:110 msgid "{0} {1} already exists" -msgstr "{0} {1} zaten var" +msgstr "" -#: model/base_document.py:873 +#: model/base_document.py:898 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" -msgstr "{0} {1} olamaz \"{2}\". Bu \"{3}\" biri olmalıdır" +msgstr "" -#: utils/nestedset.py:343 +#: utils/nestedset.py:337 msgid "{0} {1} cannot be a leaf node as it has children" -msgstr "{0} {1} son nokta olamaz çünkü kendisine bağlı olanlar var." +msgstr "" -#: model/rename_doc.py:377 +#: model/rename_doc.py:371 msgid "{0} {1} does not exist, select a new target to merge" -msgstr "{0} {1} yok, birleştirmek için yeni bir hedef seçin" +msgstr "" #: public/js/frappe/form/form.js:970 msgid "{0} {1} is linked with the following submitted documents: {2}" -msgstr "{0} {1} şu gönderilen belgelerle bağlantılıdır: {2}" +msgstr "" -#: model/document.py:170 permissions.py:566 +#: model/document.py:173 permissions.py:564 msgid "{0} {1} not found" -msgstr "{0} {1} bulunamadı" +msgstr "" -#: model/delete_doc.py:231 +#: model/delete_doc.py:242 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." -msgstr "{0} {1}: Gönderilen Kayıt silinemez. Önce onu {2} İptal etmelisiniz {3}." +msgstr "" -#: model/base_document.py:988 +#: model/base_document.py:1013 msgid "{0}, Row {1}" -msgstr "{0}, {1} Satır" +msgstr "" -#: model/base_document.py:993 +#: model/base_document.py:1018 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" -msgstr "{0}: izin verilen azami karakter olarak '{1}' ({3}), kesilmiş alacak {2}" - -#: core/doctype/doctype/doctype.py:1741 -msgid "{0}: Cannot set Amend without Cancel" -msgstr "{0}: Öğesi tanzim edilmeden iptal edilemez" - -#: core/doctype/doctype/doctype.py:1759 -msgid "{0}: Cannot set Assign Amend if not Submittable" -msgstr "{0}: Ata Amend ayarlanamaz Submittable değilse" - -#: core/doctype/doctype/doctype.py:1757 -msgid "{0}: Cannot set Assign Submit if not Submittable" -msgstr "{0}: Gönderilebilir değilse gönderme ataması yapılamaz" - -#: core/doctype/doctype/doctype.py:1736 -msgid "{0}: Cannot set Cancel without Submit" -msgstr "{0}: Gönderilmeden iptal edilemez" - -#: core/doctype/doctype/doctype.py:1743 -msgid "{0}: Cannot set Import without Create" -msgstr "{0}: oluşturulmadan içeri atanamaz" +msgstr "" #: core/doctype/doctype/doctype.py:1739 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "" + +#: core/doctype/doctype/doctype.py:1757 +msgid "{0}: Cannot set Assign Amend if not Submittable" +msgstr "" + +#: core/doctype/doctype/doctype.py:1755 +msgid "{0}: Cannot set Assign Submit if not Submittable" +msgstr "" + +#: core/doctype/doctype/doctype.py:1734 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "" + +#: core/doctype/doctype/doctype.py:1741 +msgid "{0}: Cannot set Import without Create" +msgstr "" + +#: core/doctype/doctype/doctype.py:1737 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" -msgstr "{0}: Yaz olmadan onaylanmasına, İptal, Gönder ayarlanamaz" +msgstr "" -#: core/doctype/doctype/doctype.py:1763 +#: core/doctype/doctype/doctype.py:1761 msgid "{0}: Cannot set import as {1} is not importable" -msgstr "{0}: {1} İçeri alınabilir değilse içeri alınabilir işaretlenemez" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:393 +#: automation/doctype/auto_repeat/auto_repeat.py:394 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}: Yinelenen yeni belge eklenemedi. Otomatik tekrar bildirim e-postasında belge eklemeyi etkinleştirmek için Yazdırma Ayarları'nda {1} seçeneğini etkinleştirin" +msgstr "" -#: core/doctype/doctype/doctype.py:1377 +#: core/doctype/doctype/doctype.py:1375 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" -msgstr "{0}: '{1}' alanı benzersiz olmayan değerlere sahip olduğundan Benzersiz olarak ayarlanamaz" +msgstr "" -#: core/doctype/doctype/doctype.py:1285 +#: core/doctype/doctype/doctype.py:1283 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" -msgstr "{0}: {2} satırındaki {1} alanı, varsayılan olmadan gizlenemez ve zorunlu değildir" +msgstr "" -#: core/doctype/doctype/doctype.py:1244 +#: core/doctype/doctype/doctype.py:1242 msgid "{0}: Field {1} of type {2} cannot be mandatory" -msgstr "{0}: {2} tipindeki {1} alanı zorunlu olamaz" +msgstr "" -#: core/doctype/doctype/doctype.py:1232 +#: core/doctype/doctype/doctype.py:1230 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" -msgstr "{0}: {1} alan adı, {2} satırlarında birden çok kez görünüyor" +msgstr "" #: core/doctype/doctype/doctype.py:1362 msgid "{0}: Fieldtype {1} for {2} cannot be unique" -msgstr "{0}: {2} için {1} alan tipi benzersiz olamaz" +msgstr "" -#: core/doctype/doctype/doctype.py:1698 +#: core/doctype/doctype/doctype.py:1694 msgid "{0}: No basic permissions set" -msgstr "{0}: Temel kurallar ayarlanmamış" +msgstr "" -#: core/doctype/doctype/doctype.py:1712 +#: core/doctype/doctype/doctype.py:1708 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" -msgstr "{0}: Aynı Rolü Düzey ile izin Sadece bir kural {1}" +msgstr "" -#: core/doctype/doctype/doctype.py:1266 +#: core/doctype/doctype/doctype.py:1264 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" -msgstr "{0}: Seçenekler, {2} satırındaki {1} alanı için geçerli bir DocType olmalıdır" +msgstr "" -#: core/doctype/doctype/doctype.py:1255 +#: core/doctype/doctype/doctype.py:1253 msgid "{0}: Options required for Link or Table type field {1} in row {2}" -msgstr "{0}: {2} satırındaki {1} Link veya Tablo tipi alanı için gerekli seçenekler" +msgstr "" -#: core/doctype/doctype/doctype.py:1273 +#: core/doctype/doctype/doctype.py:1271 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" -msgstr "{0}: Seçenekler {1}, {3} alanı için {2} doctype adıyla aynı olmalıdır" +msgstr "" -#: core/doctype/doctype/doctype.py:1727 +#: public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "" + +#: core/doctype/doctype/doctype.py:1723 msgid "{0}: Permission at level 0 must be set before higher levels are set" -msgstr "{0}: yüksek seviyelerde ayarlanır önce 0 düzeyinde İzni ayarlanması gerekir" +msgstr "" #: public/js/frappe/form/controls/data.js:50 msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: core/doctype/doctype/doctype.py:1219 +#: core/doctype/doctype/doctype.py:1217 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" #: contacts/doctype/address/address.js:35 -#: contacts/doctype/contact/contact.js:78 +#: contacts/doctype/contact/contact.js:83 #: public/js/frappe/views/workspace/workspace.js:169 msgid "{0}: {1}" msgstr "" -#: workflow/doctype/workflow_action/workflow_action.py:172 +#: workflow/doctype/workflow_action/workflow_action.py:167 msgid "{0}: {1} is set to state {2}" -msgstr "{0}: {1}, {2} durumunda olacak şekilde ayarlandı" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1190 +#: public/js/frappe/views/reports/query_report.js:1204 msgid "{0}: {1} vs {2}" -msgstr "{0}: {1} - {2}" +msgstr "" -#: core/doctype/doctype/doctype.py:1385 +#: core/doctype/doctype/doctype.py:1383 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" -msgstr "{0}: {2} için {1} alan tipi dizine alınamıyor" +msgstr "" #: public/js/frappe/utils/datatable.js:12 msgid "{count} cell copied" @@ -37859,40 +39621,40 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: core/doctype/doctype/doctype.py:1439 +#: core/doctype/doctype/doctype.py:1437 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." -msgstr "{{{0}}} alanAdı şablonu geçerli değil. Olması gereken {{field_name}}" +msgstr "" #: public/js/frappe/form/form.js:553 msgid "{} Complete" -msgstr "{} Tamamlayınız" +msgstr "" -#: utils/data.py:2418 +#: utils/data.py:2421 msgid "{} Invalid python code on line {}" msgstr "" -#: utils/data.py:2427 +#: utils/data.py:2430 msgid "{} Possibly invalid python code.
{}" msgstr "" -#: core/doctype/log_settings/log_settings.py:54 +#: core/doctype/log_settings/log_settings.py:55 msgid "{} does not support automated log clearing." msgstr "" -#: core/doctype/audit_trail/audit_trail.py:40 +#: core/doctype/audit_trail/audit_trail.py:41 msgid "{} field cannot be empty." msgstr "" -#: email/doctype/email_account/email_account.py:193 #: email/doctype/email_account/email_account.py:200 +#: email/doctype/email_account/email_account.py:208 msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: utils/data.py:123 +#: utils/data.py:124 msgid "{} is not a valid date string." -msgstr "{}, geçerli bir tarih dizesi değil." +msgstr "" -#: commands/utils.py:519 +#: commands/utils.py:538 msgid "{} not found in PATH! This is required to access the console." msgstr "" @@ -37900,7 +39662,7 @@ msgstr "" msgid "{} not found in PATH! This is required to restore the database." msgstr "" -#: utils/backups.py:441 +#: utils/backups.py:439 msgid "{} not found in PATH! This is required to take a backup." msgstr "" From b7f20733804475871d4d993d427caf64c4d9a7a9 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 22 Mar 2024 10:58:44 +0530 Subject: [PATCH 56/93] feat: Extensible SocketIO You can now specify custom event handlers for SocketIO. Usage: 1. In your app's hooks.py add `has_realtime_event_handlers=True` so Framework can assume your app contains custom handler and import them. 2. Create a file called `/app/realtime/handlers.js` with single module export a function that will setup handlers using socket. Here's sample code: ```js // This is /app_root/realtime/handler.js` function chat_app_handlers(socket) { socket.on("hello_chat") { console.log("hello world!"); } } module.exports = chat_app_handlers; ``` 3. Restart SocketIO server and see if it worked by sending event from client. In desk based app you can do `frappe.realtime.socket.emit("hello_chat")` Middlewares are not yet possible... will be worked upon __some other day__ [tm] closes https://github.com/frappe/frappe/issues/21528 --- frappe/hooks.py | 4 ++++ frappe/realtime.py | 7 +++++++ realtime/index.js | 11 +++++++++++ realtime/middlewares/authenticate.js | 7 ++++--- 4 files changed, 26 insertions(+), 3 deletions(-) diff --git a/frappe/hooks.py b/frappe/hooks.py index 3487a73fa5..47f7ad150c 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -543,3 +543,7 @@ default_log_clearing_doctypes = { "Activity Log": 90, "Route History": 90, } + +# Technically we have event handlers but `frappe` gets special treatment +# SocketIO server uses this to identify which apps to lookup for event handlers. +has_realtime_event_handlers = False diff --git a/frappe/realtime.py b/frappe/realtime.py index d544cb8a4f..ad64c6b50d 100644 --- a/frappe/realtime.py +++ b/frappe/realtime.py @@ -135,9 +135,16 @@ def can_subscribe_doctype(doctype: str) -> bool: @frappe.whitelist(allow_guest=True) def get_user_info(): + installed_apps = frappe.get_installed_apps() + + apps_with_event = [ + app for app in installed_apps if any(frappe.get_hooks("has_realtime_event_handlers", app_name=app)) + ] + return { "user": frappe.session.user, "user_type": frappe.session.data.user_type, + "installed_apps": apps_with_event, } diff --git a/realtime/index.js b/realtime/index.js index 338a6a1956..7ae09ca249 100644 --- a/realtime/index.js +++ b/realtime/index.js @@ -1,6 +1,8 @@ const { Server } = require("socket.io"); const http = require("node:http"); +const fs = require("fs"); +const path = require("path"); const { get_conf, get_redis_subscriber } = require("../node_utils"); const conf = get_conf(); @@ -30,6 +32,15 @@ const frappe_handlers = require("./handlers/frappe_handlers"); function on_connection(socket) { frappe_handlers(realtime, socket); + socket.installed_apps.forEach((app) => { + let file = `../../${app}/realtime/handlers.js`; + let abs_path = path.resolve(__dirname, file); + if (fs.existsSync(abs_path)) { + let handler_factory = require(file); + handler_factory(socket); + } + }); + // ESBUild "open in editor" on error socket.on("open_in_editor", async (data) => { await subscriber.connect(); diff --git a/realtime/middlewares/authenticate.js b/realtime/middlewares/authenticate.js index 127939a26b..78e5dab3cf 100644 --- a/realtime/middlewares/authenticate.js +++ b/realtime/middlewares/authenticate.js @@ -40,9 +40,10 @@ function authenticate_with_frappe(socket, next) { auth_req .type("form") - .then((res) => { - socket.user = res.body.message.user; - socket.user_type = res.body.message.user_type; + .then(({ body: { message } }) => { + socket.user = message.user; + socket.user_type = message.user_type; + socket.installed_apps = message.installed_apps; socket.sid = cookies.sid; socket.authorization_header = authorization_header; next(); From 39f7e4e92e888370e12ba4ff52c490c27038599e Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 22 Mar 2024 11:53:27 +0530 Subject: [PATCH 57/93] fix: avoid crashing on handler import/execution Can't do much for events, but at least here we can ignore the errors. --- realtime/index.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/realtime/index.js b/realtime/index.js index 7ae09ca249..b9e3a2575e 100644 --- a/realtime/index.js +++ b/realtime/index.js @@ -36,8 +36,13 @@ function on_connection(socket) { let file = `../../${app}/realtime/handlers.js`; let abs_path = path.resolve(__dirname, file); if (fs.existsSync(abs_path)) { - let handler_factory = require(file); - handler_factory(socket); + try { + let handler_factory = require(file); + handler_factory(socket); + } catch (err) { + console.warn(`failed to load event handlers from ${abs_path}`); + console.warn(err); + } } }); From e055d2742a3428019f3acb2586ff21f600e2f22d Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Sat, 6 Apr 2024 18:19:06 +0530 Subject: [PATCH 58/93] build(deps): bump pillow again (#25827) GHSA-44wm-f244-xhp3 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 734ffef6dc..491dc504fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ "filetype~=1.2.0", "GitPython~=3.1.34", "Jinja2~=3.1.2", - "Pillow~=10.2.0", + "Pillow~=10.3.0", "PyJWT~=2.8.0", # We depend on internal attributes, # do NOT add loose requirements on PyMySQL versions. From a313fb90cb39cda252b0a0e018b1efcd1a921232 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Sat, 6 Apr 2024 18:18:37 +0530 Subject: [PATCH 59/93] fix(DX): no need to specify separate hook for socketio --- frappe/hooks.py | 4 ---- frappe/realtime.py | 8 +------- realtime/index.js | 37 +++++++++++++++++++++++++++---------- 3 files changed, 28 insertions(+), 21 deletions(-) diff --git a/frappe/hooks.py b/frappe/hooks.py index 47f7ad150c..3487a73fa5 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -543,7 +543,3 @@ default_log_clearing_doctypes = { "Activity Log": 90, "Route History": 90, } - -# Technically we have event handlers but `frappe` gets special treatment -# SocketIO server uses this to identify which apps to lookup for event handlers. -has_realtime_event_handlers = False diff --git a/frappe/realtime.py b/frappe/realtime.py index ad64c6b50d..f338d1a2fd 100644 --- a/frappe/realtime.py +++ b/frappe/realtime.py @@ -135,16 +135,10 @@ def can_subscribe_doctype(doctype: str) -> bool: @frappe.whitelist(allow_guest=True) def get_user_info(): - installed_apps = frappe.get_installed_apps() - - apps_with_event = [ - app for app in installed_apps if any(frappe.get_hooks("has_realtime_event_handlers", app_name=app)) - ] - return { "user": frappe.session.user, "user_type": frappe.session.data.user_type, - "installed_apps": apps_with_event, + "installed_apps": frappe.get_installed_apps(), } diff --git a/realtime/index.js b/realtime/index.js index b9e3a2575e..0e83c949d2 100644 --- a/realtime/index.js +++ b/realtime/index.js @@ -33,16 +33,12 @@ function on_connection(socket) { frappe_handlers(realtime, socket); socket.installed_apps.forEach((app) => { - let file = `../../${app}/realtime/handlers.js`; - let abs_path = path.resolve(__dirname, file); - if (fs.existsSync(abs_path)) { - try { - let handler_factory = require(file); - handler_factory(socket); - } catch (err) { - console.warn(`failed to load event handlers from ${abs_path}`); - console.warn(err); - } + let app_handler = get_app_handlers(app); + try { + app_handler && app_handler(socket); + } catch (err) { + console.warn(`failed to setup event handlers from ${app}`); + console.warn(err); } }); @@ -53,6 +49,27 @@ function on_connection(socket) { }); } +const _app_handlers = {}; +function get_app_handlers(app) { + if (app in _app_handlers) { + return _app_handlers[app]; + } + + let file = `../../${app}/realtime/handlers.js`; + let abs_path = path.resolve(__dirname, file); + let handler = null; + if (fs.existsSync(abs_path)) { + try { + handler = require(file); + } catch (err) { + console.warn(`failed to load event handlers from ${abs_path}`); + console.warn(err); + } + } + _app_handlers[app] = handler; + return handler; +} + realtime.on("connection", on_connection); // ======================= From 47780900240e15dbe56518897e7b54211b4167f1 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Sat, 6 Apr 2024 18:32:48 +0530 Subject: [PATCH 60/93] refactor!: Frappe handlers using same extensible socketio --- realtime/{handlers/frappe_handlers.js => handlers.js} | 4 ++-- realtime/index.js | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) rename realtime/{handlers/frappe_handlers.js => handlers.js} (98%) diff --git a/realtime/handlers/frappe_handlers.js b/realtime/handlers.js similarity index 98% rename from realtime/handlers/frappe_handlers.js rename to realtime/handlers.js index d56090ffb2..3b1939edec 100644 --- a/realtime/handlers/frappe_handlers.js +++ b/realtime/handlers.js @@ -1,10 +1,10 @@ -const { frappe_request } = require("../utils"); +const { frappe_request } = require("./utils"); const log = console.log; const WEBSITE_ROOM = "website"; const SITE_ROOM = "all"; -function frappe_handlers(realtime, socket) { +function frappe_handlers(socket) { socket.join(user_room(socket.user)); socket.join(WEBSITE_ROOM); diff --git a/realtime/index.js b/realtime/index.js index 0e83c949d2..5643a6836a 100644 --- a/realtime/index.js +++ b/realtime/index.js @@ -27,11 +27,7 @@ const authenticate = require("./middlewares/authenticate"); realtime.use(authenticate); // ======================= -// load and register handlers -const frappe_handlers = require("./handlers/frappe_handlers"); function on_connection(socket) { - frappe_handlers(realtime, socket); - socket.installed_apps.forEach((app) => { let app_handler = get_app_handlers(app); try { From 2a56869c99a725bbb6adc8f3d079e8bb6e8811ee Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Sat, 6 Apr 2024 19:44:46 +0530 Subject: [PATCH 61/93] refactor: better permission checking on sockets - no more "can subscribe X" - add a new util function on socket `has_permission` Basic usage: ```js socket.has_permission(doctype, [name]).then(() => { // do something }); ``` --- frappe/realtime.py | 18 ++----- realtime/handlers.js | 109 +++++++++++++------------------------------ 2 files changed, 36 insertions(+), 91 deletions(-) diff --git a/frappe/realtime.py b/frappe/realtime.py index f338d1a2fd..ce2f344e33 100644 --- a/frappe/realtime.py +++ b/frappe/realtime.py @@ -114,21 +114,9 @@ def emit_via_redis(event, message, room): @frappe.whitelist(allow_guest=True) -def can_subscribe_doc(doctype: str, docname: str) -> bool: - from frappe.exceptions import PermissionError - - if not frappe.has_permission(doctype=doctype, doc=docname, ptype="read"): - raise PermissionError() - - return True - - -@frappe.whitelist(allow_guest=True) -def can_subscribe_doctype(doctype: str) -> bool: - from frappe.exceptions import PermissionError - - if not frappe.has_permission(doctype=doctype, ptype="read"): - raise PermissionError() +def has_permission(doctype: str, name: str) -> bool: + if not frappe.has_permission(doctype=doctype, doc=name, ptype="read"): + raise frappe.PermissionError return True diff --git a/realtime/handlers.js b/realtime/handlers.js index 3b1939edec..d8882ff60a 100644 --- a/realtime/handlers.js +++ b/realtime/handlers.js @@ -12,13 +12,27 @@ function frappe_handlers(socket) { socket.join(SITE_ROOM); } + socket.has_permission = (doctype, name) => { + return new Promise((resolve) => { + frappe_request("/api/method/frappe.realtime.has_permission", socket) + .type("form") + .query({ + doctype, + name, + }) + .end(function (err, res) { + if (res?.status == 200) { + resolve(); + } else if (res.status != 403) { + log("Something went wrong", err, res); + } + }); + }); + }; + socket.on("doctype_subscribe", function (doctype) { - can_subscribe_doctype({ - socket, - doctype, - callback: () => { - socket.join(doctype_room(doctype)); - }, + socket.has_permission(doctype).then(() => { + socket.join(doctype_room(doctype)); }); }); @@ -42,14 +56,8 @@ function frappe_handlers(socket) { }); socket.on("doc_subscribe", function (doctype, docname) { - can_subscribe_doc({ - socket, - doctype, - docname, - callback: () => { - let room = doc_room(doctype, docname); - socket.join(room); - }, + socket.has_permission(doctype, docname).then(() => { + socket.join(doc_room(doctype, docname)); }); }); @@ -59,23 +67,18 @@ function frappe_handlers(socket) { }); socket.on("doc_open", function (doctype, docname) { - can_subscribe_doc({ - socket, - doctype, - docname, - callback: () => { - let room = open_doc_room(doctype, docname); - socket.join(room); - if (!socket.subscribed_documents) socket.subscribed_documents = []; - socket.subscribed_documents.push([doctype, docname]); + socket.has_permission(doctype, docname).then(() => { + let room = open_doc_room(doctype, docname); + socket.join(room); + if (!socket.subscribed_documents) socket.subscribed_documents = []; + socket.subscribed_documents.push([doctype, docname]); - // show who is currently viewing the form - notify_subscribed_doc_users({ - socket: socket, - doctype: doctype, - docname: docname, - }); - }, + // show who is currently viewing the form + notify_subscribed_doc_users({ + socket: socket, + doctype: doctype, + docname: docname, + }); }); }); @@ -110,28 +113,6 @@ function notify_disconnected_documents(socket) { } } -function can_subscribe_doctype(args) { - if (!args) return; - if (!args.doctype) return; - frappe_request("/api/method/frappe.realtime.can_subscribe_doctype", args.socket) - .type("form") - .query({ - doctype: args.doctype, - }) - .end(function (err, res) { - if (!res || res.status == 403 || err) { - if (err) { - log(err); - } - return false; - } else if (res.status == 200) { - args.callback && args.callback(err, res); - return true; - } - log("ERROR (can_subscribe_doctype): ", err, res); - }); -} - function notify_subscribed_doc_users(args) { if (!(args && args.doctype && args.docname)) { return; @@ -160,30 +141,6 @@ function notify_subscribed_doc_users(args) { }); } -function can_subscribe_doc(args) { - if (!args) return; - if (!args.doctype || !args.docname) return; - frappe_request("/api/method/frappe.realtime.can_subscribe_doc", args.socket) - .type("form") - .query({ - doctype: args.doctype, - docname: args.docname, - }) - .end(function (err, res) { - if (!res) { - log("No response for doc_subscribe"); - } else if (res.status == 403) { - return; - } else if (err) { - log(err); - } else if (res.status == 200) { - args.callback(err, res); - } else { - log("Something went wrong", err, res); - } - }); -} - const doc_room = (doctype, docname) => "doc:" + doctype + "/" + docname; const open_doc_room = (doctype, docname) => "open_doc:" + doctype + "/" + docname; const user_room = (user) => "user:" + user; From 266b2797aaf2a5abe344c1d812784bba7413402a Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Sat, 6 Apr 2024 20:18:50 +0530 Subject: [PATCH 62/93] refactor: use Fetch API instead of superagent --- package.json | 1 - realtime/handlers.js | 21 ++--- realtime/middlewares/authenticate.js | 39 +++++---- realtime/utils.js | 12 --- yarn.lock | 121 ++------------------------- 5 files changed, 37 insertions(+), 157 deletions(-) diff --git a/package.json b/package.json index ea13fcb60e..fe345f61d9 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,6 @@ "socket.io": "^4.7.1", "socket.io-client": "^4.7.1", "sortablejs": "^1.15.0", - "superagent": "^8.0.0", "touch": "^3.1.0", "vue": "^3.3.0", "vue-router": "^4.1.5", diff --git a/realtime/handlers.js b/realtime/handlers.js index d8882ff60a..b9e0cad294 100644 --- a/realtime/handlers.js +++ b/realtime/handlers.js @@ -1,6 +1,3 @@ -const { frappe_request } = require("./utils"); -const log = console.log; - const WEBSITE_ROOM = "website"; const SITE_ROOM = "all"; @@ -14,19 +11,15 @@ function frappe_handlers(socket) { socket.has_permission = (doctype, name) => { return new Promise((resolve) => { - frappe_request("/api/method/frappe.realtime.has_permission", socket) - .type("form") - .query({ - doctype, - name, - }) - .end(function (err, res) { - if (res?.status == 200) { + socket + .frappe_request("/api/method/frappe.realtime.has_permission", { doctype, name }) + .then((res) => res.json()) + .then(({ message }) => { + if (message) { resolve(); - } else if (res.status != 403) { - log("Something went wrong", err, res); } - }); + }) + .catch((err) => console.log("Can't check permissions", err)); }); }; diff --git a/realtime/middlewares/authenticate.js b/realtime/middlewares/authenticate.js index 78e5dab3cf..2447394af6 100644 --- a/realtime/middlewares/authenticate.js +++ b/realtime/middlewares/authenticate.js @@ -1,8 +1,6 @@ const cookie = require("cookie"); -const request = require("superagent"); -const { get_url } = require("../utils"); - const { get_conf } = require("../../node_utils"); +const { get_url } = require("../utils"); const conf = get_conf(); function authenticate_with_frappe(socket, next) { @@ -30,22 +28,35 @@ function authenticate_with_frappe(socket, next) { next(new Error("No authentication method used. Use cookie or authorization header.")); return; } + socket.sid = cookies.sid; + socket.authorization_header = authorization_header; - let auth_req = request.get(get_url(socket, "/api/method/frappe.realtime.get_user_info")); - if (cookies.sid) { - auth_req = auth_req.query({ sid: cookies.sid }); - } else { - auth_req = auth_req.set("Authorization", authorization_header); - } + socket.frappe_request = (path, args = {}, opts = {}) => { + let query_args = new URLSearchParams(args); + if (query_args.toString()) { + path = path + "?" + query_args.toString(); + } - auth_req - .type("form") - .then(({ body: { message } }) => { + let headers = {}; + if (socket.sid) { + headers["Cookie"] = `sid=${socket.sid}`; + } else if (socket.authorization_header) { + headers["Authorization"] = socket.authorization_header; + } + + return fetch(get_url(socket, path), { + ...opts, + headers, + }); + }; + + socket + .frappe_request("/api/method/frappe.realtime.get_user_info") + .then((res) => res.json()) + .then(({ message }) => { socket.user = message.user; socket.user_type = message.user_type; socket.installed_apps = message.installed_apps; - socket.sid = cookies.sid; - socket.authorization_header = authorization_header; next(); }) .catch((e) => { diff --git a/realtime/utils.js b/realtime/utils.js index 04a2470e5e..89bb00c98e 100644 --- a/realtime/utils.js +++ b/realtime/utils.js @@ -1,6 +1,5 @@ const { get_conf } = require("../node_utils"); const conf = get_conf(); -const request = require("superagent"); function get_url(socket, path) { if (!path) { @@ -17,17 +16,6 @@ function get_url(socket, path) { return url + path; } -// Authenticates a partial request created using superagent -function frappe_request(path, socket) { - const partial_req = request.get(get_url(socket, path)); - if (socket.sid) { - return partial_req.query({ sid: socket.sid }); - } else if (socket.authorization_header) { - return partial_req.set("Authorization", socket.authorization_header); - } -} - module.exports = { get_url, - frappe_request, }; diff --git a/yarn.lock b/yarn.lock index ad3a554b19..fdc5e8a5b4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -449,7 +449,7 @@ array-buffer-byte-length@^1.0.0: call-bind "^1.0.2" is-array-buffer "^3.0.1" -asap@^2.0.0, asap@~2.0.3: +asap@~2.0.3: version "2.0.6" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== @@ -459,11 +459,6 @@ assert-never@^1.2.1: resolved "https://registry.yarnpkg.com/assert-never/-/assert-never-1.2.1.tgz#11f0e363bf146205fb08193b5c7b90f4d1cf44fe" integrity sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw== -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - at-least-node@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" @@ -705,13 +700,6 @@ colord@^2.9.1: resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== -combined-stream@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - commander@^7.2.0: version "7.2.0" resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" @@ -722,11 +710,6 @@ commander@^9.0.0: resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== -component-emitter@^1.3.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.1.tgz#ef1d5796f7d93f135ee6fb684340b26403c97d17" - integrity sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ== - concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" @@ -752,11 +735,6 @@ cookie@^0.4.0, cookie@~0.4.1: resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== -cookiejar@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.4.tgz#ee669c1fea2cf42dc31585469d193fef0d65771b" - integrity sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw== - copy-anything@^2.0.1: version "2.0.6" resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.6.tgz#092454ea9584a7b7ad5573062b2a87f5900fc480" @@ -989,7 +967,7 @@ debug@^3.2.6: dependencies: ms "^2.1.1" -debug@^4.3.2, debug@^4.3.4, debug@~4.3.1, debug@~4.3.2: +debug@^4.3.2, debug@~4.3.1, debug@~4.3.2: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== @@ -1062,19 +1040,6 @@ define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: has-property-descriptors "^1.0.0" object-keys "^1.1.1" -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -dezalgo@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.4.tgz#751235260469084c132157dfa857f386d4c33d81" - integrity sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig== - dependencies: - asap "^2.0.0" - wrappy "1" - doctypes@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" @@ -1408,11 +1373,6 @@ fast-glob@^3.2.5: merge2 "^1.3.0" micromatch "^4.0.4" -fast-safe-stringify@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" - integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== - fastparse@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" @@ -1454,25 +1414,6 @@ for-each@^0.3.3: dependencies: is-callable "^1.1.3" -form-data@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" - integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -formidable@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/formidable/-/formidable-2.1.2.tgz#fa973a2bec150e4ce7cac15589d7a25fc30ebd89" - integrity sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g== - dependencies: - dezalgo "^1.0.4" - hexoid "^1.0.0" - once "^1.4.0" - qs "^6.11.0" - fraction.js@^4.3.6: version "4.3.7" resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" @@ -1673,11 +1614,6 @@ hasown@^2.0.0: dependencies: function-bind "^1.1.2" -hexoid@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/hexoid/-/hexoid-1.0.0.tgz#ad10c6573fb907de23d9ec63a711267d9dc9bc18" - integrity sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g== - highlight.js@^10.4.1: version "10.7.3" resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531" @@ -2122,13 +2058,6 @@ lru-cache@^4.1.2: pseudomap "^1.0.2" yallist "^2.1.2" -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - magic-string@^0.30.5: version "0.30.5" resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.5.tgz#1994d980bd1c8835dc6e78db7cbd4ae4f24746f9" @@ -2170,11 +2099,6 @@ merge2@^1.3.0: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -methods@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== - micromatch@^4.0.4: version "4.0.5" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" @@ -2188,18 +2112,13 @@ mime-db@1.52.0: resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== -mime-types@^2.1.12, mime-types@~2.1.34: +mime-types@~2.1.34: version "2.1.35" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" -mime@2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" - integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== - mime@^1.4.1: version "1.6.0" resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" @@ -2345,7 +2264,7 @@ object.assign@^4.1.4: has-symbols "^1.0.3" object-keys "^1.1.1" -once@^1.3.0, once@^1.4.0: +once@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== @@ -2872,13 +2791,6 @@ pug@^3.0.1: pug-runtime "^3.0.1" pug-strip-comments "^2.0.0" -qs@^6.11.0: - version "6.11.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" - integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== - dependencies: - side-channel "^1.0.4" - queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -3077,13 +2989,6 @@ semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.8: - version "7.5.4" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" - integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== - dependencies: - lru-cache "^6.0.0" - set-function-length@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.1.1.tgz#4bc39fafb0307224a33e106a7d35ca1218d659ed" @@ -3293,22 +3198,6 @@ stylus@^0.x: sax "~1.3.0" source-map "^0.7.3" -superagent@^8.0.0: - version "8.1.2" - resolved "https://registry.yarnpkg.com/superagent/-/superagent-8.1.2.tgz#03cb7da3ec8b32472c9d20f6c2a57c7f3765f30b" - integrity sha512-6WTxW1EB6yCxV5VFOIPQruWGHqc3yI7hEmZK6h+pyk69Lk/Ut7rLUY6W/ONF2MjBuGjvmMiIpsrVJ2vjrHlslA== - dependencies: - component-emitter "^1.3.0" - cookiejar "^2.1.4" - debug "^4.3.4" - fast-safe-stringify "^2.1.1" - form-data "^4.0.0" - formidable "^2.1.2" - methods "^1.1.2" - mime "2.6.0" - qs "^6.11.0" - semver "^7.3.8" - supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" @@ -3569,7 +3458,7 @@ y18n@^5.0.5: resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== -yallist@4.0.0, yallist@^4.0.0: +yallist@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== From 027682fcc9510cdde40a67c26c52b97a3f0bb128 Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Sat, 6 Apr 2024 20:21:14 +0200 Subject: [PATCH 63/93] feat: link to attribution page in about modal --- frappe/public/js/frappe/ui/toolbar/about.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/frappe/public/js/frappe/ui/toolbar/about.js b/frappe/public/js/frappe/ui/toolbar/about.js index aa1cac68a6..9a52f45a74 100644 --- a/frappe/public/js/frappe/ui/toolbar/about.js +++ b/frappe/public/js/frappe/ui/toolbar/about.js @@ -24,6 +24,13 @@ frappe.ui.misc.about = function () {

${__("Installed Apps")}

${__("Loading versions...")}
+

+ + + ${__("Dependencies & Licenses")} + + +


${__("© Frappe Technologies Pvt. Ltd. and contributors")}

`, From 43a991ecc59c2afd6e90d83f5d48667f96d90b03 Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Sat, 6 Apr 2024 20:23:56 +0200 Subject: [PATCH 64/93] fix: limit attribution page to system users --- frappe/www/attribution.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frappe/www/attribution.py b/frappe/www/attribution.py index cf7e97470f..65c4cdedca 100644 --- a/frappe/www/attribution.py +++ b/frappe/www/attribution.py @@ -6,11 +6,12 @@ import tomllib import frappe from frappe import _ +from frappe.permissions import is_system_user def get_context(context): - if frappe.session.user == "Guest": - frappe.throw(_("You need to be logged in to access this page."), frappe.PermissionError) + if not is_system_user(): + frappe.throw(_("You need to be a system user to access this page."), frappe.PermissionError) apps = [] for app in frappe.get_installed_apps(): From adcb9ef72a19944929f3b30ecddde2973bd3b955 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Sun, 7 Apr 2024 11:29:41 +0530 Subject: [PATCH 65/93] chore: Drop API tests These are already tested with far more coverage in server side tests. --- cypress/integration/api.js | 44 -------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 cypress/integration/api.js diff --git a/cypress/integration/api.js b/cypress/integration/api.js deleted file mode 100644 index 420cea25fd..0000000000 --- a/cypress/integration/api.js +++ /dev/null @@ -1,44 +0,0 @@ -context("API Resources", () => { - before(() => { - cy.visit("/login"); - cy.login(); - cy.visit("/app/website"); - }); - - it("Creates two Comments", () => { - cy.insert_doc("Comment", { comment_type: "Comment", content: "hello" }); - cy.insert_doc("Comment", { comment_type: "Comment", content: "world" }); - }); - - it("Lists the Comments", () => { - cy.get_list("Comment") - .its("data") - .then((data) => expect(data.length).to.be.at.least(2)); - - cy.get_list("Comment", ["name", "content"], [["content", "=", "hello"]]).then((body) => { - expect(body).to.have.property("data"); - expect(body.data).to.have.lengthOf(1); - expect(body.data[0]).to.have.property("content"); - expect(body.data[0]).to.have.property("name"); - }); - }); - - it("Gets each Comment", () => { - cy.get_list("Comment").then((body) => - body.data.forEach((comment) => { - cy.get_doc("Comment", comment.name); - }) - ); - }); - - it("Removes the Comments", () => { - cy.get_list("Comment").then((body) => { - let comment_names = []; - body.data.map((comment) => comment_names.push(comment.name)); - comment_names = [...new Set(comment_names)]; // remove duplicates - comment_names.forEach((comment_name) => { - cy.remove_doc("Comment", comment_name); - }); - }); - }); -}); From 9524413eff6ad068b0a819ac5b7809305b94ac5b Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 12:20:34 +0530 Subject: [PATCH 66/93] fix: limit select user to desk users by default (#25843) --- frappe/core/doctype/user/user.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/core/doctype/user/user.json b/frappe/core/doctype/user/user.json index 5af6f15b40..206a9ba248 100644 --- a/frappe/core/doctype/user/user.json +++ b/frappe/core/doctype/user/user.json @@ -814,7 +814,7 @@ "write": 1 }, { - "role": "All", + "role": "Desk User", "select": 1 } ], @@ -827,4 +827,4 @@ "states": [], "title_field": "full_name", "track_changes": 1 -} \ No newline at end of file +} From 551c8d5ef454fdf3431d9fcc09408587a014a7b8 Mon Sep 17 00:00:00 2001 From: Richard Case <110036763+casesolved-co-uk@users.noreply.github.com> Date: Mon, 8 Apr 2024 07:51:41 +0100 Subject: [PATCH 67/93] fix: log report errors to aid debugging (#25738) --- frappe/desk/query_report.py | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py index 5197df9178..3e624056a2 100644 --- a/frappe/desk/query_report.py +++ b/frappe/desk/query_report.py @@ -206,18 +206,22 @@ def run( if sbool(are_default_filters) and report.custom_filters: filters = report.custom_filters - if report.prepared_report and not sbool(ignore_prepared_report) and not custom_columns: - if filters: - if isinstance(filters, str): - filters = json.loads(filters) + try: + if report.prepared_report and not sbool(ignore_prepared_report) and not custom_columns: + if filters: + if isinstance(filters, str): + filters = json.loads(filters) - dn = filters.pop("prepared_report_name", None) + dn = filters.pop("prepared_report_name", None) + else: + dn = "" + result = get_prepared_report_result(report, filters, dn, user) else: - dn = "" - result = get_prepared_report_result(report, filters, dn, user) - else: - result = generate_report_result(report, filters, user, custom_columns, is_tree, parent_field) - add_data_to_monitor(report=report.reference_report or report.name) + result = generate_report_result(report, filters, user, custom_columns, is_tree, parent_field) + add_data_to_monitor(report=report.reference_report or report.name) + except Exception: + frappe.log_error("Report Error") + raise result["add_total_row"] = report.add_total_row and not result.get("skip_total_row", False) From da682ae44c9636680ea81e23b7d5ece7407176ee Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 12:59:23 +0530 Subject: [PATCH 68/93] fix: type error in workflow (#25847) if state is null, we can't get roles for it. --- frappe/public/js/frappe/model/workflow.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/frappe/public/js/frappe/model/workflow.js b/frappe/public/js/frappe/model/workflow.js index 359b9ba310..d7a37b0f82 100644 --- a/frappe/public/js/frappe/model/workflow.js +++ b/frappe/public/js/frappe/model/workflow.js @@ -59,10 +59,9 @@ frappe.workflow = { var state = doc[state_fieldname] || frappe.workflow.get_default_state(doctype, doc.docstatus); + if (!state) return false; - let allow_edit_roles = state - ? frappe.workflow.get_document_state_roles(doctype, state) - : null; + let allow_edit_roles = frappe.workflow.get_document_state_roles(doctype, state); let has_common_role = frappe.user_roles.some((role) => allow_edit_roles.includes(role) ); From c77332e07e9bf62711912aa32bb529a6f21e1f09 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Mon, 8 Apr 2024 13:08:41 +0530 Subject: [PATCH 69/93] chore: update POT file (#25838) --- frappe/locale/main.pot | 1202 +++++++++++++++++++--------------------- 1 file changed, 584 insertions(+), 618 deletions(-) diff --git a/frappe/locale/main.pot b/frappe/locale/main.pot index ab828de4b9..25b5877c59 100644 --- a/frappe/locale/main.pot +++ b/frappe/locale/main.pot @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Frappe Framework VERSION\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2024-03-24 09:33+0000\n" -"PO-Revision-Date: 2024-03-24 09:33+0000\n" +"POT-Creation-Date: 2024-04-07 09:33+0000\n" +"PO-Revision-Date: 2024-04-07 09:33+0000\n" "Last-Translator: developers@frappe.io\n" "Language-Team: developers@frappe.io\n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgctxt "About Us Settings" msgid "\"Team Members\" or \"Management\"" msgstr "" -#: public/js/frappe/form/form.js:1063 +#: public/js/frappe/form/form.js:1027 msgid "\"amended_from\" field must be present to do an amendment." msgstr "" @@ -53,126 +53,6 @@ msgstr "" msgid "\"{0}\" is not a valid Google Sheets URL" msgstr "" -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "# ###,##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "# ###,##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "# ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "# ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#'###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#'###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#, ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#, ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,###.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,###.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,##,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,##,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#.###,##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#.###,##" -msgstr "" - #: public/js/frappe/ui/toolbar/tag_utils.js:21 #: public/js/frappe/ui/toolbar/tag_utils.js:22 msgid "#{0}" @@ -192,7 +72,7 @@ msgstr "" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: core/doctype/doctype/doctype.py:1303 +#: core/doctype/doctype/doctype.py:1302 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "" @@ -208,11 +88,11 @@ msgstr "" msgid "'Recipients' not specified" msgstr "" -#: utils/__init__.py:242 +#: utils/__init__.py:241 msgid "'{0}' is not a valid URL" msgstr "" -#: core/doctype/doctype/doctype.py:1297 +#: core/doctype/doctype/doctype.py:1296 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "" @@ -261,7 +141,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: public/js/frappe/views/reports/query_report.js:881 +#: public/js/frappe/views/reports/query_report.js:882 msgid "1 Report" msgstr "" @@ -269,7 +149,7 @@ msgstr "" msgid "1 comment" msgstr "" -#: tests/test_utils.py:676 +#: tests/test_utils.py:677 msgid "1 day ago" msgstr "" @@ -277,15 +157,15 @@ msgstr "" msgid "1 hour" msgstr "" -#: public/js/frappe/utils/pretty_date.js:52 tests/test_utils.py:674 +#: public/js/frappe/utils/pretty_date.js:52 tests/test_utils.py:675 msgid "1 hour ago" msgstr "" -#: public/js/frappe/utils/pretty_date.js:48 tests/test_utils.py:672 +#: public/js/frappe/utils/pretty_date.js:48 tests/test_utils.py:673 msgid "1 minute ago" msgstr "" -#: public/js/frappe/utils/pretty_date.js:66 tests/test_utils.py:680 +#: public/js/frappe/utils/pretty_date.js:66 tests/test_utils.py:681 msgid "1 month ago" msgstr "" @@ -293,35 +173,35 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: tests/test_utils.py:671 +#: tests/test_utils.py:672 msgid "1 second ago" msgstr "" -#: public/js/frappe/utils/pretty_date.js:62 tests/test_utils.py:678 +#: public/js/frappe/utils/pretty_date.js:62 tests/test_utils.py:679 msgid "1 week ago" msgstr "" -#: public/js/frappe/utils/pretty_date.js:70 tests/test_utils.py:682 +#: public/js/frappe/utils/pretty_date.js:70 tests/test_utils.py:683 msgid "1 year ago" msgstr "" -#: tests/test_utils.py:675 +#: tests/test_utils.py:676 msgid "2 hours ago" msgstr "" -#: tests/test_utils.py:681 +#: tests/test_utils.py:682 msgid "2 months ago" msgstr "" -#: tests/test_utils.py:679 +#: tests/test_utils.py:680 msgid "2 weeks ago" msgstr "" -#: tests/test_utils.py:683 +#: tests/test_utils.py:684 msgid "2 years ago" msgstr "" -#: tests/test_utils.py:673 +#: tests/test_utils.py:674 msgid "3 minutes ago" msgstr "" @@ -337,7 +217,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: tests/test_utils.py:677 +#: tests/test_utils.py:678 msgid "5 days ago" msgstr "" @@ -731,7 +611,7 @@ msgstr "" msgid "A DocType (Document Type) is used to insert forms in ERPNext. Forms such as Customer, Orders, and Invoices are Doctypes in the backend. You can also create new DocTypes to create new forms in ERPNext as per your business needs." msgstr "" -#: core/doctype/doctype/doctype.py:1015 +#: core/doctype/doctype/doctype.py:1014 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -1098,7 +978,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: model/document.py:1678 +#: model/document.py:1686 msgid "Action Failed" msgstr "" @@ -1146,7 +1026,7 @@ msgstr "" #: public/js/frappe/views/reports/query_report.js:190 #: public/js/frappe/views/reports/query_report.js:203 #: public/js/frappe/views/reports/query_report.js:213 -#: public/js/frappe/views/reports/query_report.js:775 +#: public/js/frappe/views/reports/query_report.js:776 msgid "Actions" msgstr "" @@ -1251,7 +1131,7 @@ msgstr "" msgid "Add" msgstr "" -#: public/js/frappe/list/list_view.js:265 +#: public/js/frappe/list/list_view.js:266 msgctxt "Primary action in list view" msgid "Add" msgstr "" @@ -1268,7 +1148,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: public/js/frappe/views/communication.js:578 +#: public/js/frappe/views/communication.js:586 #: public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1305,8 +1185,8 @@ msgid "Add Child" msgstr "" #: public/js/frappe/views/kanban/kanban_board.html:4 -#: public/js/frappe/views/reports/query_report.js:1681 -#: public/js/frappe/views/reports/query_report.js:1684 +#: public/js/frappe/views/reports/query_report.js:1682 +#: public/js/frappe/views/reports/query_report.js:1685 #: public/js/frappe/views/reports/report_view.js:324 #: public/js/frappe/views/reports/report_view.js:349 msgid "Add Column" @@ -1409,12 +1289,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: public/js/frappe/list/list_view.js:1904 +#: public/js/frappe/list/list_view.js:1899 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: public/js/frappe/views/communication.js:410 +#: public/js/frappe/views/communication.js:418 msgid "Add Template" msgstr "" @@ -1461,19 +1341,19 @@ msgstr "" msgid "Add a new section" msgstr "" -#: public/js/frappe/form/form.js:192 +#: public/js/frappe/form/form.js:191 msgid "Add a row above the current row" msgstr "" -#: public/js/frappe/form/form.js:204 +#: public/js/frappe/form/form.js:203 msgid "Add a row at the bottom" msgstr "" -#: public/js/frappe/form/form.js:200 +#: public/js/frappe/form/form.js:199 msgid "Add a row at the top" msgstr "" -#: public/js/frappe/form/form.js:196 +#: public/js/frappe/form/form.js:195 msgid "Add a row below the current row" msgstr "" @@ -1764,7 +1644,7 @@ msgctxt "Number Card" msgid "Aggregate Function Based On" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:400 +#: desk/doctype/dashboard_chart/dashboard_chart.py:399 msgid "Aggregate Function field is required to create a dashboard chart" msgstr "" @@ -1856,7 +1736,7 @@ msgstr "" msgid "All Records" msgstr "" -#: public/js/frappe/form/form.js:2173 +#: public/js/frappe/form/form.js:2139 msgid "All Submissions" msgstr "" @@ -2245,7 +2125,7 @@ msgctxt "User Type" msgid "Allowed Modules" msgstr "" -#: public/js/frappe/form/form.js:1229 +#: public/js/frappe/form/form.js:1193 msgid "Allowing DocType, DocType. Be careful!" msgstr "" @@ -2359,7 +2239,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:297 +#: public/js/frappe/ui/toolbar/toolbar.js:322 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2383,6 +2263,18 @@ msgstr "" msgid "Ancestors Of" msgstr "" +#. Label of a Text Editor field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Announcement Widget" +msgstr "" + +#. Label of a Section Break field in DocType 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "Announcements" +msgstr "" + #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: core/doctype/scheduled_job_type/scheduled_job_type.json msgctxt "Scheduled Job Type" @@ -2459,7 +2351,7 @@ msgctxt "Google Settings" msgid "App ID" msgstr "" -#: public/js/frappe/ui/toolbar/navbar.html:8 +#: public/js/frappe/ui/toolbar/navbar.html:9 msgid "App Logo" msgstr "" @@ -2501,7 +2393,7 @@ msgstr "" msgid "App not found for module: {0}" msgstr "" -#: __init__.py:1784 +#: __init__.py:1789 msgid "App {0} is not installed" msgstr "" @@ -2580,7 +2472,7 @@ msgctxt "Property Setter" msgid "Applied On" msgstr "" -#: public/js/frappe/list/list_view.js:1889 +#: public/js/frappe/list/list_view.js:1884 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2686,7 +2578,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: public/js/frappe/list/list_view.js:1868 +#: public/js/frappe/list/list_view.js:1863 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2706,7 +2598,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: public/js/frappe/views/reports/query_report.js:895 +#: public/js/frappe/views/reports/query_report.js:896 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2785,7 +2677,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: public/js/frappe/list/list_view.js:1850 +#: public/js/frappe/list/list_view.js:1845 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2846,7 +2738,7 @@ msgstr "" #: model/meta.py:55 public/js/frappe/form/templates/form_sidebar.html:48 #: public/js/frappe/list/list_sidebar_group_by.js:71 -#: public/js/frappe/model/meta.js:207 public/js/frappe/model/model.js:126 +#: public/js/frappe/model/meta.js:207 public/js/frappe/model/model.js:136 #: public/js/frappe/views/interaction.js:82 msgid "Assigned To" msgstr "" @@ -3148,6 +3040,10 @@ msgstr "" msgid "Attempting to launch QZ Tray..." msgstr "" +#: www/attribution.html:9 +msgid "Attribution" +msgstr "" + #. Label of a Table field in DocType 'Newsletter' #: email/doctype/newsletter/newsletter.json msgctxt "Newsletter" @@ -3283,6 +3179,14 @@ msgctxt "Integration Request" msgid "Authorized" msgstr "" +#: www/attribution.html:20 +msgid "Authors" +msgstr "" + +#: www/attribution.html:36 +msgid "Authors / Maintainers" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Energy Point Log' #: social/doctype/energy_point_log/energy_point_log.json msgctxt "Energy Point Log" @@ -3658,7 +3562,7 @@ msgctxt "Web Page Block" msgid "Background Image" msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:153 +#: public/js/frappe/ui/toolbar/toolbar.js:178 msgid "Background Jobs" msgstr "" @@ -3750,7 +3654,7 @@ msgctxt "System Settings" msgid "Backups" msgstr "" -#: core/doctype/scheduled_job_type/scheduled_job_type.py:63 +#: core/doctype/scheduled_job_type/scheduled_job_type.py:64 msgid "Bad Cron Expression" msgstr "" @@ -4291,6 +4195,10 @@ msgstr "" msgid "Build {0}" msgstr "" +#: templates/includes/footer/footer_powered.html:1 +msgid "Built on {0}" +msgstr "" + #. Label of a Check field in DocType 'Role' #: core/doctype/role/role.json msgctxt "Role" @@ -4667,7 +4575,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: core/doctype/doctype/doctype.py:1112 +#: core/doctype/doctype/doctype.py:1111 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -4687,7 +4595,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: public/js/frappe/list/list_view.js:1959 +#: public/js/frappe/list/list_view.js:1954 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -4728,11 +4636,11 @@ msgctxt "User Document Type" msgid "Cancel" msgstr "" -#: public/js/frappe/form/form.js:998 +#: public/js/frappe/form/form.js:962 msgid "Cancel All" msgstr "" -#: public/js/frappe/form/form.js:985 +#: public/js/frappe/form/form.js:949 msgid "Cancel All Documents" msgstr "" @@ -4740,7 +4648,7 @@ msgstr "" msgid "Cancel Scheduling" msgstr "" -#: public/js/frappe/list/list_view.js:1964 +#: public/js/frappe/list/list_view.js:1959 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -4809,7 +4717,7 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: model/base_document.py:1059 +#: model/base_document.py:1062 msgid "Cannot Update After Submit" msgstr "" @@ -4829,11 +4737,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: model/document.py:848 +#: model/document.py:852 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: model/document.py:862 +#: model/document.py:866 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -4845,7 +4753,7 @@ msgstr "" msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: core/doctype/doctype/doctype.py:1102 +#: core/doctype/doctype/doctype.py:1101 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -4909,15 +4817,15 @@ msgstr "" msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:378 +#: desk/doctype/dashboard_chart/dashboard_chart.py:377 msgid "Cannot edit Standard charts" msgstr "" -#: core/doctype/report/report.py:72 +#: core/doctype/report/report.py:69 msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: model/document.py:868 +#: model/document.py:872 msgid "Cannot edit cancelled document" msgstr "" @@ -4945,7 +4853,7 @@ msgstr "" msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: model/document.py:936 +#: model/document.py:940 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4953,7 +4861,7 @@ msgstr "" msgid "Cannot map because following condition fails:" msgstr "" -#: core/doctype/data_import/importer.py:921 +#: core/doctype/data_import/importer.py:933 msgid "Cannot match column {0} with any field" msgstr "" @@ -4990,11 +4898,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: model/db_query.py:1103 +#: model/db_query.py:1106 msgid "Cannot use sub-query in order by" msgstr "" -#: model/db_query.py:1121 +#: model/db_query.py:1124 msgid "Cannot use {0} in order/group by" msgstr "" @@ -5064,7 +4972,7 @@ msgctxt "Help Category" msgid "Category Name" msgstr "" -#: utils/data.py:1469 +#: utils/data.py:1472 msgid "Cent" msgstr "" @@ -5333,7 +5241,7 @@ msgctxt "Form Tour Step" msgid "Child Doctype" msgstr "" -#: core/doctype/doctype/doctype.py:1584 +#: core/doctype/doctype/doctype.py:1583 msgid "Child Table {0} for field {1}" msgstr "" @@ -5387,7 +5295,7 @@ msgstr "" msgid "Clear" msgstr "" -#: public/js/frappe/views/communication.js:415 +#: public/js/frappe/views/communication.js:423 msgid "Clear & Add Template" msgstr "" @@ -5395,7 +5303,7 @@ msgstr "" msgid "Clear & Add template" msgstr "" -#: public/js/frappe/list/list_view.js:1865 +#: public/js/frappe/list/list_view.js:1860 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -5422,7 +5330,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: public/js/frappe/views/communication.js:416 +#: public/js/frappe/views/communication.js:424 msgid "Clear the email message and add the template" msgstr "" @@ -5495,7 +5403,7 @@ msgstr "" msgid "Click to Set Filters" msgstr "" -#: public/js/frappe/list/list_view.js:678 +#: public/js/frappe/list/list_view.js:679 msgid "Click to sort by {0}" msgstr "" @@ -5704,7 +5612,7 @@ msgid "Code challenge method" msgstr "" #: public/js/frappe/form/form_tour.js:270 -#: public/js/frappe/widgets/base_widget.js:157 +#: public/js/frappe/widgets/base_widget.js:159 msgid "Collapse" msgstr "" @@ -5713,7 +5621,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1964 +#: public/js/frappe/views/reports/query_report.js:1965 #: public/js/frappe/views/treeview.js:121 msgid "Collapse All" msgstr "" @@ -5755,7 +5663,7 @@ msgid "Collapsible Depends On (JS)" msgstr "" #. Name of a DocType -#: public/js/frappe/views/reports/query_report.js:1154 +#: public/js/frappe/views/reports/query_report.js:1155 #: public/js/frappe/widgets/widget_dialog.js:544 #: public/js/frappe/widgets/widget_dialog.js:696 #: website/doctype/color/color.json @@ -6034,7 +5942,7 @@ msgid "Comment limit per hour" msgstr "" #: model/meta.py:54 public/js/frappe/form/controls/comment.js:9 -#: public/js/frappe/model/meta.js:206 public/js/frappe/model/model.js:125 +#: public/js/frappe/model/meta.js:206 public/js/frappe/model/model.js:135 #: website/doctype/web_form/templates/web_form.html:119 msgid "Comments" msgstr "" @@ -6725,11 +6633,11 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: model/document.py:932 +#: model/document.py:936 msgid "Could not find {0}" msgstr "" -#: core/doctype/data_import/importer.py:883 +#: core/doctype/data_import/importer.py:895 msgid "Could not map column {0} to field {1}" msgstr "" @@ -6806,7 +6714,7 @@ msgctxt "System Settings" msgid "Country" msgstr "" -#: utils/__init__.py:116 +#: utils/__init__.py:115 msgid "Country Code Required" msgstr "" @@ -6834,7 +6742,7 @@ msgstr "" #: public/js/frappe/form/reminders.js:49 #: public/js/frappe/views/file/file_view.js:112 #: public/js/frappe/views/interaction.js:18 -#: public/js/frappe/views/reports/query_report.js:1186 +#: public/js/frappe/views/reports/query_report.js:1187 #: public/js/frappe/views/workspace/workspace.js:1228 #: workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -6873,7 +6781,7 @@ msgid "Create Card" msgstr "" #: public/js/frappe/views/reports/query_report.js:284 -#: public/js/frappe/views/reports/query_report.js:1113 +#: public/js/frappe/views/reports/query_report.js:1114 msgid "Create Chart" msgstr "" @@ -6910,7 +6818,7 @@ msgstr "" msgid "Create New" msgstr "" -#: public/js/frappe/list/list_view.js:485 +#: public/js/frappe/list/list_view.js:486 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" @@ -6950,7 +6858,7 @@ msgstr "" #: public/js/frappe/form/controls/link.js:292 #: public/js/frappe/form/controls/link.js:294 #: public/js/frappe/form/link_selector.js:139 -#: public/js/frappe/list/list_view.js:474 +#: public/js/frappe/list/list_view.js:475 #: public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "" @@ -6972,7 +6880,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: public/js/frappe/list/list_view.js:477 +#: public/js/frappe/list/list_view.js:478 msgid "Create your first {0}" msgstr "" @@ -7003,7 +6911,7 @@ msgid "Created At" msgstr "" #: model/meta.py:51 public/js/frappe/list/list_sidebar_group_by.js:73 -#: public/js/frappe/model/meta.js:203 public/js/frappe/model/model.js:113 +#: public/js/frappe/model/meta.js:203 public/js/frappe/model/model.js:123 msgid "Created By" msgstr "" @@ -7013,7 +6921,7 @@ msgstr "" #: desk/doctype/dashboard_chart/dashboard_chart.js:241 #: email/doctype/notification/notification.js:30 model/meta.py:46 -#: public/js/frappe/model/meta.js:198 public/js/frappe/model/model.js:115 +#: public/js/frappe/model/meta.js:198 public/js/frappe/model/model.js:125 #: public/js/frappe/views/dashboard/dashboard_view.js:478 msgid "Created On" msgstr "" @@ -7060,7 +6968,7 @@ msgctxt "Server Script" msgid "Cron Format" msgstr "" -#: core/doctype/scheduled_job_type/scheduled_job_type.py:57 +#: core/doctype/scheduled_job_type/scheduled_job_type.py:58 msgid "Cron format is required for job types with Cron frequency." msgstr "" @@ -7519,7 +7427,7 @@ msgstr "" msgid "Customize" msgstr "" -#: public/js/frappe/list/list_view.js:1710 +#: public/js/frappe/list/list_view.js:1705 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -8365,11 +8273,11 @@ msgctxt "User" msgid "Default Workspace" msgstr "" -#: core/doctype/doctype/doctype.py:1325 +#: core/doctype/doctype/doctype.py:1324 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: core/doctype/doctype/doctype.py:1338 +#: core/doctype/doctype/doctype.py:1337 msgid "Default value for {0} must be in the list of options." msgstr "" @@ -8423,7 +8331,7 @@ msgstr "" #: core/doctype/user_permission/user_permission_list.js:189 #: public/js/frappe/form/footer/form_timeline.js:613 #: public/js/frappe/form/grid.js:63 public/js/frappe/form/toolbar.js:423 -#: public/js/frappe/views/reports/report_view.js:1642 +#: public/js/frappe/views/reports/report_view.js:1643 #: public/js/frappe/views/treeview.js:313 #: public/js/frappe/views/workspace/workspace.js:834 #: templates/discussions/reply_card.html:35 @@ -8431,7 +8339,7 @@ msgstr "" msgid "Delete" msgstr "" -#: public/js/frappe/list/list_view.js:1927 +#: public/js/frappe/list/list_view.js:1922 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -8474,7 +8382,7 @@ msgstr "" msgid "Delete Workspace" msgstr "" -#: public/js/frappe/views/reports/query_report.js:862 +#: public/js/frappe/views/reports/query_report.js:863 msgid "Delete and Generate New" msgstr "" @@ -8486,12 +8394,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: public/js/frappe/list/list_view.js:1932 +#: public/js/frappe/list/list_view.js:1927 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: public/js/frappe/list/list_view.js:1938 +#: public/js/frappe/list/list_view.js:1933 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -8553,7 +8461,7 @@ msgstr "" msgid "Deleting {0} records..." msgstr "" -#: public/js/frappe/model/model.js:711 +#: public/js/frappe/model/model.js:721 msgid "Deleting {0}..." msgstr "" @@ -8594,12 +8502,20 @@ msgctxt "Contact" msgid "Department" msgstr "" +#: www/attribution.html:28 +msgid "Dependencies" +msgstr "" + #. Label of a Data field in DocType 'Workspace Link' #: desk/doctype/workspace_link/workspace_link.json msgctxt "Workspace Link" msgid "Dependencies" msgstr "" +#: public/js/frappe/ui/toolbar/about.js:8 +msgid "Dependencies & Licenses" +msgstr "" + #. Label of a Code field in DocType 'Custom Field' #: custom/doctype/custom_field/custom_field.json msgctxt "Custom Field" @@ -8621,7 +8537,7 @@ msgid "Descendants Of (inclusive)" msgstr "" #: desk/report/todo/todo.py:39 public/js/frappe/form/reminders.js:44 -#: public/js/frappe/widgets/widget_dialog.js:260 +#: public/js/frappe/widgets/widget_dialog.js:260 www/attribution.html:24 msgid "Description" msgstr "" @@ -8882,6 +8798,12 @@ msgctxt "Blog Post" msgid "Disable Comments" msgstr "" +#. Label of a Check field in DocType 'Contact Us Settings' +#: website/doctype/contact_us_settings/contact_us_settings.json +msgctxt "Contact Us Settings" +msgid "Disable Contact Us Page" +msgstr "" + #. Label of a Check field in DocType 'List View Settings' #: desk/doctype/list_view_settings/list_view_settings.json msgctxt "List View Settings" @@ -9114,7 +9036,7 @@ msgstr "" msgid "Do you still want to proceed?" msgstr "" -#: public/js/frappe/form/form.js:977 +#: public/js/frappe/form/form.js:941 msgid "Do you want to cancel all linked documents?" msgstr "" @@ -9259,7 +9181,7 @@ msgctxt "Workspace Shortcut" msgid "DocType" msgstr "" -#: core/doctype/doctype/doctype.py:1526 +#: core/doctype/doctype/doctype.py:1525 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -9323,11 +9245,11 @@ msgctxt "Workspace Shortcut" msgid "DocType View" msgstr "" -#: core/doctype/doctype/doctype.py:647 +#: core/doctype/doctype/doctype.py:648 msgid "DocType can not be merged" msgstr "" -#: core/doctype/doctype/doctype.py:641 +#: core/doctype/doctype/doctype.py:642 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -9370,7 +9292,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: core/doctype/doctype/doctype.py:1009 +#: core/doctype/doctype/doctype.py:1008 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -9388,7 +9310,7 @@ msgctxt "Document Follow" msgid "Doctype" msgstr "" -#: core/doctype/doctype/doctype.py:1003 +#: core/doctype/doctype/doctype.py:1002 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -9470,19 +9392,19 @@ msgctxt "Customize Form" msgid "Document Links" msgstr "" -#: core/doctype/doctype/doctype.py:1160 +#: core/doctype/doctype/doctype.py:1159 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: core/doctype/doctype/doctype.py:1180 +#: core/doctype/doctype/doctype.py:1179 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: core/doctype/doctype/doctype.py:1143 +#: core/doctype/doctype/doctype.py:1142 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: core/doctype/doctype/doctype.py:1149 +#: core/doctype/doctype/doctype.py:1148 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" @@ -9546,7 +9468,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: model/document.py:1540 +#: model/document.py:1548 msgid "Document Queued" msgstr "" @@ -9608,7 +9530,7 @@ msgid "Document States" msgstr "" #: model/meta.py:47 public/js/frappe/model/meta.js:199 -#: public/js/frappe/model/model.js:127 +#: public/js/frappe/model/model.js:137 msgid "Document Status" msgstr "" @@ -9793,19 +9715,19 @@ msgctxt "User Type" msgid "Document Types and Permissions" msgstr "" -#: core/doctype/submission_queue/submission_queue.py:163 model/document.py:1742 +#: core/doctype/submission_queue/submission_queue.py:163 model/document.py:1750 msgid "Document Unlocked" msgstr "" -#: public/js/frappe/list/list_view.js:1082 +#: public/js/frappe/list/list_view.js:1077 msgid "Document has been cancelled" msgstr "" -#: public/js/frappe/list/list_view.js:1081 +#: public/js/frappe/list/list_view.js:1076 msgid "Document has been submitted" msgstr "" -#: public/js/frappe/list/list_view.js:1080 +#: public/js/frappe/list/list_view.js:1075 msgid "Document is in draft state" msgstr "" @@ -9825,7 +9747,7 @@ msgstr "" msgid "Document renaming from {0} to {1} has been queued" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:387 +#: desk/doctype/dashboard_chart/dashboard_chart.py:386 msgid "Document type is required to create a dashboard chart" msgstr "" @@ -10004,7 +9926,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: public/js/frappe/views/reports/query_report.js:765 +#: public/js/frappe/views/reports/query_report.js:766 msgid "Download Report" msgstr "" @@ -10106,7 +10028,7 @@ msgstr "" msgid "Duplicate Workspace" msgstr "" -#: public/js/frappe/form/form.js:208 +#: public/js/frappe/form/form.js:207 msgid "Duplicate current row" msgstr "" @@ -10252,8 +10174,8 @@ msgstr "" #: public/js/frappe/form/templates/address_list.html:7 #: public/js/frappe/form/templates/contact_list.html:7 #: public/js/frappe/form/toolbar.js:672 -#: public/js/frappe/views/reports/query_report.js:813 -#: public/js/frappe/views/reports/query_report.js:1634 +#: public/js/frappe/views/reports/query_report.js:814 +#: public/js/frappe/views/reports/query_report.js:1635 #: public/js/frappe/views/workspace/workspace.js:459 #: public/js/frappe/views/workspace/workspace.js:813 #: public/js/frappe/widgets/base_widget.js:64 @@ -10266,7 +10188,7 @@ msgstr "" msgid "Edit" msgstr "" -#: public/js/frappe/list/list_view.js:2013 +#: public/js/frappe/list/list_view.js:2008 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -10302,7 +10224,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: public/js/frappe/list/list_view.js:1737 +#: public/js/frappe/list/list_view.js:1732 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -10872,7 +10794,7 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: public/js/frappe/views/communication.js:799 +#: public/js/frappe/views/communication.js:807 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -11400,7 +11322,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: public/js/frappe/views/communication.js:754 +#: public/js/frappe/views/communication.js:762 msgid "Enter Email Recipient(s)" msgstr "" @@ -11592,7 +11514,7 @@ msgstr "" msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" -#: model/document.py:818 +#: model/document.py:822 msgid "Error: Document has been modified after you have opened it" msgstr "" @@ -11784,7 +11706,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: public/js/frappe/views/reports/query_report.js:1978 +#: public/js/frappe/views/reports/query_report.js:1979 msgid "Execution Time: {0} sec" msgstr "" @@ -11794,7 +11716,7 @@ msgctxt "Print Settings" msgid "Executive" msgstr "" -#: public/js/frappe/widgets/base_widget.js:157 +#: public/js/frappe/widgets/base_widget.js:159 msgid "Expand" msgstr "" @@ -11803,7 +11725,7 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1964 +#: public/js/frappe/views/reports/query_report.js:1965 #: public/js/frappe/views/treeview.js:125 msgid "Expand All" msgstr "" @@ -11869,12 +11791,12 @@ msgstr "" #: core/doctype/recorder/recorder_list.js:37 #: public/js/frappe/data_import/data_exporter.js:91 #: public/js/frappe/data_import/data_exporter.js:242 -#: public/js/frappe/views/reports/query_report.js:1669 -#: public/js/frappe/views/reports/report_view.js:1549 +#: public/js/frappe/views/reports/query_report.js:1670 +#: public/js/frappe/views/reports/report_view.js:1550 msgid "Export" msgstr "" -#: public/js/frappe/list/list_view.js:2035 +#: public/js/frappe/list/list_view.js:2030 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -11895,7 +11817,7 @@ msgstr "" msgid "Export 1 record" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1560 +#: public/js/frappe/views/reports/report_view.js:1561 msgid "Export All {0} rows?" msgstr "" @@ -12219,7 +12141,7 @@ msgstr "" #: public/js/frappe/list/bulk_operations.js:297 #: public/js/frappe/list/list_view_permission_restrictions.html:3 #: public/js/frappe/views/reports/query_report.js:235 -#: public/js/frappe/views/reports/query_report.js:1723 +#: public/js/frappe/views/reports/query_report.js:1724 msgid "Field" msgstr "" @@ -12265,11 +12187,11 @@ msgctxt "Web Form List Column" msgid "Field" msgstr "" -#: core/doctype/doctype/doctype.py:416 +#: core/doctype/doctype/doctype.py:417 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: core/doctype/doctype/doctype.py:1475 +#: core/doctype/doctype/doctype.py:1474 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -12283,7 +12205,7 @@ msgctxt "Custom Field" msgid "Field Description" msgstr "" -#: core/doctype/doctype/doctype.py:1040 +#: core/doctype/doctype/doctype.py:1039 msgid "Field Missing" msgstr "" @@ -12339,7 +12261,7 @@ msgstr "" msgid "Field type cannot be changed for {0}" msgstr "" -#: database/database.py:838 +#: database/database.py:853 msgid "Field {0} does not exist on {1}" msgstr "" @@ -12347,7 +12269,7 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: public/js/frappe/form/form.js:1730 +#: public/js/frappe/form/form.js:1694 msgid "Field {0} not found." msgstr "" @@ -12398,11 +12320,11 @@ msgctxt "Webhook Data" msgid "Fieldname" msgstr "" -#: core/doctype/doctype/doctype.py:265 +#: core/doctype/doctype/doctype.py:266 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: core/doctype/doctype/doctype.py:1039 +#: core/doctype/doctype/doctype.py:1038 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" @@ -12426,11 +12348,11 @@ msgstr "" msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: core/doctype/doctype/doctype.py:1846 +#: core/doctype/doctype/doctype.py:1845 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: core/doctype/doctype/doctype.py:495 public/js/form_builder/utils.js:302 +#: core/doctype/doctype/doctype.py:496 public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -12493,6 +12415,10 @@ msgstr "" msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" +#: model/db_query.py:138 +msgid "Fields must be a list or tuple when as_list is enabled" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: custom/doctype/customize_form/customize_form.json msgctxt "Customize Form" @@ -12717,11 +12643,11 @@ msgctxt "Prepared Report" msgid "Filter Values" msgstr "" -#: utils/data.py:2019 +#: utils/data.py:2022 msgid "Filter must be a tuple or list (in a list)" msgstr "" -#: utils/data.py:2027 +#: utils/data.py:2030 msgid "Filter must have 4 values (doctype, fieldname, operator, value): {0}" msgstr "" @@ -12987,11 +12913,11 @@ msgctxt "Report Filter" msgid "Fold" msgstr "" -#: core/doctype/doctype/doctype.py:1399 +#: core/doctype/doctype/doctype.py:1398 msgid "Fold can not be at the end of the form" msgstr "" -#: core/doctype/doctype/doctype.py:1397 +#: core/doctype/doctype/doctype.py:1396 msgid "Fold must come before a Section Break" msgstr "" @@ -13268,7 +13194,7 @@ msgctxt "User Permission" msgid "For Value" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1975 +#: public/js/frappe/views/reports/query_report.js:1976 #: public/js/frappe/views/reports/report_view.js:96 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -13315,7 +13241,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "" -#: core/doctype/doctype/doctype.py:1690 +#: core/doctype/doctype/doctype.py:1689 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -13634,7 +13560,7 @@ msgctxt "Auto Email Report" msgid "From Date Field" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1689 +#: public/js/frappe/views/reports/query_report.js:1690 msgid "From Document Type" msgstr "" @@ -13720,7 +13646,7 @@ msgstr "" msgid "Function Based On" msgstr "" -#: __init__.py:933 +#: __init__.py:936 msgid "Function {0} is not whitelisted." msgstr "" @@ -13804,7 +13730,7 @@ msgctxt "User" msgid "Generate Keys" msgstr "" -#: public/js/frappe/views/reports/query_report.js:807 +#: public/js/frappe/views/reports/query_report.js:808 msgid "Generate New Report" msgstr "" @@ -13812,7 +13738,7 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:147 +#: public/js/frappe/ui/toolbar/toolbar.js:172 #: public/js/frappe/utils/utils.js:1763 msgid "Generate Tracking URL" msgstr "" @@ -13876,6 +13802,10 @@ msgctxt "Document Naming Settings" msgid "Get a preview of generated names with a series." msgstr "" +#: public/js/frappe/list/list_sidebar.js:273 +msgid "Get more insights with" +msgstr "" + #. Description of the 'Email Threads on Assigned Document' (Check) field in #. DocType 'Notification Settings' #: desk/doctype/notification_settings/notification_settings.json @@ -13963,11 +13893,11 @@ msgstr "" msgid "Go to Workspace" msgstr "" -#: public/js/frappe/form/form.js:144 +#: public/js/frappe/form/form.js:143 msgid "Go to next record" msgstr "" -#: public/js/frappe/form/form.js:154 +#: public/js/frappe/form/form.js:153 msgid "Go to previous record" msgstr "" @@ -14293,7 +14223,7 @@ msgctxt "Dashboard Chart" msgid "Group By Type" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:398 +#: desk/doctype/dashboard_chart/dashboard_chart.py:397 msgid "Group By field is required to create a dashboard chart" msgstr "" @@ -14329,7 +14259,7 @@ msgctxt "System Settings" msgid "HH:mm:ss" msgstr "" -#: printing/doctype/print_format/print_format.py:90 +#: printing/doctype/print_format/print_format.py:91 #: website/doctype/web_page/web_page.js:92 msgid "HTML" msgstr "" @@ -14616,7 +14546,7 @@ msgstr "" #: public/js/frappe/form/templates/form_sidebar.html:40 #: public/js/frappe/form/workflow.js:23 -#: public/js/frappe/ui/toolbar/navbar.html:86 public/js/frappe/utils/help.js:27 +#: public/js/frappe/ui/toolbar/navbar.html:87 public/js/frappe/utils/help.js:27 msgid "Help" msgstr "" @@ -14660,7 +14590,7 @@ msgctxt "Help Category" msgid "Help Category" msgstr "" -#: public/js/frappe/ui/toolbar/navbar.html:83 +#: public/js/frappe/ui/toolbar/navbar.html:84 msgid "Help Dropdown" msgstr "" @@ -14778,7 +14708,7 @@ msgstr "" #: public/js/frappe/views/workspace/workspace.js:825 #: public/js/frappe/widgets/base_widget.js:46 -#: public/js/frappe/widgets/base_widget.js:176 +#: public/js/frappe/widgets/base_widget.js:178 #: templates/includes/login/login.js:83 msgid "Hide" msgstr "" @@ -14926,7 +14856,7 @@ msgctxt "Portal Settings" msgid "Hide Standard Menu" msgstr "" -#: public/js/frappe/list/list_view.js:1612 +#: public/js/frappe/list/list_view.js:1607 msgid "Hide Tags" msgstr "" @@ -15079,15 +15009,15 @@ msgctxt "Currency" msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "" -#: core/doctype/data_import/importer.py:1115 -#: core/doctype/data_import/importer.py:1121 -#: core/doctype/data_import/importer.py:1186 -#: core/doctype/data_import/importer.py:1189 desk/report/todo/todo.py:36 +#: core/doctype/data_import/importer.py:1127 +#: core/doctype/data_import/importer.py:1133 +#: core/doctype/data_import/importer.py:1198 +#: core/doctype/data_import/importer.py:1201 desk/report/todo/todo.py:36 #: model/meta.py:45 public/js/frappe/data_import/data_exporter.js:329 #: public/js/frappe/data_import/data_exporter.js:344 -#: public/js/frappe/list/list_view.js:356 -#: public/js/frappe/list/list_view.js:420 public/js/frappe/model/meta.js:197 -#: public/js/frappe/model/model.js:112 +#: public/js/frappe/list/list_view.js:357 +#: public/js/frappe/list/list_view.js:421 public/js/frappe/model/meta.js:197 +#: public/js/frappe/model/model.js:122 msgid "ID" msgstr "" @@ -15248,7 +15178,7 @@ msgctxt "Workflow Document State" msgid "If Checked workflow status will not override status in list view" msgstr "" -#: core/doctype/doctype/doctype.py:1702 public/js/frappe/roles_editor.js:66 +#: core/doctype/doctype/doctype.py:1701 public/js/frappe/roles_editor.js:66 msgid "If Owner" msgstr "" @@ -15534,7 +15464,7 @@ msgstr "" msgid "Illegal Document Status for {0}" msgstr "" -#: model/db_query.py:440 model/db_query.py:443 model/db_query.py:1106 +#: model/db_query.py:443 model/db_query.py:446 model/db_query.py:1109 msgid "Illegal SQL Query" msgstr "" @@ -15629,11 +15559,11 @@ msgctxt "Letter Head" msgid "Image Width" msgstr "" -#: core/doctype/doctype/doctype.py:1455 +#: core/doctype/doctype/doctype.py:1454 msgid "Image field must be a valid fieldname" msgstr "" -#: core/doctype/doctype/doctype.py:1457 +#: core/doctype/doctype/doctype.py:1456 msgid "Image field must be of type Attach Image" msgstr "" @@ -15667,7 +15597,7 @@ msgstr "" msgid "Impersonated by {0}" msgstr "" -#: public/js/frappe/ui/toolbar/navbar.html:21 +#: public/js/frappe/ui/toolbar/navbar.html:22 msgid "Impersonating {0}" msgstr "" @@ -15686,7 +15616,7 @@ msgstr "" msgid "Import" msgstr "" -#: public/js/frappe/list/list_view.js:1674 +#: public/js/frappe/list/list_view.js:1669 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -15775,11 +15705,11 @@ msgctxt "Data Import" msgid "Import from Google Sheets" msgstr "" -#: core/doctype/data_import/importer.py:593 +#: core/doctype/data_import/importer.py:605 msgid "Import template should be of type .csv, .xlsx or .xls" msgstr "" -#: core/doctype/data_import/importer.py:463 +#: core/doctype/data_import/importer.py:475 msgid "Import template should contain a Header and atleast one row." msgstr "" @@ -15899,7 +15829,7 @@ msgstr "" msgid "In Progress" msgstr "" -#: database/database.py:240 +#: database/database.py:252 msgid "In Read Only Mode" msgstr "" @@ -15985,11 +15915,11 @@ msgctxt "System Settings" msgid "Include Web View Link in Email" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1505 +#: public/js/frappe/views/reports/query_report.js:1506 msgid "Include filters" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1497 +#: public/js/frappe/views/reports/query_report.js:1498 msgid "Include indentation" msgstr "" @@ -16049,16 +15979,16 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: model/document.py:1356 +#: model/document.py:1364 msgid "Incorrect value in row {0}: {1} must be {2} {3}" msgstr "" -#: model/document.py:1360 +#: model/document.py:1368 msgid "Incorrect value: {0} must be {1} {2}" msgstr "" #: model/meta.py:48 public/js/frappe/model/meta.js:200 -#: public/js/frappe/model/model.js:114 +#: public/js/frappe/model/model.js:124 #: public/js/frappe/views/reports/report_view.js:938 msgid "Index" msgstr "" @@ -16151,7 +16081,7 @@ msgctxt "DocType" msgid "InnoDB" msgstr "" -#: core/doctype/data_import/data_import_list.js:39 +#: core/doctype/data_import/data_import_list.js:35 msgid "Insert" msgstr "" @@ -16159,7 +16089,7 @@ msgstr "" msgid "Insert Above" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1729 +#: public/js/frappe/views/reports/query_report.js:1730 msgid "Insert After" msgstr "" @@ -16237,11 +16167,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: permissions.py:822 +#: permissions.py:817 msgid "Insufficient Permission Level for {0}" msgstr "" -#: database/query.py:375 desk/form/load.py:40 model/document.py:237 +#: database/query.py:375 desk/form/load.py:40 model/document.py:241 msgid "Insufficient Permission for {0}" msgstr "" @@ -16253,7 +16183,7 @@ msgstr "" msgid "Insufficient Permissions for editing Report" msgstr "" -#: core/doctype/doctype/doctype.py:444 +#: core/doctype/doctype/doctype.py:445 msgid "Insufficient attachment limit" msgstr "" @@ -16439,7 +16369,7 @@ msgstr "" msgid "Invalid Condition: {}" msgstr "" -#: email/smtp.py:134 +#: email/smtp.py:135 msgid "Invalid Credentials" msgstr "" @@ -16455,7 +16385,7 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: core/doctype/doctype/doctype.py:1221 +#: core/doctype/doctype/doctype.py:1220 msgid "Invalid Fieldname" msgstr "" @@ -16487,11 +16417,11 @@ msgstr "" msgid "Invalid Login. Try again." msgstr "" -#: email/receive.py:105 email/receive.py:142 +#: email/receive.py:104 email/receive.py:141 msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: model/naming.py:94 +#: model/naming.py:100 msgid "Invalid Naming Series: {}" msgstr "" @@ -16499,7 +16429,7 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: core/doctype/doctype/doctype.py:1578 core/doctype/doctype/doctype.py:1587 +#: core/doctype/doctype/doctype.py:1577 core/doctype/doctype/doctype.py:1586 msgid "Invalid Option" msgstr "" @@ -16521,7 +16451,7 @@ msgstr "" msgid "Invalid Password" msgstr "" -#: utils/__init__.py:109 +#: utils/__init__.py:108 msgid "Invalid Phone Number" msgstr "" @@ -16533,7 +16463,7 @@ msgstr "" msgid "Invalid Search Field {0}" msgstr "" -#: core/doctype/doctype/doctype.py:1163 +#: core/doctype/doctype/doctype.py:1162 msgid "Invalid Table Fieldname" msgstr "" @@ -16546,7 +16476,7 @@ msgstr "" msgid "Invalid URL" msgstr "" -#: email/receive.py:150 +#: email/receive.py:149 msgid "Invalid User Name or Support Password. Please rectify and try again." msgstr "" @@ -16562,7 +16492,7 @@ msgstr "" msgid "Invalid column" msgstr "" -#: model/document.py:851 model/document.py:865 +#: model/document.py:855 model/document.py:869 msgid "Invalid docstatus" msgstr "" @@ -16574,11 +16504,11 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: utils/data.py:2126 +#: utils/data.py:2129 msgid "Invalid field name {0}" msgstr "" -#: core/doctype/doctype/doctype.py:1048 +#: core/doctype/doctype/doctype.py:1047 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -16591,19 +16521,19 @@ msgid "Invalid filter: {0}" msgstr "" #: desk/doctype/dashboard/dashboard.py:67 -#: desk/doctype/dashboard_chart/dashboard_chart.py:414 +#: desk/doctype/dashboard_chart/dashboard_chart.py:413 msgid "Invalid json added in the custom options: {0}" msgstr "" -#: model/naming.py:466 +#: model/naming.py:481 msgid "Invalid name type (integer) for varchar name column" msgstr "" -#: model/naming.py:55 +#: model/naming.py:61 msgid "Invalid naming series {}: dot (.) missing" msgstr "" -#: core/doctype/data_import/importer.py:434 +#: core/doctype/data_import/importer.py:446 msgid "Invalid or corrupted content for import" msgstr "" @@ -16619,7 +16549,7 @@ msgstr "" msgid "Invalid state." msgstr "" -#: core/doctype/data_import/importer.py:411 +#: core/doctype/data_import/importer.py:423 msgid "Invalid template file for import" msgstr "" @@ -16628,12 +16558,16 @@ msgstr "" msgid "Invalid username or password" msgstr "" +#: model/naming.py:167 +msgid "Invalid value specified for UUID: {}" +msgstr "" + #: public/js/frappe/web_form/web_form.js:229 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: core/doctype/doctype/doctype.py:1513 +#: core/doctype/doctype/doctype.py:1512 msgid "Invalid {0} condition" msgstr "" @@ -16837,7 +16771,7 @@ msgctxt "DocType" msgid "Is Published Field" msgstr "" -#: core/doctype/doctype/doctype.py:1464 +#: core/doctype/doctype/doctype.py:1463 msgid "Is Published Field must be a valid fieldname" msgstr "" @@ -17766,12 +17700,12 @@ msgid "Last Synced On" msgstr "" #: model/meta.py:50 public/js/frappe/model/meta.js:202 -#: public/js/frappe/model/model.js:120 +#: public/js/frappe/model/model.js:130 msgid "Last Updated By" msgstr "" #: model/meta.py:49 public/js/frappe/model/meta.js:201 -#: public/js/frappe/model/model.js:116 +#: public/js/frappe/model/model.js:126 msgid "Last Updated On" msgstr "" @@ -18046,6 +17980,10 @@ msgctxt "Review Level" msgid "Level Name" msgstr "" +#: www/attribution.html:35 +msgid "License" +msgstr "" + #. Label of a Markdown Editor field in DocType 'Package' #: core/doctype/package/package.json msgctxt "Package" @@ -18123,7 +18061,7 @@ msgid "Liked" msgstr "" #: model/meta.py:53 public/js/frappe/model/meta.js:205 -#: public/js/frappe/model/model.js:124 +#: public/js/frappe/model/model.js:134 msgid "Liked By" msgstr "" @@ -18465,7 +18403,7 @@ msgctxt "Web Form" msgid "List Setting Message" msgstr "" -#: public/js/frappe/list/list_view.js:1754 +#: public/js/frappe/list/list_view.js:1749 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -18539,8 +18477,8 @@ msgstr "" #: public/js/frappe/form/controls/multicheck.js:13 #: public/js/frappe/form/linked_with.js:13 #: public/js/frappe/list/base_list.js:490 -#: public/js/frappe/list/list_view.js:333 public/js/frappe/ui/listing.html:16 -#: public/js/frappe/views/reports/query_report.js:1015 +#: public/js/frappe/list/list_view.js:334 public/js/frappe/ui/listing.html:16 +#: public/js/frappe/views/reports/query_report.js:1016 msgid "Loading" msgstr "" @@ -18561,7 +18499,7 @@ msgid "Loading versions..." msgstr "" #: public/js/frappe/form/sidebar/share.js:51 -#: public/js/frappe/list/list_sidebar.js:216 +#: public/js/frappe/list/list_sidebar.js:218 #: public/js/frappe/list/list_sidebar_group_by.js:125 #: public/js/frappe/views/kanban/kanban_board.html:11 #: public/js/frappe/widgets/chart_widget.js:50 @@ -18835,6 +18773,10 @@ msgstr "" msgid "Looks like you haven’t received any notifications." msgstr "" +#: core/doctype/server_script/server_script_list.js:18 +msgid "Loving Frappe Framework?" +msgstr "" + #: public/js/frappe/form/sidebar/assign_to.js:190 msgid "Low" msgstr "" @@ -19039,7 +18981,7 @@ msgctxt "Web Page" msgid "Map route parameters into form variables. Example /project/<name>" msgstr "" -#: core/doctype/data_import/importer.py:874 +#: core/doctype/data_import/importer.py:886 msgid "Mapping column {0} to field {1}" msgstr "" @@ -19202,7 +19144,7 @@ msgctxt "System Settings" msgid "Max auto email report per user" msgstr "" -#: core/doctype/doctype/doctype.py:1291 +#: core/doctype/doctype/doctype.py:1290 msgid "Max width for type Currency is 100px in row {0}" msgstr "" @@ -19311,7 +19253,7 @@ msgstr "" msgid "Menu" msgstr "" -#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:724 +#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:734 msgid "Merge with existing" msgstr "" @@ -19351,7 +19293,7 @@ msgctxt "Communication" msgid "Message" msgstr "" -#: __init__.py:617 public/js/frappe/ui/messages.js:265 +#: __init__.py:620 public/js/frappe/ui/messages.js:265 msgctxt "Default title of the message dialog" msgid "Message" msgstr "" @@ -19441,7 +19383,7 @@ msgctxt "Notification" msgid "Message Type" msgstr "" -#: public/js/frappe/views/communication.js:933 +#: public/js/frappe/views/communication.js:941 msgid "Message clipped" msgstr "" @@ -19657,7 +19599,7 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: core/doctype/doctype/doctype.py:1475 +#: core/doctype/doctype/doctype.py:1474 msgid "Missing Field" msgstr "" @@ -20150,19 +20092,19 @@ msgstr "" msgid "Move To Trash" msgstr "" -#: public/js/frappe/form/form.js:176 +#: public/js/frappe/form/form.js:175 msgid "Move cursor to above row" msgstr "" -#: public/js/frappe/form/form.js:180 +#: public/js/frappe/form/form.js:179 msgid "Move cursor to below row" msgstr "" -#: public/js/frappe/form/form.js:184 +#: public/js/frappe/form/form.js:183 msgid "Move cursor to next column" msgstr "" -#: public/js/frappe/form/form.js:188 +#: public/js/frappe/form/form.js:187 msgid "Move cursor to previous column" msgstr "" @@ -20223,7 +20165,7 @@ msgstr "" msgid "Must have report permission to access this report." msgstr "" -#: core/doctype/report/report.py:148 +#: core/doctype/report/report.py:145 msgid "Must specify a Query to run" msgstr "" @@ -20309,7 +20251,7 @@ msgstr "" msgid "Name already taken, please set a new name" msgstr "" -#: model/naming.py:480 +#: model/naming.py:495 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -20321,7 +20263,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: model/naming.py:475 +#: model/naming.py:490 msgid "Name of {0} cannot be {1}" msgstr "" @@ -20383,7 +20325,7 @@ msgctxt "Document Naming Settings" msgid "Naming Series" msgstr "" -#: model/naming.py:244 +#: model/naming.py:259 msgid "Naming Series mandatory" msgstr "" @@ -20433,12 +20375,12 @@ msgstr "" msgid "Navigate Home" msgstr "" -#: public/js/frappe/list/list_view.js:1162 +#: public/js/frappe/list/list_view.js:1157 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: public/js/frappe/list/list_view.js:1169 +#: public/js/frappe/list/list_view.js:1164 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -20461,7 +20403,7 @@ msgstr "" msgid "Need Workspace Manager role to hide/unhide public workspaces" msgstr "" -#: model/document.py:627 +#: model/document.py:631 msgid "Negative Value" msgstr "" @@ -20573,7 +20515,7 @@ msgstr "" msgid "New Message from Website Contact Page" msgstr "" -#: public/js/frappe/form/toolbar.js:206 public/js/frappe/model/model.js:732 +#: public/js/frappe/form/toolbar.js:206 public/js/frappe/model/model.js:742 msgid "New Name" msgstr "" @@ -20830,7 +20772,7 @@ msgstr "" #: public/js/form_builder/utils.js:341 #: public/js/frappe/form/controls/link.js:472 #: public/js/frappe/list/list_sidebar_group_by.js:223 -#: public/js/frappe/views/reports/query_report.js:1530 +#: public/js/frappe/views/reports/query_report.js:1531 #: website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -20958,7 +20900,7 @@ msgstr "" msgid "No Letterhead" msgstr "" -#: model/naming.py:457 +#: model/naming.py:472 msgid "No Name Specified for {0}" msgstr "" @@ -20966,7 +20908,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: core/doctype/doctype/doctype.py:1682 +#: core/doctype/doctype/doctype.py:1681 msgid "No Permissions Specified" msgstr "" @@ -21054,7 +20996,7 @@ msgstr "" msgid "No changes to sync" msgstr "" -#: core/doctype/data_import/importer.py:282 +#: core/doctype/data_import/importer.py:294 msgid "No changes to update" msgstr "" @@ -21130,7 +21072,7 @@ msgstr "" msgid "No new Google Contacts synced." msgstr "" -#: public/js/frappe/ui/toolbar/navbar.html:46 +#: public/js/frappe/ui/toolbar/navbar.html:47 msgid "No new notifications" msgstr "" @@ -21156,16 +21098,16 @@ msgctxt "SMS Log" msgid "No of Sent SMS" msgstr "" -#: __init__.py:1121 client.py:109 client.py:151 +#: __init__.py:1124 client.py:109 client.py:151 msgid "No permission for {0}" msgstr "" -#: public/js/frappe/form/form.js:1115 +#: public/js/frappe/form/form.js:1079 msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: model/db_query.py:924 +#: model/db_query.py:927 msgid "No permission to read {0}" msgstr "" @@ -21209,7 +21151,7 @@ msgstr "" msgid "No {0} found" msgstr "" -#: public/js/frappe/list/list_view.js:467 +#: public/js/frappe/list/list_view.js:468 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -21312,7 +21254,7 @@ msgctxt "DocField" msgid "Not Nullable" msgstr "" -#: __init__.py:1017 app.py:353 desk/calendar.py:26 geo/utils.py:97 +#: __init__.py:1020 app.py:353 desk/calendar.py:26 geo/utils.py:97 #: public/js/frappe/web_form/webform_script.js:15 #: website/doctype/web_form/web_form.py:602 #: website/page_renderers/not_permitted_page.py:20 www/login.py:178 @@ -21388,7 +21330,7 @@ msgstr "" msgid "Not active" msgstr "" -#: permissions.py:364 +#: permissions.py:359 msgid "Not allowed for {0}: {1}" msgstr "" @@ -21396,7 +21338,7 @@ msgstr "" msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" -#: core/doctype/doctype/doctype.py:334 +#: core/doctype/doctype/doctype.py:335 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -21420,7 +21362,7 @@ msgstr "" msgid "Not in Developer Mode" msgstr "" -#: core/doctype/doctype/doctype.py:329 +#: core/doctype/doctype/doctype.py:330 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" @@ -21433,7 +21375,7 @@ msgstr "" msgid "Not permitted" msgstr "" -#: public/js/frappe/list/list_view.js:46 +#: public/js/frappe/list/list_view.js:47 msgid "Not permitted to view {0}" msgstr "" @@ -21737,7 +21679,7 @@ msgctxt "Recorder" msgid "Number of Queries" msgstr "" -#: core/doctype/doctype/doctype.py:441 public/js/frappe/doctype/index.js:59 +#: core/doctype/doctype/doctype.py:442 public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" @@ -21943,7 +21885,7 @@ msgctxt "Webhook" msgid "On checking this option, URL will be treated like a jinja template string" msgstr "" -#: public/js/frappe/views/communication.js:943 +#: public/js/frappe/views/communication.js:951 msgid "On {0}, {1} wrote:" msgstr "" @@ -22026,7 +21968,7 @@ msgstr "" msgid "Only Administrator can edit" msgstr "" -#: core/doctype/report/report.py:75 +#: core/doctype/report/report.py:72 msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" @@ -22040,7 +21982,7 @@ msgctxt "Workflow Document State" msgid "Only Allow Edit For" msgstr "" -#: core/doctype/doctype/doctype.py:1557 +#: core/doctype/doctype/doctype.py:1556 msgid "Only Options allowed for Data field are:" msgstr "" @@ -22204,7 +22146,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: public/js/frappe/list/list_view.js:1215 +#: public/js/frappe/list/list_view.js:1210 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -22250,7 +22192,7 @@ msgctxt "Activity Log" msgid "Operation" msgstr "" -#: utils/data.py:2062 +#: utils/data.py:2065 msgid "Operator must be one of {0}" msgstr "" @@ -22274,7 +22216,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: core/doctype/doctype/doctype.py:1575 +#: core/doctype/doctype/doctype.py:1574 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -22336,7 +22278,7 @@ msgctxt "Web Template Field" msgid "Options" msgstr "" -#: core/doctype/doctype/doctype.py:1315 +#: core/doctype/doctype/doctype.py:1314 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "" @@ -22346,7 +22288,7 @@ msgctxt "Custom Field" msgid "Options Help" msgstr "" -#: core/doctype/doctype/doctype.py:1597 +#: core/doctype/doctype/doctype.py:1596 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -22354,7 +22296,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "" -#: core/doctype/doctype/doctype.py:1332 +#: core/doctype/doctype/doctype.py:1331 msgid "Options for {0} must be set before setting the default value." msgstr "" @@ -22500,7 +22442,7 @@ msgstr "" #: printing/page/print/print.js:71 #: public/js/frappe/form/templates/print_layout.html:44 -#: public/js/frappe/views/reports/query_report.js:1654 +#: public/js/frappe/views/reports/query_report.js:1655 msgid "PDF" msgstr "" @@ -22575,7 +22517,7 @@ msgid "PUT" msgstr "" #. Name of a DocType -#: core/doctype/package/package.json +#: core/doctype/package/package.json www/attribution.html:33 msgid "Package" msgstr "" @@ -22780,7 +22722,7 @@ msgctxt "SMS Parameter" msgid "Parameter" msgstr "" -#: public/js/frappe/model/model.js:132 +#: public/js/frappe/model/model.js:142 #: public/js/frappe/views/workspace/workspace.js:617 #: public/js/frappe/views/workspace/workspace.js:945 #: public/js/frappe/views/workspace/workspace.js:1192 @@ -22821,7 +22763,7 @@ msgctxt "Form Tour Step" msgid "Parent Field" msgstr "" -#: core/doctype/doctype/doctype.py:914 +#: core/doctype/doctype/doctype.py:913 msgid "Parent Field (Tree)" msgstr "" @@ -22831,7 +22773,7 @@ msgctxt "DocType" msgid "Parent Field (Tree)" msgstr "" -#: core/doctype/doctype/doctype.py:920 +#: core/doctype/doctype/doctype.py:919 msgid "Parent Field must be a valid fieldname" msgstr "" @@ -22841,7 +22783,7 @@ msgctxt "Top Bar Item" msgid "Parent Label" msgstr "" -#: core/doctype/doctype/doctype.py:1146 +#: core/doctype/doctype/doctype.py:1145 msgid "Parent Missing" msgstr "" @@ -22855,7 +22797,7 @@ msgstr "" msgid "Parent Table" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:394 +#: desk/doctype/dashboard_chart/dashboard_chart.py:393 msgid "Parent document type is required to create a dashboard chart" msgstr "" @@ -22863,7 +22805,7 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "" -#: permissions.py:802 +#: permissions.py:797 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -23178,15 +23120,15 @@ msgctxt "Address" msgid "Permanent" msgstr "" -#: public/js/frappe/form/form.js:1047 +#: public/js/frappe/form/form.js:1011 msgid "Permanently Cancel {0}?" msgstr "" -#: public/js/frappe/form/form.js:877 +#: public/js/frappe/form/form.js:841 msgid "Permanently Submit {0}?" msgstr "" -#: public/js/frappe/model/model.js:703 +#: public/js/frappe/model/model.js:713 msgid "Permanently delete {0}?" msgstr "" @@ -23285,7 +23227,7 @@ msgctxt "System Settings" msgid "Permissions" msgstr "" -#: core/doctype/doctype/doctype.py:1773 core/doctype/doctype/doctype.py:1783 +#: core/doctype/doctype/doctype.py:1772 core/doctype/doctype/doctype.py:1782 msgid "Permissions Error" msgstr "" @@ -23403,13 +23345,13 @@ msgctxt "Communication" msgid "Phone No." msgstr "" -#: utils/__init__.py:108 +#: utils/__init__.py:107 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" #: public/js/frappe/form/print_utils.js:38 -#: public/js/frappe/views/reports/report_view.js:1501 -#: public/js/frappe/views/reports/report_view.js:1504 +#: public/js/frappe/views/reports/report_view.js:1502 +#: public/js/frappe/views/reports/report_view.js:1505 msgid "Pick Columns" msgstr "" @@ -23513,7 +23455,7 @@ msgstr "" msgid "Please check your email for verification" msgstr "" -#: email/smtp.py:133 +#: email/smtp.py:134 msgid "Please check your email login credentials." msgstr "" @@ -23641,7 +23583,7 @@ msgstr "" msgid "Please find attached {0}: {1}" msgstr "" -#: core/doctype/navbar_settings/navbar_settings.py:43 +#: core/doctype/navbar_settings/navbar_settings.py:44 msgid "Please hide the standard navbar items instead of deleting them" msgstr "" @@ -23653,7 +23595,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: model/document.py:820 +#: model/document.py:824 msgid "Please refresh to get the latest document." msgstr "" @@ -23661,7 +23603,7 @@ msgstr "" msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" -#: public/js/frappe/form/form.js:384 +#: public/js/frappe/form/form.js:348 msgid "Please save before attaching." msgstr "" @@ -23677,7 +23619,7 @@ msgstr "" msgid "Please save the document before removing assignment" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1611 +#: public/js/frappe/views/reports/report_view.js:1612 msgid "Please save the report first" msgstr "" @@ -23701,11 +23643,11 @@ msgstr "" msgid "Please select Minimum Password Score" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1106 +#: public/js/frappe/views/reports/query_report.js:1107 msgid "Please select X and Y fields" msgstr "" -#: utils/__init__.py:115 +#: utils/__init__.py:114 msgid "Please select a country code for field {1}." msgstr "" @@ -23725,7 +23667,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: model/db_query.py:1118 +#: model/db_query.py:1121 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -23760,7 +23702,7 @@ msgstr "" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1322 +#: public/js/frappe/views/reports/query_report.js:1323 msgid "Please set filters" msgstr "" @@ -23768,7 +23710,7 @@ msgstr "" msgid "Please set filters value in Report Filter table." msgstr "" -#: model/naming.py:550 +#: model/naming.py:565 msgid "Please set the document name" msgstr "" @@ -23796,11 +23738,11 @@ msgstr "" msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" -#: public/js/frappe/model/model.js:790 +#: public/js/frappe/model/model.js:800 msgid "Please specify" msgstr "" -#: permissions.py:778 +#: permissions.py:773 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -23988,7 +23930,7 @@ msgctxt "Web Form Field" msgid "Precision" msgstr "" -#: core/doctype/doctype/doctype.py:1349 +#: core/doctype/doctype/doctype.py:1348 msgid "Precision should be between 1 and 6" msgstr "" @@ -24044,7 +23986,7 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: public/js/frappe/views/communication.js:411 +#: public/js/frappe/views/communication.js:419 msgid "Prepend the template to the email message" msgstr "" @@ -24154,7 +24096,7 @@ msgctxt "Transaction Log" msgid "Previous Hash" msgstr "" -#: public/js/frappe/form/form.js:2165 +#: public/js/frappe/form/form.js:2131 msgid "Previous Submission" msgstr "" @@ -24190,18 +24132,22 @@ msgstr "" msgid "Primary Phone" msgstr "" +#: database/mariadb/schema.py:156 database/postgres/schema.py:199 +msgid "Primary key of doctype {0} can not be changed as there are existing values." +msgstr "" + #: core/doctype/success_action/success_action.js:56 #: printing/page/print/print.js:65 public/js/frappe/form/success_action.js:81 #: public/js/frappe/form/templates/print_layout.html:46 #: public/js/frappe/form/toolbar.js:321 public/js/frappe/form/toolbar.js:333 #: public/js/frappe/list/bulk_operations.js:87 -#: public/js/frappe/views/reports/query_report.js:1640 +#: public/js/frappe/views/reports/query_report.js:1641 #: public/js/frappe/views/reports/report_view.js:1460 #: public/js/frappe/views/treeview.js:473 www/printview.html:18 msgid "Print" msgstr "" -#: public/js/frappe/list/list_view.js:1919 +#: public/js/frappe/list/list_view.js:1914 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -24453,7 +24399,7 @@ msgctxt "Customize Form Field" msgid "Print Width of the field, if the field is a column in a table" msgstr "" -#: public/js/frappe/form/form.js:170 +#: public/js/frappe/form/form.js:169 msgid "Print document" msgstr "" @@ -24561,7 +24507,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: public/js/frappe/views/reports/query_report.js:858 +#: public/js/frappe/views/reports/query_report.js:859 msgid "Proceed Anyway" msgstr "" @@ -24955,7 +24901,7 @@ msgctxt "Report" msgid "Query Report" msgstr "" -#: utils/safe_exec.py:434 +#: utils/safe_exec.py:441 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -24983,7 +24929,7 @@ msgctxt "DocType" msgid "Queue in Background (BETA)" msgstr "" -#: utils/background_jobs.py:463 +#: utils/background_jobs.py:469 msgid "Queue should be one of {0}" msgstr "" @@ -25134,12 +25080,6 @@ msgctxt "Blog Settings" msgid "Rate Limits" msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Rate limit for email link login" -msgstr "" - #. Label of a Int field in DocType 'Communication' #: core/doctype/communication/communication.json msgctxt "Communication" @@ -25170,7 +25110,7 @@ msgctxt "Web Form Field" msgid "Rating" msgstr "" -#: printing/doctype/print_format/print_format.py:87 +#: printing/doctype/print_format/print_format.py:88 msgid "Raw Commands" msgstr "" @@ -25216,7 +25156,7 @@ msgstr "" #: core/doctype/communication/communication.js:268 #: public/js/frappe/form/footer/form_timeline.js:587 -#: public/js/frappe/views/communication.js:347 +#: public/js/frappe/views/communication.js:355 msgid "Re: {0}" msgstr "" @@ -25321,7 +25261,7 @@ msgctxt "DocField" msgid "Read Only Depends On (JS)" msgstr "" -#: public/js/frappe/ui/toolbar/navbar.html:16 +#: public/js/frappe/ui/toolbar/navbar.html:17 #: templates/includes/navbar/navbar_items.html:97 msgid "Read Only Mode" msgstr "" @@ -25375,7 +25315,7 @@ msgctxt "Unhandled Email" msgid "Reason" msgstr "" -#: public/js/frappe/views/reports/query_report.js:819 +#: public/js/frappe/views/reports/query_report.js:820 msgid "Rebuild" msgstr "" @@ -25546,7 +25486,7 @@ msgstr "" msgid "Redo" msgstr "" -#: public/js/frappe/form/form.js:164 public/js/frappe/form/toolbar.js:470 +#: public/js/frappe/form/form.js:163 public/js/frappe/form/toolbar.js:470 msgid "Redo last action" msgstr "" @@ -25962,10 +25902,10 @@ msgid "Referrer" msgstr "" #: printing/page/print/print.js:73 public/js/frappe/desk.js:133 -#: public/js/frappe/form/form.js:1174 +#: public/js/frappe/form/form.js:1138 #: public/js/frappe/form/templates/print_layout.html:6 #: public/js/frappe/list/base_list.js:66 -#: public/js/frappe/views/reports/query_report.js:1629 +#: public/js/frappe/views/reports/query_report.js:1630 #: public/js/frappe/views/treeview.js:479 #: public/js/frappe/widgets/chart_widget.js:290 #: public/js/frappe/widgets/number_card_widget.js:324 @@ -26012,7 +25952,7 @@ msgctxt "Token Cache" msgid "Refresh Token" msgstr "" -#: public/js/frappe/list/list_view.js:505 +#: public/js/frappe/list/list_view.js:506 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" @@ -26175,7 +26115,7 @@ msgstr "" #: custom/doctype/custom_field/custom_field.js:137 #: public/js/frappe/form/toolbar.js:234 public/js/frappe/form/toolbar.js:238 -#: public/js/frappe/form/toolbar.js:398 public/js/frappe/model/model.js:742 +#: public/js/frappe/form/toolbar.js:398 public/js/frappe/model/model.js:752 #: public/js/frappe/views/treeview.js:295 msgid "Rename" msgstr "" @@ -26185,11 +26125,11 @@ msgstr "" msgid "Rename Fieldname" msgstr "" -#: public/js/frappe/model/model.js:729 +#: public/js/frappe/model/model.js:739 msgid "Rename {0}" msgstr "" -#: core/doctype/doctype/doctype.py:689 +#: core/doctype/doctype/doctype.py:690 msgid "Renamed files and replaced code in controllers, please check!" msgstr "" @@ -26389,7 +26329,7 @@ msgctxt "Onboarding Step" msgid "Report Description" msgstr "" -#: core/doctype/report/report.py:148 +#: core/doctype/report/report.py:145 msgid "Report Document Error" msgstr "" @@ -26434,7 +26374,7 @@ msgstr "" msgid "Report Manager" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1810 +#: public/js/frappe/views/reports/query_report.js:1811 msgid "Report Name" msgstr "" @@ -26496,7 +26436,7 @@ msgctxt "Report" msgid "Report Type" msgstr "" -#: core/doctype/doctype/doctype.py:1748 +#: core/doctype/doctype/doctype.py:1747 msgid "Report cannot be set for Single types" msgstr "" @@ -26510,7 +26450,7 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: public/js/frappe/views/reports/query_report.js:939 +#: public/js/frappe/views/reports/query_report.js:940 msgid "Report initiated, click to view status" msgstr "" @@ -26530,7 +26470,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1848 +#: public/js/frappe/views/reports/query_report.js:1849 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -26569,7 +26509,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: public/js/frappe/views/reports/query_report.js:855 +#: public/js/frappe/views/reports/query_report.js:856 msgid "Reports already in Queue" msgstr "" @@ -26883,7 +26823,7 @@ msgctxt "User" 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 "" -#: public/js/frappe/list/list_view.js:173 +#: public/js/frappe/list/list_view.js:174 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -27180,7 +27120,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: public/js/frappe/list/list_view.js:1696 +#: public/js/frappe/list/list_view.js:1691 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -27442,7 +27382,7 @@ msgctxt "Role" msgid "Route: Example \"/app\"" msgstr "" -#: model/base_document.py:731 model/base_document.py:772 model/document.py:612 +#: model/base_document.py:731 model/base_document.py:772 model/document.py:616 msgid "Row" msgstr "" @@ -27450,7 +27390,7 @@ msgstr "" msgid "Row #" msgstr "" -#: core/doctype/doctype/doctype.py:1770 core/doctype/doctype/doctype.py:1780 +#: core/doctype/doctype/doctype.py:1769 core/doctype/doctype/doctype.py:1779 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" @@ -27458,7 +27398,7 @@ msgstr "" msgid "Row #{0}:" msgstr "" -#: core/doctype/doctype/doctype.py:490 +#: core/doctype/doctype/doctype.py:491 msgid "Row #{}: Fieldname is required" msgstr "" @@ -27544,7 +27484,7 @@ msgctxt "Energy Point Rule" msgid "Rule Name" msgstr "" -#: permissions.py:658 +#: permissions.py:653 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -27806,15 +27746,15 @@ msgstr "" #: public/js/frappe/list/list_settings.js:36 #: public/js/frappe/list/list_settings.js:244 #: public/js/frappe/list/list_sidebar_group_by.js:25 -#: public/js/frappe/ui/toolbar/toolbar.js:307 +#: public/js/frappe/ui/toolbar/toolbar.js:332 #: public/js/frappe/utils/common.js:443 #: public/js/frappe/views/kanban/kanban_settings.js:45 #: public/js/frappe/views/kanban/kanban_settings.js:189 #: public/js/frappe/views/kanban/kanban_view.js:340 -#: public/js/frappe/views/reports/query_report.js:1802 -#: public/js/frappe/views/reports/report_view.js:1628 +#: public/js/frappe/views/reports/query_report.js:1803 +#: public/js/frappe/views/reports/report_view.js:1629 #: public/js/frappe/views/workspace/workspace.js:498 -#: public/js/frappe/widgets/base_widget.js:140 +#: public/js/frappe/widgets/base_widget.js:142 #: public/js/frappe/widgets/quick_list_widget.js:117 #: public/js/print_format_builder/print_format_builder.bundle.js:15 #: public/js/workflow_builder/workflow_builder.bundle.js:33 @@ -27836,7 +27776,7 @@ msgid "Save Anyway" msgstr "" #: public/js/frappe/views/reports/report_view.js:1311 -#: public/js/frappe/views/reports/report_view.js:1635 +#: public/js/frappe/views/reports/report_view.js:1636 msgid "Save As" msgstr "" @@ -27848,7 +27788,7 @@ msgstr "" msgid "Save Filter" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1805 +#: public/js/frappe/views/reports/query_report.js:1806 msgid "Save Report" msgstr "" @@ -28195,7 +28135,7 @@ msgstr "" msgid "Search Results for" msgstr "" -#: core/doctype/doctype/doctype.py:1416 +#: core/doctype/doctype/doctype.py:1415 msgid "Search field {0} is not valid" msgstr "" @@ -28213,7 +28153,7 @@ msgstr "" msgid "Search in a document type" msgstr "" -#: public/js/frappe/ui/toolbar/navbar.html:29 +#: public/js/frappe/ui/toolbar/navbar.html:30 msgid "Search or type a command ({0})" msgstr "" @@ -28287,11 +28227,11 @@ msgstr "" msgid "See all Activity" msgstr "" -#: public/js/frappe/views/reports/query_report.js:788 +#: public/js/frappe/views/reports/query_report.js:789 msgid "See all past reports." msgstr "" -#: public/js/frappe/form/form.js:1208 +#: public/js/frappe/form/form.js:1172 #: website/doctype/contact_us_settings/contact_us_settings.js:4 msgid "See on Website" msgstr "" @@ -28415,7 +28355,7 @@ msgid "Select All" msgstr "" #: public/js/frappe/views/communication.js:165 -#: public/js/frappe/views/communication.js:578 +#: public/js/frappe/views/communication.js:586 #: public/js/frappe/views/interaction.js:93 #: public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -28459,7 +28399,7 @@ msgctxt "Dashboard Chart" msgid "Select Date Range" msgstr "" -#: public/js/frappe/doctype/index.js:170 +#: public/js/frappe/doctype/index.js:171 msgid "Select DocType" msgstr "" @@ -28494,7 +28434,7 @@ msgstr "" msgid "Select Document Types to set which User Permissions are used to limit access." msgstr "" -#: public/js/frappe/doctype/index.js:199 public/js/frappe/form/toolbar.js:762 +#: public/js/frappe/doctype/index.js:200 public/js/frappe/form/toolbar.js:762 msgid "Select Field" msgstr "" @@ -28624,11 +28564,11 @@ msgstr "" msgid "Select a group node first." msgstr "" -#: core/doctype/doctype/doctype.py:1881 +#: core/doctype/doctype/doctype.py:1880 msgid "Select a valid Sender Field for creating documents from Email" msgstr "" -#: core/doctype/doctype/doctype.py:1865 +#: core/doctype/doctype/doctype.py:1864 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -28655,13 +28595,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: public/js/frappe/list/list_view.js:1229 +#: public/js/frappe/list/list_view.js:1224 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: public/js/frappe/list/list_view.js:1181 -#: public/js/frappe/list/list_view.js:1197 +#: public/js/frappe/list/list_view.js:1176 +#: public/js/frappe/list/list_view.js:1192 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -28979,7 +28919,7 @@ msgctxt "DocType" msgid "Sender Email Field" msgstr "" -#: core/doctype/doctype/doctype.py:1884 +#: core/doctype/doctype/doctype.py:1883 msgid "Sender Field should have Email in options" msgstr "" @@ -29117,7 +29057,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: core/doctype/doctype/doctype.py:1072 +#: core/doctype/doctype/doctype.py:1071 #: core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -29204,7 +29144,7 @@ msgstr "" #. Label of a standard navbar item #. Type: Action -#: hooks.py public/js/frappe/ui/toolbar/toolbar.js:306 +#: hooks.py public/js/frappe/ui/toolbar/toolbar.js:331 msgid "Session Defaults" msgstr "" @@ -29214,7 +29154,7 @@ msgctxt "Session Default Settings" msgid "Session Defaults" msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:291 +#: public/js/frappe/ui/toolbar/toolbar.js:316 msgid "Session Defaults Saved" msgstr "" @@ -29446,7 +29386,7 @@ msgstr "" #. Label of a Card Break in the Integrations Workspace #: integrations/workspace/integrations/integrations.json #: public/js/frappe/form/templates/print_layout.html:25 -#: public/js/frappe/ui/toolbar/toolbar.js:264 +#: public/js/frappe/ui/toolbar/toolbar.js:289 #: public/js/frappe/views/workspace/workspace.js:526 msgid "Settings" msgstr "" @@ -29526,8 +29466,8 @@ msgstr "" msgid "Setup Approval Workflows" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1675 -#: public/js/frappe/views/reports/report_view.js:1606 +#: public/js/frappe/views/reports/query_report.js:1676 +#: public/js/frappe/views/reports/report_view.js:1607 msgid "Setup Auto Email" msgstr "" @@ -29651,7 +29591,7 @@ msgid "Shortcuts" msgstr "" #: public/js/frappe/widgets/base_widget.js:46 -#: public/js/frappe/widgets/base_widget.js:176 +#: public/js/frappe/widgets/base_widget.js:178 #: templates/includes/login/login.js:86 www/login.html:30 msgid "Show" msgstr "" @@ -29865,7 +29805,7 @@ msgid "Show Sidebar" msgstr "" #: public/js/frappe/list/list_sidebar.html:66 -#: public/js/frappe/list/list_view.js:1612 +#: public/js/frappe/list/list_view.js:1607 msgid "Show Tags" msgstr "" @@ -30116,7 +30056,7 @@ msgctxt "DocType" msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" -#: database/database.py:237 +#: database/database.py:249 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 "" @@ -30151,15 +30091,15 @@ msgctxt "Patch Log" msgid "Skipped" msgstr "" -#: core/doctype/data_import/importer.py:902 +#: core/doctype/data_import/importer.py:914 msgid "Skipping Duplicate Column {0}" msgstr "" -#: core/doctype/data_import/importer.py:927 +#: core/doctype/data_import/importer.py:939 msgid "Skipping Untitled Column" msgstr "" -#: core/doctype/data_import/importer.py:913 +#: core/doctype/data_import/importer.py:925 msgid "Skipping column {0}" msgstr "" @@ -30381,7 +30321,7 @@ msgctxt "Customize Form" msgid "Sort Order" msgstr "" -#: core/doctype/doctype/doctype.py:1499 +#: core/doctype/doctype/doctype.py:1498 msgid "Sort field {0} must be a valid fieldname" msgstr "" @@ -30438,7 +30378,7 @@ msgstr "" msgid "Special Characters are not allowed" msgstr "" -#: model/naming.py:61 +#: model/naming.py:67 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" msgstr "" @@ -30507,7 +30447,7 @@ msgstr "" msgid "Standard DocType can not be deleted." msgstr "" -#: core/doctype/doctype/doctype.py:223 +#: core/doctype/doctype/doctype.py:224 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "" @@ -30515,7 +30455,7 @@ msgstr "" msgid "Standard Not Set" msgstr "" -#: printing/doctype/print_format/print_format.py:73 +#: printing/doctype/print_format/print_format.py:74 msgid "Standard Print Format cannot be updated" msgstr "" @@ -30561,6 +30501,10 @@ msgstr "" msgid "Standings" msgstr "" +#: core/doctype/server_script/server_script_list.js:20 +msgid "Star us on GitHub" +msgstr "" + #: core/doctype/recorder/recorder_list.js:87 printing/page/print/print.js:296 #: printing/page/print/print.js:343 msgid "Start" @@ -31081,7 +31025,7 @@ msgctxt "DocType" msgid "Subject Field" msgstr "" -#: core/doctype/doctype/doctype.py:1874 +#: core/doctype/doctype/doctype.py:1873 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -31099,7 +31043,7 @@ msgstr "" msgid "Submit" msgstr "" -#: public/js/frappe/list/list_view.js:1986 +#: public/js/frappe/list/list_view.js:1981 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -31192,11 +31136,11 @@ msgstr "" msgid "Submit this document to complete this step." msgstr "" -#: public/js/frappe/form/form.js:1194 +#: public/js/frappe/form/form.js:1158 msgid "Submit this document to confirm" msgstr "" -#: public/js/frappe/list/list_view.js:1991 +#: public/js/frappe/list/list_view.js:1986 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -31519,7 +31463,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: utils/data.py:2427 +#: utils/data.py:2430 msgid "Syntax Error" msgstr "" @@ -31783,7 +31727,7 @@ msgctxt "DocType Link" msgid "Table Fieldname" msgstr "" -#: core/doctype/doctype/doctype.py:1152 +#: core/doctype/doctype/doctype.py:1151 msgid "Table Fieldname Missing" msgstr "" @@ -31815,7 +31759,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: model/document.py:1370 +#: model/document.py:1378 msgid "Table {0} cannot be empty" msgstr "" @@ -31838,8 +31782,8 @@ msgstr "" #: model/meta.py:52 public/js/frappe/form/templates/form_sidebar.html:100 #: public/js/frappe/list/bulk_operations.js:400 #: public/js/frappe/list/list_sidebar.html:50 -#: public/js/frappe/list/list_sidebar.js:226 public/js/frappe/model/meta.js:204 -#: public/js/frappe/model/model.js:123 +#: public/js/frappe/list/list_sidebar.js:228 public/js/frappe/model/meta.js:204 +#: public/js/frappe/model/model.js:133 #: public/js/frappe/ui/toolbar/awesome_bar.js:171 msgid "Tags" msgstr "" @@ -31926,8 +31870,8 @@ msgctxt "Web Template" msgid "Template" msgstr "" -#: core/doctype/data_import/importer.py:464 -#: core/doctype/data_import/importer.py:591 +#: core/doctype/data_import/importer.py:476 +#: core/doctype/data_import/importer.py:603 msgid "Template Error" msgstr "" @@ -32128,11 +32072,11 @@ msgid "" "" msgstr "" -#: database/database.py:425 +#: database/database.py:440 msgid "The changes have been reverted." msgstr "" -#: core/doctype/data_import/importer.py:959 +#: core/doctype/data_import/importer.py:971 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 "" @@ -32140,7 +32084,7 @@ msgstr "" msgid "The comment cannot be empty" msgstr "" -#: public/js/frappe/list/list_view.js:629 +#: public/js/frappe/list/list_view.js:630 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -32182,11 +32126,11 @@ msgstr "" msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" msgstr "" -#: core/doctype/data_import/importer.py:1030 +#: core/doctype/data_import/importer.py:1042 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "" -#: core/doctype/data_import/importer.py:993 +#: core/doctype/data_import/importer.py:1005 msgid "The following values do not exist for {0}: {1}" msgstr "" @@ -32347,7 +32291,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: public/js/frappe/views/reports/query_report.js:891 +#: public/js/frappe/views/reports/query_report.js:892 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -32356,7 +32300,7 @@ msgstr "" msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: core/doctype/doctype/doctype.py:1392 +#: core/doctype/doctype/doctype.py:1391 msgid "There can be only one Fold in a form" msgstr "" @@ -32372,7 +32316,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "" -#: public/js/frappe/views/reports/query_report.js:888 +#: public/js/frappe/views/reports/query_report.js:889 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -32400,11 +32344,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: public/js/frappe/views/communication.js:820 +#: public/js/frappe/views/communication.js:828 msgid "There were errors while sending email. Please try again." msgstr "" -#: model/naming.py:470 +#: model/naming.py:485 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -32412,6 +32356,13 @@ msgstr "" msgid "There's nothing here" msgstr "" +#. Description of the 'Announcement Widget' (Text Editor) field in DocType +#. 'Navbar Settings' +#: core/doctype/navbar_settings/navbar_settings.json +msgctxt "Navbar Settings" +msgid "These announcements will appear inside a dismissible alert below the Navbar." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: integrations/doctype/ldap_settings/ldap_settings.json @@ -32451,11 +32402,11 @@ msgstr "" msgid "This Kanban Board will be private" msgstr "" -#: __init__.py:1013 +#: __init__.py:1016 msgid "This action is only allowed for {}" msgstr "" -#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:725 +#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:735 msgid "This cannot be undone" msgstr "" @@ -32491,11 +32442,11 @@ msgstr "" msgid "This document has been reverted" msgstr "" -#: public/js/frappe/form/form.js:1075 +#: public/js/frappe/form/form.js:1039 msgid "This document is already amended, you cannot ammend it again" msgstr "" -#: model/document.py:1537 +#: model/document.py:1545 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -32528,11 +32479,11 @@ msgstr "" msgid "This file is public. It can be accessed without authentication." msgstr "" -#: public/js/frappe/form/form.js:1172 +#: public/js/frappe/form/form.js:1136 msgid "This form has been modified after you have loaded it" msgstr "" -#: public/js/frappe/form/form.js:457 +#: public/js/frappe/form/form.js:421 msgid "This form is not editable due to a Workflow." msgstr "" @@ -32549,7 +32500,7 @@ msgctxt "Website Slideshow" msgid "This goes above the slideshow." msgstr "" -#: public/js/frappe/views/reports/query_report.js:2012 +#: public/js/frappe/views/reports/query_report.js:2013 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -32615,7 +32566,7 @@ msgstr "" msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" msgstr "" -#: public/js/frappe/views/reports/query_report.js:963 +#: public/js/frappe/views/reports/query_report.js:964 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -32623,7 +32574,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: public/js/frappe/views/reports/query_report.js:786 +#: public/js/frappe/views/reports/query_report.js:787 msgid "This report was generated {0}." msgstr "" @@ -32851,7 +32802,7 @@ msgctxt "System Settings" msgid "Time in seconds to retain QR code image on server. Min:240" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:403 +#: desk/doctype/dashboard_chart/dashboard_chart.py:402 msgid "Time series based on is required to create a dashboard chart" msgstr "" @@ -32900,11 +32851,11 @@ msgctxt "Activity Log" msgid "Timeline Name" msgstr "" -#: core/doctype/doctype/doctype.py:1487 +#: core/doctype/doctype/doctype.py:1486 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: core/doctype/doctype/doctype.py:1483 +#: core/doctype/doctype/doctype.py:1482 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -33093,7 +33044,7 @@ msgctxt "Website Settings" msgid "Title Prefix" msgstr "" -#: core/doctype/doctype/doctype.py:1424 +#: core/doctype/doctype/doctype.py:1423 msgid "Title field must be a valid fieldname" msgstr "" @@ -33211,7 +33162,7 @@ msgstr "" msgid "To export this step as JSON, link it in a Onboarding document and save the document." msgstr "" -#: public/js/frappe/views/reports/query_report.js:787 +#: public/js/frappe/views/reports/query_report.js:788 msgid "To get the updated report, click on {0}." msgstr "" @@ -33285,7 +33236,7 @@ msgstr "" msgid "Today's Events" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1492 +#: public/js/frappe/views/reports/report_view.js:1493 msgid "Toggle Chart" msgstr "" @@ -33300,11 +33251,11 @@ msgid "Toggle Grid View" msgstr "" #: public/js/frappe/ui/page.js:193 public/js/frappe/ui/page.js:195 -#: public/js/frappe/views/reports/report_view.js:1496 +#: public/js/frappe/views/reports/report_view.js:1497 msgid "Toggle Sidebar" msgstr "" -#: public/js/frappe/list/list_view.js:1727 +#: public/js/frappe/list/list_view.js:1722 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -33362,7 +33313,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: database/database.py:424 +#: database/database.py:439 msgid "Too many changes to database in single action." msgstr "" @@ -33442,6 +33393,7 @@ msgid "Topic" msgstr "" #: desk/query_report.py:497 public/js/frappe/views/reports/print_grid.html:45 +#: public/js/frappe/views/reports/report_view.js:1474 msgid "Total" msgstr "" @@ -33487,7 +33439,6 @@ msgid "Total number of emails to sync in initial sync process " msgstr "" #: public/js/frappe/views/reports/report_view.js:1178 -#: public/js/frappe/views/reports/report_view.js:1474 msgid "Totals" msgstr "" @@ -33770,7 +33721,7 @@ msgctxt "System Settings" msgid "Two Factor Authentication method" msgstr "" -#: public/js/frappe/views/file/file_view.js:318 +#: public/js/frappe/views/file/file_view.js:318 www/attribution.html:34 msgid "Type" msgstr "" @@ -33997,6 +33948,12 @@ msgctxt "Website Slideshow Item" msgid "URL to go to on clicking the slideshow image" msgstr "" +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: core/doctype/doctype/doctype.json +msgctxt "DocType" +msgid "UUID" +msgstr "" + #: core/doctype/document_naming_settings/document_naming_settings.py:67 msgid "Unable to find DocType {0}" msgstr "" @@ -34005,7 +33962,7 @@ msgstr "" msgid "Unable to load camera." msgstr "" -#: public/js/frappe/model/model.js:258 +#: public/js/frappe/model/model.js:268 msgid "Unable to load: {0}" msgstr "" @@ -34087,11 +34044,11 @@ msgstr "" msgid "Unknown" msgstr "" -#: public/js/frappe/model/model.js:199 +#: public/js/frappe/model/model.js:209 msgid "Unknown Column: {0}" msgstr "" -#: utils/data.py:1193 +#: utils/data.py:1196 msgid "Unknown Rounding Method: {}" msgstr "" @@ -34124,7 +34081,7 @@ msgctxt "Communication" msgid "Unread Notification Sent" msgstr "" -#: utils/safe_exec.py:435 +#: utils/safe_exec.py:442 msgid "Unsafe SQL query" msgstr "" @@ -34203,7 +34160,7 @@ msgstr "" msgid "Upcoming Events for Today" msgstr "" -#: core/doctype/data_import/data_import_list.js:40 +#: core/doctype/data_import/data_import_list.js:36 #: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 #: custom/doctype/customize_form/customize_form.js:370 #: desk/doctype/bulk_update/bulk_update.js:15 @@ -34490,11 +34447,11 @@ msgctxt "Email Account" msgid "Use different Email ID" msgstr "" -#: model/db_query.py:423 +#: model/db_query.py:426 msgid "Use of function {0} in field is restricted" msgstr "" -#: model/db_query.py:402 +#: model/db_query.py:405 msgid "Use of sub-query or function is restricted" msgstr "" @@ -34817,7 +34774,7 @@ msgctxt "User" msgid "User Image" msgstr "" -#: public/js/frappe/ui/toolbar/navbar.html:114 +#: public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -34839,12 +34796,12 @@ msgid "User Permission" msgstr "" #: core/page/permission_manager/permission_manager_help.html:30 -#: public/js/frappe/views/reports/query_report.js:1789 -#: public/js/frappe/views/reports/report_view.js:1654 +#: public/js/frappe/views/reports/query_report.js:1790 +#: public/js/frappe/views/reports/report_view.js:1655 msgid "User Permissions" msgstr "" -#: public/js/frappe/list/list_view.js:1685 +#: public/js/frappe/list/list_view.js:1680 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -35100,6 +35057,18 @@ msgctxt "Onboarding Step" msgid "Validate Field" msgstr "" +#. Label of a Check field in DocType 'Email Account' +#: email/doctype/email_account/email_account.json +msgctxt "Email Account" +msgid "Validate SSL Certificate" +msgstr "" + +#. Label of a Check field in DocType 'Email Domain' +#: email/doctype/email_domain/email_domain.json +msgctxt "Email Domain" +msgid "Validate SSL Certificate" +msgstr "" + #: public/js/frappe/web_form/web_form.js:356 msgid "Validation Error" msgstr "" @@ -35196,15 +35165,15 @@ msgctxt "Notification" msgid "Value To Be Set" msgstr "" -#: model/base_document.py:955 model/document.py:668 +#: model/base_document.py:955 model/document.py:672 msgid "Value cannot be changed for {0}" msgstr "" -#: model/document.py:614 +#: model/document.py:618 msgid "Value cannot be negative for" msgstr "" -#: model/document.py:618 +#: model/document.py:622 msgid "Value cannot be negative for {0}: {1}" msgstr "" @@ -35231,7 +35200,7 @@ msgstr "" msgid "Value missing for" msgstr "" -#: core/doctype/data_import/importer.py:695 +#: core/doctype/data_import/importer.py:707 msgid "Value must be one of {0}" msgstr "" @@ -35241,19 +35210,19 @@ msgctxt "Onboarding Step" msgid "Value to Validate" msgstr "" -#: model/base_document.py:1022 +#: model/base_document.py:1025 msgid "Value too big" msgstr "" -#: core/doctype/data_import/importer.py:708 +#: core/doctype/data_import/importer.py:720 msgid "Value {0} missing for {1}" msgstr "" -#: core/doctype/data_import/importer.py:739 utils/data.py:861 +#: core/doctype/data_import/importer.py:751 utils/data.py:861 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "" -#: core/doctype/data_import/importer.py:726 +#: core/doctype/data_import/importer.py:738 msgid "Value {0} must in {1} format" msgstr "" @@ -35815,7 +35784,7 @@ msgctxt "DocType" msgid "Website Search Field" msgstr "" -#: core/doctype/doctype/doctype.py:1471 +#: core/doctype/doctype/doctype.py:1470 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -36497,7 +36466,7 @@ msgstr "" msgid "Y Axis Fields" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1146 +#: public/js/frappe/views/reports/query_report.js:1147 msgid "Y Field" msgstr "" @@ -36594,7 +36563,7 @@ msgstr "" #: public/js/form_builder/utils.js:336 #: public/js/frappe/form/controls/link.js:472 #: public/js/frappe/list/list_sidebar_group_by.js:223 -#: public/js/frappe/views/reports/query_report.js:1530 +#: public/js/frappe/views/reports/query_report.js:1531 #: website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -36647,15 +36616,15 @@ msgstr "" msgid "You are connected to internet." msgstr "" -#: public/js/frappe/ui/toolbar/navbar.html:20 +#: public/js/frappe/ui/toolbar/navbar.html:21 msgid "You are impersonating as another user." msgstr "" -#: permissions.py:413 +#: permissions.py:408 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: permissions.py:402 +#: permissions.py:397 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -36663,7 +36632,7 @@ msgstr "" msgid "You are not allowed to create columns" msgstr "" -#: core/doctype/report/report.py:97 +#: core/doctype/report/report.py:94 msgid "You are not allowed to delete Standard Report" msgstr "" @@ -36671,11 +36640,11 @@ msgstr "" msgid "You are not allowed to delete a standard Website Theme" msgstr "" -#: core/doctype/report/report.py:383 +#: core/doctype/report/report.py:377 msgid "You are not allowed to edit the report." msgstr "" -#: permissions.py:610 +#: permissions.py:605 msgid "You are not allowed to export {} doctype" msgstr "" @@ -36683,7 +36652,7 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: public/js/frappe/views/communication.js:764 +#: public/js/frappe/views/communication.js:772 msgid "You are not allowed to send emails related to this document" msgstr "" @@ -36703,7 +36672,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: __init__.py:932 +#: __init__.py:935 msgid "You are not permitted to access this resource." msgstr "" @@ -36792,13 +36761,6 @@ msgstr "" msgid "You can select one from the following," msgstr "" -#. Description of the 'Rate limit for email link login' (Int) field in DocType -#. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "You can set a high value here if multiple users will be logging in from the same network." -msgstr "" - #: desk/query_report.py:332 msgid "You can try changing the filters of your report." msgstr "" @@ -36829,7 +36791,7 @@ msgctxt "Form timeline" msgid "You cancelled this document {1}" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:407 +#: desk/doctype/dashboard_chart/dashboard_chart.py:406 msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" @@ -36892,7 +36854,7 @@ msgstr "" msgid "You do not have permission to view this document" msgstr "" -#: public/js/frappe/form/form.js:979 +#: public/js/frappe/form/form.js:943 msgid "You do not have permissions to cancel all linked documents." msgstr "" @@ -36952,7 +36914,7 @@ msgstr "" msgid "You have unsaved changes in this form. Please save before you continue." msgstr "" -#: public/js/frappe/ui/toolbar/navbar.html:50 +#: public/js/frappe/ui/toolbar/navbar.html:51 msgid "You have unseen notifications" msgstr "" @@ -36964,7 +36926,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: public/js/frappe/list/list_view.js:471 +#: public/js/frappe/list/list_view.js:472 msgid "You haven't created a {0} yet" msgstr "" @@ -36993,6 +36955,10 @@ msgstr "" msgid "You need to be Workspace Manager to edit this document" msgstr "" +#: www/attribution.py:14 +msgid "You need to be a system user to access this page." +msgstr "" + #: website/doctype/web_form/web_form.py:91 msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" @@ -37148,7 +37114,7 @@ msgstr "" msgid "Your session has expired, please login again to continue." msgstr "" -#: public/js/frappe/ui/toolbar/navbar.html:15 +#: public/js/frappe/ui/toolbar/navbar.html:16 msgid "Your site is undergoing maintenance or being updated." msgstr "" @@ -37161,7 +37127,7 @@ msgstr "" msgid "Your website is all set up!" msgstr "" -#: utils/data.py:1496 +#: utils/data.py:1499 msgid "Zero" msgstr "" @@ -37184,7 +37150,7 @@ msgctxt "Desktop Icon" msgid "_report" msgstr "" -#: database/database.py:314 +#: database/database.py:326 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -37239,7 +37205,7 @@ msgctxt "Permission Inspector" msgid "amend" msgstr "" -#: public/js/frappe/utils/utils.js:396 utils/data.py:1504 +#: public/js/frappe/utils/utils.js:396 utils/data.py:1507 msgid "and" msgstr "" @@ -37296,7 +37262,7 @@ msgctxt "Workflow State" msgid "barcode" msgstr "" -#: model/document.py:1341 +#: model/document.py:1349 msgid "beginning with" msgstr "" @@ -37629,7 +37595,7 @@ msgstr "" msgid "email inbox" msgstr "" -#: permissions.py:407 permissions.py:418 +#: permissions.py:402 permissions.py:413 #: public/js/frappe/form/controls/link.js:481 msgid "empty" msgstr "" @@ -37809,7 +37775,7 @@ msgctxt "Workspace" msgid "grey" msgstr "" -#: utils/backups.py:373 +#: utils/backups.py:375 msgid "gzip not found in PATH! This is required to take a backup." msgstr "" @@ -38092,7 +38058,7 @@ msgctxt "OAuth Authorization Code" msgid "nonce" msgstr "" -#: model/document.py:1340 +#: model/document.py:1348 msgid "none of" msgstr "" @@ -38176,7 +38142,7 @@ msgctxt "Webhook" msgid "on_update_after_submit" msgstr "" -#: model/document.py:1339 +#: model/document.py:1347 msgid "one of" msgstr "" @@ -38715,8 +38681,8 @@ msgstr "" msgid "via Assignment Rule" msgstr "" -#: core/doctype/data_import/importer.py:255 -#: core/doctype/data_import/importer.py:276 +#: core/doctype/data_import/importer.py:267 +#: core/doctype/data_import/importer.py:288 msgid "via Data Import" msgstr "" @@ -38901,7 +38867,7 @@ msgstr "" msgid "{0} Name" msgstr "" -#: model/base_document.py:1052 +#: model/base_document.py:1055 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -38912,7 +38878,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: public/js/frappe/views/reports/query_report.js:882 +#: public/js/frappe/views/reports/query_report.js:883 msgid "{0} Reports" msgstr "" @@ -38957,7 +38923,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: utils/data.py:1687 +#: utils/data.py:1690 msgid "{0} and {1}" msgstr "" @@ -38991,7 +38957,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: printing/doctype/print_format/print_format.py:87 +#: printing/doctype/print_format/print_format.py:88 msgid "{0} are required" msgstr "" @@ -39098,11 +39064,11 @@ msgstr "" msgid "{0} does not exist in row {1}" msgstr "" -#: database/mariadb/schema.py:126 database/postgres/schema.py:178 +#: database/mariadb/schema.py:141 database/postgres/schema.py:184 msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: core/doctype/data_import/importer.py:1012 +#: core/doctype/data_import/importer.py:1024 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -39146,7 +39112,7 @@ msgstr "" msgid "{0} has left the conversation in {1} {2}" msgstr "" -#: __init__.py:2483 +#: __init__.py:2488 msgid "{0} has no versions tracked." msgstr "" @@ -39163,7 +39129,7 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: core/doctype/doctype/doctype.py:915 +#: core/doctype/doctype/doctype.py:914 msgid "{0} is a mandatory field" msgstr "" @@ -39171,7 +39137,7 @@ msgstr "" msgid "{0} is a not a valid zip file" msgstr "" -#: core/doctype/doctype/doctype.py:1555 +#: core/doctype/doctype/doctype.py:1554 msgid "{0} is an invalid Data field." msgstr "" @@ -39228,7 +39194,7 @@ msgstr "" msgid "{0} is not a valid Calendar. Redirecting to default Calendar." msgstr "" -#: core/doctype/scheduled_job_type/scheduled_job_type.py:62 +#: core/doctype/scheduled_job_type/scheduled_job_type.py:63 msgid "{0} is not a valid Cron expression." msgstr "" @@ -39236,15 +39202,15 @@ msgstr "" msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" -#: email/doctype/email_group/email_group.py:131 utils/__init__.py:189 +#: email/doctype/email_group/email_group.py:131 utils/__init__.py:188 msgid "{0} is not a valid Email Address" msgstr "" -#: utils/__init__.py:157 +#: utils/__init__.py:156 msgid "{0} is not a valid Name" msgstr "" -#: utils/__init__.py:136 +#: utils/__init__.py:135 msgid "{0} is not a valid Phone Number" msgstr "" @@ -39252,11 +39218,11 @@ msgstr "" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" -#: permissions.py:791 +#: permissions.py:786 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: permissions.py:811 +#: permissions.py:806 msgid "{0} is not a valid parentfield for {1}" msgstr "" @@ -39284,7 +39250,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: printing/doctype/print_format/print_format.py:163 +#: printing/doctype/print_format/print_format.py:164 msgid "{0} is now default print format for {1} doctype" msgstr "" @@ -39292,8 +39258,8 @@ msgstr "" msgid "{0} is one of {1}" msgstr "" -#: email/doctype/email_account/email_account.py:277 model/naming.py:202 -#: printing/doctype/print_format/print_format.py:90 utils/csvutils.py:131 +#: email/doctype/email_account/email_account.py:277 model/naming.py:217 +#: printing/doctype/print_format/print_format.py:91 utils/csvutils.py:131 msgid "{0} is required" msgstr "" @@ -39305,7 +39271,7 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: public/js/frappe/list/list_view.js:1602 +#: public/js/frappe/list/list_view.js:1597 msgid "{0} items selected" msgstr "" @@ -39342,7 +39308,7 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: model/document.py:1594 +#: model/document.py:1602 msgid "{0} must be after {1}" msgstr "" @@ -39358,7 +39324,7 @@ msgstr "" msgid "{0} must be unique" msgstr "" -#: core/doctype/language/language.py:43 +#: core/doctype/language/language.py:42 msgid "" "{0} must begin and end with a letter and can only contain letters,\n" "\t\t\t\thyphen or underscore." @@ -39376,11 +39342,11 @@ msgstr "" msgid "{0} not found" msgstr "" -#: core/doctype/report/report.py:419 public/js/frappe/list/list_view.js:987 +#: core/doctype/report/report.py:413 public/js/frappe/list/list_view.js:988 msgid "{0} of {1}" msgstr "" -#: public/js/frappe/list/list_view.js:989 +#: public/js/frappe/list/list_view.js:990 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -39388,12 +39354,12 @@ msgstr "" msgid "{0} of {1} sent" msgstr "" -#: utils/data.py:1507 +#: utils/data.py:1510 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: utils/data.py:1677 +#: utils/data.py:1680 msgid "{0} or {1}" msgstr "" @@ -39465,7 +39431,7 @@ msgstr "" msgid "{0} shared this document with {1}" msgstr "" -#: core/doctype/doctype/doctype.py:315 +#: core/doctype/doctype/doctype.py:316 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" @@ -39553,11 +39519,11 @@ msgstr "" msgid "{0} {1} does not exist, select a new target to merge" msgstr "" -#: public/js/frappe/form/form.js:970 +#: public/js/frappe/form/form.js:934 msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "" -#: model/document.py:173 permissions.py:564 +#: model/document.py:175 permissions.py:559 msgid "{0} {1} not found" msgstr "" @@ -39565,39 +39531,39 @@ msgstr "" msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" -#: model/base_document.py:1013 +#: model/base_document.py:1016 msgid "{0}, Row {1}" msgstr "" -#: model/base_document.py:1018 +#: model/base_document.py:1021 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: core/doctype/doctype/doctype.py:1739 +#: core/doctype/doctype/doctype.py:1738 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: core/doctype/doctype/doctype.py:1757 +#: core/doctype/doctype/doctype.py:1756 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: core/doctype/doctype/doctype.py:1755 +#: core/doctype/doctype/doctype.py:1754 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: core/doctype/doctype/doctype.py:1734 +#: core/doctype/doctype/doctype.py:1733 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: core/doctype/doctype/doctype.py:1741 +#: core/doctype/doctype/doctype.py:1740 msgid "{0}: Cannot set Import without Create" msgstr "" -#: core/doctype/doctype/doctype.py:1737 +#: core/doctype/doctype/doctype.py:1736 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: core/doctype/doctype/doctype.py:1761 +#: core/doctype/doctype/doctype.py:1760 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" @@ -39605,43 +39571,43 @@ msgstr "" msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" msgstr "" -#: core/doctype/doctype/doctype.py:1375 +#: core/doctype/doctype/doctype.py:1374 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "" -#: core/doctype/doctype/doctype.py:1283 +#: core/doctype/doctype/doctype.py:1282 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "" -#: core/doctype/doctype/doctype.py:1242 +#: core/doctype/doctype/doctype.py:1241 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "" -#: core/doctype/doctype/doctype.py:1230 +#: core/doctype/doctype/doctype.py:1229 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: core/doctype/doctype/doctype.py:1362 +#: core/doctype/doctype/doctype.py:1361 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: core/doctype/doctype/doctype.py:1694 +#: core/doctype/doctype/doctype.py:1693 msgid "{0}: No basic permissions set" msgstr "" -#: core/doctype/doctype/doctype.py:1708 +#: core/doctype/doctype/doctype.py:1707 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "" -#: core/doctype/doctype/doctype.py:1264 +#: core/doctype/doctype/doctype.py:1263 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "" -#: core/doctype/doctype/doctype.py:1253 +#: core/doctype/doctype/doctype.py:1252 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "" -#: core/doctype/doctype/doctype.py:1271 +#: core/doctype/doctype/doctype.py:1270 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "" @@ -39649,7 +39615,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: core/doctype/doctype/doctype.py:1723 +#: core/doctype/doctype/doctype.py:1722 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -39657,7 +39623,7 @@ msgstr "" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: core/doctype/doctype/doctype.py:1217 +#: core/doctype/doctype/doctype.py:1216 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -39671,11 +39637,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1204 +#: public/js/frappe/views/reports/query_report.js:1205 msgid "{0}: {1} vs {2}" msgstr "" -#: core/doctype/doctype/doctype.py:1383 +#: core/doctype/doctype/doctype.py:1382 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -39695,19 +39661,19 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: core/doctype/doctype/doctype.py:1437 +#: core/doctype/doctype/doctype.py:1436 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" -#: public/js/frappe/form/form.js:553 +#: public/js/frappe/form/form.js:517 msgid "{} Complete" msgstr "" -#: utils/data.py:2421 +#: utils/data.py:2424 msgid "{} Invalid python code on line {}" msgstr "" -#: utils/data.py:2430 +#: utils/data.py:2433 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -39728,15 +39694,15 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: commands/utils.py:538 +#: commands/utils.py:539 msgid "{} not found in PATH! This is required to access the console." msgstr "" -#: database/db_manager.py:81 +#: database/db_manager.py:82 msgid "{} not found in PATH! This is required to restore the database." msgstr "" -#: utils/backups.py:439 +#: utils/backups.py:442 msgid "{} not found in PATH! This is required to take a backup." msgstr "" From 38af00f0dba3da2b1f341bcc6db06a72457bd432 Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Mon, 8 Apr 2024 16:03:13 +0530 Subject: [PATCH 70/93] fix(sentry): correctly skip `frappe.ValidationError` and its children Signed-off-by: Akhil Narang --- frappe/utils/sentry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/utils/sentry.py b/frappe/utils/sentry.py index 157b8bd8cd..3c1bbfdb1a 100644 --- a/frappe/utils/sentry.py +++ b/frappe/utils/sentry.py @@ -126,7 +126,7 @@ def capture_exception(message: str | None = None) -> None: exc_info = sys.exc_info() if any(exc_info): # Don't report validation errors - if isinstance(exc_info[0], frappe.ValidationError): + if isinstance(exc_info[1], frappe.ValidationError): return event, hint = event_from_exception( From c14e5cc15237c5d619975b9d2dfcea118a538f1a Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 16:28:21 +0530 Subject: [PATCH 71/93] fix: index sort field by default in tabFile (#25853) --- frappe/database/mariadb/framework_mariadb.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/database/mariadb/framework_mariadb.sql b/frappe/database/mariadb/framework_mariadb.sql index 002570350f..847de9c105 100644 --- a/frappe/database/mariadb/framework_mariadb.sql +++ b/frappe/database/mariadb/framework_mariadb.sql @@ -308,6 +308,7 @@ CREATE TABLE `tabFile` ( `attached_to_doctype` varchar(255) DEFAULT NULL, PRIMARY KEY (`name`), KEY `parent` (`parent`), + KEY `creation` (`creation`), KEY `attached_to_name` (`attached_to_name`), KEY `attached_to_doctype` (`attached_to_doctype`) ) ENGINE=InnoDB ROW_FORMAT=DYNAMIC CHARACTER SET=utf8mb4 COLLATE=utf8mb4_unicode_ci; From b525b7365ef89acd755ec4619f79df7345b63041 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 16:34:49 +0530 Subject: [PATCH 72/93] chore: shorten events tab --- frappe/public/js/frappe/ui/notifications/notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index dc9a12ebb9..f83d4ee747 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -53,7 +53,7 @@ frappe.ui.Notifications = class Notifications { el: this.panel_notifications, }, { - label: __("Today's Events"), + label: __("Events"), id: "todays_events", view: EventsView, el: this.panel_events, From a5eb5aa2362533ad527f4553c1e0d474361da871 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 16:45:51 +0530 Subject: [PATCH 73/93] chore: compat changes with latest version - change sort field --- frappe/desk/doctype/changelog_feed/changelog_feed.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.json b/frappe/desk/doctype/changelog_feed/changelog_feed.json index 4843383362..f845afbed4 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.json +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.json @@ -60,7 +60,7 @@ "write": 1 } ], - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] } \ No newline at end of file From 000f062580d6048cb08301f8284eada67f5e7981 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 16:56:11 +0530 Subject: [PATCH 74/93] refactor: better fieldname for posting_timestamp Also index the field --- .../changelog_feed/changelog_feed.json | 13 +++++----- .../doctype/changelog_feed/changelog_feed.py | 26 ++++++++++++++----- 2 files changed, 27 insertions(+), 12 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.json b/frappe/desk/doctype/changelog_feed/changelog_feed.json index f845afbed4..5bac7ed104 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.json +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.json @@ -10,7 +10,7 @@ "title", "app_name", "link", - "creation_of_feed_item" + "posting_timestamp" ], "fields": [ { @@ -33,15 +33,16 @@ "reqd": 1 }, { - "fieldname": "creation_of_feed_item", + "fieldname": "posting_timestamp", "fieldtype": "Datetime", - "label": "Creation of Feed Item", - "reqd": 1 + "label": "Posting Timestamp", + "reqd": 1, + "search_index": 1 } ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-05-24 15:26:39.211363", + "modified": "2024-04-08 16:55:05.943403", "modified_by": "Administrator", "module": "Desk", "name": "Changelog Feed", @@ -60,7 +61,7 @@ "write": 1 } ], - "sort_field": "creation", + "sort_field": "modified", "sort_order": "DESC", "states": [] } \ No newline at end of file diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index 966629b681..d1f0a4d4f3 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -11,13 +11,27 @@ from frappe.model.document import Document class ChangelogFeed(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 + + app_name: DF.Data | None + link: DF.LongText + posting_timestamp: DF.Datetime + title: DF.Data + # end: auto-generated types + pass def get_feed(latest_date): source_site = "https://frappe.io" - r = requests.get(f"{source_site}/api/method/fetch_fw_changelog") + r = requests.get("https://frape.io/api/method/fetch_changelog") response = loads(r.content) changelog_posts = response["changelog_posts"] @@ -35,8 +49,8 @@ def fetch_changelog_feed_items_from_source(): latest_feed_item_date = frappe.db.get_value( "Changelog Feed", filters={}, - fieldname="creation_of_feed_item", - order_by="creation_of_feed_item desc", + fieldname="posting_timestamp", + order_by="posting_timestamp desc", ) for fn in frappe.get_hooks("get_changelog_feed"): @@ -46,7 +60,7 @@ def fetch_changelog_feed_items_from_source(): "title": changelog_feed_item["title"], "app_name": changelog_feed_item["app_name"], "link": changelog_feed_item["link"], - "creation_of_feed_item": changelog_feed_item["creation"], + "posting_timestamp": changelog_feed_item["creation"], } if not frappe.db.exists(change_log_feed_item_dict): feed_doc = frappe.new_doc("Changelog Feed") @@ -76,8 +90,8 @@ def get_changelog_feed_items(): changelog_feed_items = frappe.get_list( "Changelog Feed", - fields=["title", "app_name", "link", "creation_of_feed_item"], - order_by="creation_of_feed_item desc", + fields=["title", "app_name", "link", "posting_timestamp"], + order_by="posting_timestamp desc", limit=10, ) frappe.cache().set_value("changelog_feed", changelog_feed_items, expires_in_sec=24 * 60 * 60) From 6a831224a1ca30fd37b491b5ce94f7fc90e74d53 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 17:00:46 +0530 Subject: [PATCH 75/93] refactor: dumb, fast changelog feed in UI --- .../doctype/changelog_feed/changelog_feed.py | 32 +++++-------------- 1 file changed, 8 insertions(+), 24 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index d1f0a4d4f3..2e5a1b2f5f 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -8,6 +8,7 @@ import requests import frappe from frappe.hooks import app_title from frappe.model.document import Document +from frappe.utils.caching import redis_cache class ChangelogFeed(Document): @@ -71,29 +72,12 @@ def fetch_changelog_feed_items_from_source(): @frappe.whitelist() +@redis_cache def get_changelog_feed_items(): """Returns a list of latest 10 changelog feed items""" - - # don't run in developer mode to avoid unnecessary requests - if frappe.conf.developer_mode: - return [] - - changelog_feed_items = frappe.cache().get_value("changelog_feed") - if not changelog_feed_items: - latest_changelogs = frappe.get_list("Changelog Feed", limit=1, fields=["creation"]) - if ( - not latest_changelogs - or frappe.utils.time_diff_in_seconds(frappe.utils.now_datetime(), latest_changelogs[0].creation) - > 60 - ): - fetch_changelog_feed_items_from_source() - - changelog_feed_items = frappe.get_list( - "Changelog Feed", - fields=["title", "app_name", "link", "posting_timestamp"], - order_by="posting_timestamp desc", - limit=10, - ) - frappe.cache().set_value("changelog_feed", changelog_feed_items, expires_in_sec=24 * 60 * 60) - - return changelog_feed_items + return frappe.get_all( + "Changelog Feed", + fields=["title", "app_name", "link", "posting_timestamp"], + order_by="posting_timestamp desc", + limit=10, + ) From c817c7f769831dff43cddac6a339c9eef4aec5c0 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 17:03:09 +0530 Subject: [PATCH 76/93] perf: extend scheduler jitter to weekly/monthly jobs too --- frappe/core/doctype/scheduled_job_type/scheduled_job_type.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py b/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py index 56e11560ae..3f7bf689ef 100644 --- a/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py +++ b/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py @@ -125,7 +125,7 @@ class ScheduledJobType(Document): next_execution = croniter(self.cron_format, last_execution).get_next(datetime) jitter = 0 - if self.frequency in ("Hourly Long", "Daily Long"): + if "Long" in self.frequency: jitter = randint(1, 600) return next_execution + timedelta(seconds=jitter) From 9ee221bc417209566cd4d4509dc79e4ba5a0e3f2 Mon Sep 17 00:00:00 2001 From: Sanket322 <113279972+Sanket322@users.noreply.github.com> Date: Mon, 8 Apr 2024 18:05:16 +0530 Subject: [PATCH 77/93] fix: add before_print in doctype event (#25858) --- frappe/core/doctype/server_script/server_script.json | 4 ++-- frappe/core/doctype/server_script/server_script.py | 1 + frappe/core/doctype/server_script/server_script_utils.py | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/frappe/core/doctype/server_script/server_script.json b/frappe/core/doctype/server_script/server_script.json index 197e768fed..a88bc99f0a 100644 --- a/frappe/core/doctype/server_script/server_script.json +++ b/frappe/core/doctype/server_script/server_script.json @@ -57,7 +57,7 @@ "fieldname": "doctype_event", "fieldtype": "Select", "label": "DocType Event", - "options": "Before Insert\nBefore Validate\nBefore Save\nAfter Insert\nAfter Save\nBefore Rename\nAfter Rename\nBefore Submit\nAfter Submit\nBefore Cancel\nAfter Cancel\nBefore Delete\nAfter Delete\nBefore Save (Submitted Document)\nAfter Save (Submitted Document)\nOn Payment Authorization\nOn Payment Paid\nOn Payment Failed" + "options": "Before Insert\nBefore Validate\nBefore Save\nAfter Insert\nAfter Save\nBefore Rename\nAfter Rename\nBefore Submit\nAfter Submit\nBefore Cancel\nAfter Cancel\nBefore Delete\nAfter Delete\nBefore Save (Submitted Document)\nAfter Save (Submitted Document)\nBefore Print\nOn Payment Authorization\nOn Payment Paid\nOn Payment Failed" }, { "depends_on": "eval:doc.script_type==='API'", @@ -151,7 +151,7 @@ "link_fieldname": "server_script" } ], - "modified": "2024-03-23 16:03:38.075313", + "modified": "2024-04-08 16:18:52.901097", "modified_by": "Administrator", "module": "Core", "name": "Server Script", diff --git a/frappe/core/doctype/server_script/server_script.py b/frappe/core/doctype/server_script/server_script.py index fbfa368641..f5b4e518bf 100644 --- a/frappe/core/doctype/server_script/server_script.py +++ b/frappe/core/doctype/server_script/server_script.py @@ -46,6 +46,7 @@ class ServerScript(Document): "After Delete", "Before Save (Submitted Document)", "After Save (Submitted Document)", + "Before Print", "On Payment Authorization", "On Payment Paid", "On Payment Failed", diff --git a/frappe/core/doctype/server_script/server_script_utils.py b/frappe/core/doctype/server_script/server_script_utils.py index c5e1b2c9b3..ebc5fe9e9d 100644 --- a/frappe/core/doctype/server_script/server_script_utils.py +++ b/frappe/core/doctype/server_script/server_script_utils.py @@ -19,6 +19,7 @@ EVENT_MAP = { "after_delete": "After Delete", "before_update_after_submit": "Before Save (Submitted Document)", "on_update_after_submit": "After Save (Submitted Document)", + "before_print": "Before Print", "on_payment_paid": "On Payment Paid", "on_payment_failed": "On Payment Failed", "on_payment_authorized": "On Payment Authorization", From 465efe8ea6cd1e654daa51a24e99b9037502095b Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 17:08:12 +0530 Subject: [PATCH 78/93] refactor: rename variable for last date of feed --- frappe/desk/doctype/changelog_feed/changelog_feed.json | 2 +- frappe/desk/doctype/changelog_feed/changelog_feed.py | 8 ++++---- frappe/public/js/frappe/ui/notifications/notifications.js | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.json b/frappe/desk/doctype/changelog_feed/changelog_feed.json index 5bac7ed104..8463457a0a 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.json +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.json @@ -64,4 +64,4 @@ "sort_field": "modified", "sort_order": "DESC", "states": [] -} \ No newline at end of file +} diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index 2e5a1b2f5f..ae61ef182f 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -29,10 +29,10 @@ class ChangelogFeed(Document): pass -def get_feed(latest_date): +def get_feed(since): source_site = "https://frappe.io" - r = requests.get("https://frape.io/api/method/fetch_changelog") + r = requests.get(f"https://frape.io/api/method/fetch_changelog?since={since}") response = loads(r.content) changelog_posts = response["changelog_posts"] @@ -47,7 +47,7 @@ def fetch_changelog_feed_items_from_source(): """Fetches changelog feed items from source using `get_changelog_feed` hook and stores in the db""" - latest_feed_item_date = frappe.db.get_value( + since = frappe.db.get_value( "Changelog Feed", filters={}, fieldname="posting_timestamp", @@ -55,7 +55,7 @@ def fetch_changelog_feed_items_from_source(): ) for fn in frappe.get_hooks("get_changelog_feed"): - for changelog_feed_item in frappe.call(fn, latest_feed_item_date): + for changelog_feed_item in frappe.call(fn, since=since): change_log_feed_item_dict = { "doctype": "Changelog Feed", "title": changelog_feed_item["title"], diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index f83d4ee747..5aad41b242 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -480,7 +480,7 @@ class ChangelogFeedView extends BaseNotificationsView { this.container.empty(); const get_changelog_feed_html = (changelog_feed_item) => { const timestamp = frappe.datetime.prettyDate( - changelog_feed_item.creation_of_feed_item + changelog_feed_item.posting_timestamp ); const message_html = `
${changelog_feed_item.title}
@@ -490,7 +490,7 @@ class ChangelogFeedView extends BaseNotificationsView {
`; const item_html = ` From d2b38666f6cd2a74ea6a6270554dac37218fa93b Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 17:13:45 +0530 Subject: [PATCH 79/93] refactor: fetch changelog in background once a week --- .../doctype/changelog_feed/changelog_feed.py | 47 +++++++------------ frappe/hooks.py | 1 + 2 files changed, 19 insertions(+), 29 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index ae61ef182f..e4e430d7e4 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -1,12 +1,12 @@ # Copyright (c) 2023, Frappe Technologies and contributors # For license information, please see license.txt -from json import loads + +from contextlib import suppress import requests import frappe -from frappe.hooks import app_title from frappe.model.document import Document from frappe.utils.caching import redis_cache @@ -30,23 +30,13 @@ class ChangelogFeed(Document): def get_feed(since): - source_site = "https://frappe.io" - - r = requests.get(f"https://frape.io/api/method/fetch_changelog?since={since}") - response = loads(r.content) - - changelog_posts = response["changelog_posts"] - for post in changelog_posts: - post["link"] = f"{source_site}/{post['route']}" - post["app_name"] = app_title - + r = requests.get(f"https://frappe.io/api/method/fetch_changelog?since={since}").json() + changelog_posts = r["message"] return changelog_posts def fetch_changelog_feed_items_from_source(): - """Fetches changelog feed items from source using - `get_changelog_feed` hook and stores in the db""" - + """Fetches changelog feed items from source using `get_changelog_feed` hook and stores in the db""" since = frappe.db.get_value( "Changelog Feed", filters={}, @@ -55,20 +45,19 @@ def fetch_changelog_feed_items_from_source(): ) for fn in frappe.get_hooks("get_changelog_feed"): - for changelog_feed_item in frappe.call(fn, since=since): - change_log_feed_item_dict = { - "doctype": "Changelog Feed", - "title": changelog_feed_item["title"], - "app_name": changelog_feed_item["app_name"], - "link": changelog_feed_item["link"], - "posting_timestamp": changelog_feed_item["creation"], - } - if not frappe.db.exists(change_log_feed_item_dict): - feed_doc = frappe.new_doc("Changelog Feed") - feed_doc.update(change_log_feed_item_dict) - feed_doc.insert() - - frappe.cache().delete_value("changelog_feed") + with suppress(Exception): + for changelog_feed_item in frappe.call(fn, since=since): + change_log_feed_item_dict = { + "doctype": "Changelog Feed", + "title": changelog_feed_item["title"], + "app_name": changelog_feed_item["app_name"], + "link": changelog_feed_item["link"], + "posting_timestamp": changelog_feed_item["creation"], + } + if not frappe.db.exists(change_log_feed_item_dict): + feed_doc = frappe.new_doc("Changelog Feed") + feed_doc.update(change_log_feed_item_dict) + feed_doc.insert() @frappe.whitelist() diff --git a/frappe/hooks.py b/frappe/hooks.py index d9db14bc65..cdfdcf4434 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -259,6 +259,7 @@ scheduler_events = { "frappe.desk.form.document_follow.send_weekly_updates", "frappe.social.doctype.energy_point_log.energy_point_log.send_weekly_summary", "frappe.integrations.doctype.google_drive.google_drive.weekly_backup", + "frappe.desk.doctype.changelog_feed.changelog_feed.fetch_changelog_feed_items_from_source", ], "monthly": [ "frappe.email.doctype.auto_email_report.auto_email_report.send_monthly", From bd2dc42b94d2fac738d92ca8708ade9032b539ef Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 17:18:52 +0530 Subject: [PATCH 80/93] perf: speed up changelog fetching - implicit limit - bench level cache for each app --- .../changelog_feed/changelog_feed.json | 5 ++- .../doctype/changelog_feed/changelog_feed.py | 38 ++++++++++++------- frappe/hooks.py | 2 +- 3 files changed, 30 insertions(+), 15 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.json b/frappe/desk/doctype/changelog_feed/changelog_feed.json index 8463457a0a..ffdbddbda5 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.json +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.json @@ -1,6 +1,7 @@ { "actions": [], "allow_rename": 1, + "beta": 1, "creation": "2023-05-16 19:37:51.047664", "default_view": "List", "doctype": "DocType", @@ -40,9 +41,10 @@ "search_index": 1 } ], + "in_create": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2024-04-08 16:55:05.943403", + "modified": "2024-04-08 17:28:33.854732", "modified_by": "Administrator", "module": "Desk", "name": "Changelog Feed", @@ -61,6 +63,7 @@ "write": 1 } ], + "read_only": 1, "sort_field": "modified", "sort_order": "DESC", "states": [] diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index e4e430d7e4..296e9e8ee2 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -30,12 +30,13 @@ class ChangelogFeed(Document): def get_feed(since): + """'What's New' feed implementation for Frappe""" r = requests.get(f"https://frappe.io/api/method/fetch_changelog?since={since}").json() changelog_posts = r["message"] return changelog_posts -def fetch_changelog_feed_items_from_source(): +def fetch_changelog_feed(): """Fetches changelog feed items from source using `get_changelog_feed` hook and stores in the db""" since = frappe.db.get_value( "Changelog Feed", @@ -45,19 +46,28 @@ def fetch_changelog_feed_items_from_source(): ) for fn in frappe.get_hooks("get_changelog_feed"): - with suppress(Exception): - for changelog_feed_item in frappe.call(fn, since=since): - change_log_feed_item_dict = { - "doctype": "Changelog Feed", - "title": changelog_feed_item["title"], - "app_name": changelog_feed_item["app_name"], - "link": changelog_feed_item["link"], - "posting_timestamp": changelog_feed_item["creation"], + try: + cache_key = f"changelog_feed::{fn}" + changelog_feed = frappe.cache.get_value(cache_key, shared=True) + if changelog_feed is None: + changelog_feed = frappe.call(fn, since=since)[:20] or [] + frappe.cache.set_value( + cache_key, changelog_feed, expires_in_sec=7 * 24 * 60 * 60, shared=True + ) + + for feed_item in changelog_feed: + feed = { + "title": feed_item["title"], + "app_name": feed_item["app_name"], + "link": feed_item["link"], + "posting_timestamp": feed_item["creation"], } - if not frappe.db.exists(change_log_feed_item_dict): - feed_doc = frappe.new_doc("Changelog Feed") - feed_doc.update(change_log_feed_item_dict) - feed_doc.insert() + if not frappe.db.exists("Changelog Feed", feed): + frappe.new_doc("Changelog Feed").update(feed).insert() + except Exception: + frappe.log_error(f"Failed to fetch changelog from {fn}") + # don't retry if it's broken for 1 week + frappe.cache.set_value(cache_key, [], expires_in_sec=7 * 24 * 60 * 60, shared=True) @frappe.whitelist() @@ -67,6 +77,8 @@ def get_changelog_feed_items(): return frappe.get_all( "Changelog Feed", fields=["title", "app_name", "link", "posting_timestamp"], + # allow pubishing feed for many apps with single hook + filters={"app_name": ("in", frappe.get_installed_apps())}, order_by="posting_timestamp desc", limit=10, ) diff --git a/frappe/hooks.py b/frappe/hooks.py index cdfdcf4434..0aa2f83307 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -259,7 +259,7 @@ scheduler_events = { "frappe.desk.form.document_follow.send_weekly_updates", "frappe.social.doctype.energy_point_log.energy_point_log.send_weekly_summary", "frappe.integrations.doctype.google_drive.google_drive.weekly_backup", - "frappe.desk.doctype.changelog_feed.changelog_feed.fetch_changelog_feed_items_from_source", + "frappe.desk.doctype.changelog_feed.changelog_feed.fetch_changelog_feed", ], "monthly": [ "frappe.email.doctype.auto_email_report.auto_email_report.send_monthly", From 82f377b6abd82162a30c40cfe4d8ba32480a427c Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 17:45:56 +0530 Subject: [PATCH 81/93] refactor: default changelog API --- .../desk/doctype/changelog_feed/changelog_feed.py | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index 296e9e8ee2..d88637891c 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -2,8 +2,6 @@ # For license information, please see license.txt -from contextlib import suppress - import requests import frappe @@ -29,13 +27,6 @@ class ChangelogFeed(Document): pass -def get_feed(since): - """'What's New' feed implementation for Frappe""" - r = requests.get(f"https://frappe.io/api/method/fetch_changelog?since={since}").json() - changelog_posts = r["message"] - return changelog_posts - - def fetch_changelog_feed(): """Fetches changelog feed items from source using `get_changelog_feed` hook and stores in the db""" since = frappe.db.get_value( @@ -82,3 +73,9 @@ def get_changelog_feed_items(): order_by="posting_timestamp desc", limit=10, ) + + +def get_feed(since): + """'What's New' feed implementation for Frappe""" + r = requests.get(f"https://frappe.io/api/method/changelog_feed?since={since}") + return r.json()["message"] From 491c99531351dc721a7a7d468031498fefb06624 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 18:03:01 +0530 Subject: [PATCH 82/93] fix: cold start --- frappe/desk/doctype/changelog_feed/changelog_feed.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index d88637891c..6e2c470549 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -7,6 +7,7 @@ import requests import frappe from frappe.model.document import Document from frappe.utils.caching import redis_cache +from frappe.utils.data import add_to_date class ChangelogFeed(Document): @@ -34,7 +35,7 @@ def fetch_changelog_feed(): filters={}, fieldname="posting_timestamp", order_by="posting_timestamp desc", - ) + ) or add_to_date(None, months=-1, as_datetime=True, as_string=False) for fn in frappe.get_hooks("get_changelog_feed"): try: @@ -78,4 +79,5 @@ def get_changelog_feed_items(): def get_feed(since): """'What's New' feed implementation for Frappe""" r = requests.get(f"https://frappe.io/api/method/changelog_feed?since={since}") + r.raise_for_status() return r.json()["message"] From ea45d959b352ba421f682c638b25f243591fcef5 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 18:13:34 +0530 Subject: [PATCH 83/93] fix: correct HTTP response code for rate limit --- frappe/exceptions.py | 2 +- frappe/rate_limiter.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/frappe/exceptions.py b/frappe/exceptions.py index 2258c6e5ae..dad5cd2cc3 100644 --- a/frappe/exceptions.py +++ b/frappe/exceptions.py @@ -122,7 +122,7 @@ class InvalidSignatureError(ValidationError): class RateLimitExceededError(ValidationError): - pass + http_status_code = 429 class CannotChangeConstantError(ValidationError): diff --git a/frappe/rate_limiter.py b/frappe/rate_limiter.py index b96ea1365e..7cec4e712a 100644 --- a/frappe/rate_limiter.py +++ b/frappe/rate_limiter.py @@ -147,7 +147,8 @@ def rate_limit( value = frappe.cache.incrby(cache_key, 1) if value > _limit: frappe.throw( - _("You hit the rate limit because of too many requests. Please try after sometime.") + _("You hit the rate limit because of too many requests. Please try after sometime."), + frappe.RateLimitExceededError, ) return fn(*args, **kwargs) From 6873eab7b4dd0585baae4e55205562754a794b11 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 18:29:26 +0530 Subject: [PATCH 84/93] refactor: move to boot - Remove API call - Remove notification setting, don't think we need this --- frappe/boot.py | 2 + .../changelog_feed/changelog_feed.json | 6 +- .../doctype/changelog_feed/changelog_feed.py | 3 +- .../notification_settings.json | 13 +--- .../frappe/ui/notifications/notifications.js | 72 +++++++------------ 5 files changed, 33 insertions(+), 63 deletions(-) diff --git a/frappe/boot.py b/frappe/boot.py index 39b6a091ce..6227167d97 100644 --- a/frappe/boot.py +++ b/frappe/boot.py @@ -8,6 +8,7 @@ import frappe import frappe.defaults import frappe.desk.desk_page 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 from frappe.desk.doctype.form_tour.form_tour import get_onboarding_ui_tours from frappe.desk.doctype.route_history.route_history import frequently_visited_links from frappe.desk.form.load import get_meta_bundle @@ -107,6 +108,7 @@ def get_bootinfo(): bootinfo.translated_doctypes = get_translated_doctypes() bootinfo.subscription_conf = add_subscription_conf() bootinfo.marketplace_apps = get_marketplace_apps() + bootinfo.changelog_feed = get_changelog_feed_items() return bootinfo diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.json b/frappe/desk/doctype/changelog_feed/changelog_feed.json index ffdbddbda5..c1e8e1596f 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.json +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.json @@ -44,7 +44,7 @@ "in_create": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2024-04-08 17:28:33.854732", + "modified": "2024-04-08 18:36:42.203032", "modified_by": "Administrator", "module": "Desk", "name": "Changelog Feed", @@ -64,7 +64,7 @@ } ], "read_only": 1, - "sort_field": "modified", + "sort_field": "creation", "sort_order": "DESC", "states": [] -} +} \ No newline at end of file diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index 6e2c470549..c937f81073 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -62,7 +62,6 @@ def fetch_changelog_feed(): frappe.cache.set_value(cache_key, [], expires_in_sec=7 * 24 * 60 * 60, shared=True) -@frappe.whitelist() @redis_cache def get_changelog_feed_items(): """Returns a list of latest 10 changelog feed items""" @@ -72,7 +71,7 @@ def get_changelog_feed_items(): # allow pubishing feed for many apps with single hook filters={"app_name": ("in", frappe.get_installed_apps())}, order_by="posting_timestamp desc", - limit=10, + limit=20, ) diff --git a/frappe/desk/doctype/notification_settings/notification_settings.json b/frappe/desk/doctype/notification_settings/notification_settings.json index 64ad7b1d0f..d64bf3fe4d 100644 --- a/frappe/desk/doctype/notification_settings/notification_settings.json +++ b/frappe/desk/doctype/notification_settings/notification_settings.json @@ -19,8 +19,7 @@ "user", "seen", "system_notifications_section", - "energy_points_system_notifications", - "whats_new_notifications" + "energy_points_system_notifications" ], "fields": [ { @@ -108,12 +107,6 @@ "fieldtype": "Check", "label": "Event Reminders" }, - { - "default": "1", - "fieldname": "whats_new_notifications", - "fieldtype": "Check", - "label": "What's New" - }, { "default": "1", "depends_on": "enable_email_notifications", @@ -126,7 +119,7 @@ "in_create": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2024-04-08 16:03:31.952985", + "modified": "2024-03-23 16:03:31.952985", "modified_by": "Administrator", "module": "Desk", "name": "Notification Settings", @@ -150,4 +143,4 @@ "sort_order": "DESC", "states": [], "track_changes": 1 -} +} \ No newline at end of file diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index 5aad41b242..b85f659e7a 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -449,47 +449,25 @@ class EventsView extends BaseNotificationsView { class ChangelogFeedView extends BaseNotificationsView { make() { - frappe - .xcall( - "frappe.desk.doctype.changelog_feed.changelog_feed.get_changelog_feed_items", - {} - ) - .then((changelog_feed_list) => { - this.render_changelog_feed_html(changelog_feed_list); - }); + this.render_changelog_feed_html(frappe.boot.changelog_feed || []); } - render_changelog_feed_html(changelog_feed_list) { - frappe.db - .get_value("Notification Settings", frappe.session.user, "whats_new_notifications") - .then((r) => { - let html = ""; - if (!r.message.whats_new_notifications) { - html = ` -
-
- Generic Empty State -
${__("What's New is disabled")}
-
- ${__("Enable What's New in System Settings to see new features, improvements and bug fixes.")} -
-
-
- `; - } else if (changelog_feed_list.length) { - this.container.empty(); - const get_changelog_feed_html = (changelog_feed_item) => { - const timestamp = frappe.datetime.prettyDate( - changelog_feed_item.posting_timestamp - ); - const message_html = `
+ render_changelog_feed_html(changelog_feed) { + let html = ""; + if (changelog_feed.length) { + this.container.empty(); + const get_changelog_feed_html = (changelog_feed_item) => { + const timestamp = frappe.datetime.prettyDate( + changelog_feed_item.posting_timestamp + ); + const message_html = `
${changelog_feed_item.title}
${changelog_feed_item.app_name} | ${timestamp}
`; - const item_html = `
`; - return item_html; - }; - html = changelog_feed_list.map(get_changelog_feed_html).join(""); - } else { - html = ` -
-
- Generic Empty State -
${__("Nothing New")}
-
- ${__("There is nothing new to show you right now.")} -
+ return item_html; + }; + html = changelog_feed.map(get_changelog_feed_html).join(""); + } else { + html = `
+
+ Generic Empty State +
${__("Nothing New")}
+
+ ${__("There is nothing new to show you right now.")}
+
`; - } - this.container.html(html); - }); + } + this.container.html(html); } } From a61b0f6ffebe8ad21a0fa70aab67be619c9f0ad6 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 18:44:18 +0530 Subject: [PATCH 85/93] fix(UX): show title instead of name --- .../desk/doctype/changelog_feed/changelog_feed.py | 13 ++++++++++++- .../js/frappe/ui/notifications/notifications.js | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/frappe/desk/doctype/changelog_feed/changelog_feed.py b/frappe/desk/doctype/changelog_feed/changelog_feed.py index c937f81073..97888cd354 100644 --- a/frappe/desk/doctype/changelog_feed/changelog_feed.py +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -65,7 +65,7 @@ def fetch_changelog_feed(): @redis_cache def get_changelog_feed_items(): """Returns a list of latest 10 changelog feed items""" - return frappe.get_all( + feed = frappe.get_all( "Changelog Feed", fields=["title", "app_name", "link", "posting_timestamp"], # allow pubishing feed for many apps with single hook @@ -73,6 +73,17 @@ def get_changelog_feed_items(): order_by="posting_timestamp desc", limit=20, ) + for f in feed: + f["app_title"] = _app_title(f["app_name"]) + + return feed + + +def _app_title(app_name): + try: + return frappe.get_hooks("app_title", app_name=app_name)[0] + except Exception: + return app_name def get_feed(since): diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index b85f659e7a..6755286a3a 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -463,7 +463,7 @@ class ChangelogFeedView extends BaseNotificationsView { const message_html = `
${changelog_feed_item.title}
- ${changelog_feed_item.app_name} | ${timestamp} + ${changelog_feed_item.app_title} | ${timestamp}
`; From 618c2e60a1e918dc575fee9b95c900d3daa444ff Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 8 Apr 2024 18:55:05 +0530 Subject: [PATCH 86/93] test: fix failing tests --- .../core/doctype/scheduled_job_type/test_scheduled_job_type.py | 2 +- frappe/core/doctype/user/test_user.py | 2 +- frappe/tests/test_auth.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/core/doctype/scheduled_job_type/test_scheduled_job_type.py b/frappe/core/doctype/scheduled_job_type/test_scheduled_job_type.py index f9f05bf4f5..efa0be9cd2 100644 --- a/frappe/core/doctype/scheduled_job_type/test_scheduled_job_type.py +++ b/frappe/core/doctype/scheduled_job_type/test_scheduled_job_type.py @@ -78,7 +78,7 @@ class TestScheduledJobType(FrappeTestCase): dict(method="frappe.social.doctype.energy_point_log.energy_point_log.send_weekly_summary"), ) job.db_set("last_execution", "2019-01-01 00:00:00") - self.assertTrue(job.is_event_due(get_datetime("2019-01-06 00:00:01"))) + self.assertTrue(job.is_event_due(get_datetime("2019-01-06 00:10:01"))) # +10 min because of jitter self.assertFalse(job.is_event_due(get_datetime("2019-01-02 00:00:06"))) self.assertFalse(job.is_event_due(get_datetime("2019-01-05 23:59:59"))) diff --git a/frappe/core/doctype/user/test_user.py b/frappe/core/doctype/user/test_user.py index 3ede4b4e1b..e6a41d3432 100644 --- a/frappe/core/doctype/user/test_user.py +++ b/frappe/core/doctype/user/test_user.py @@ -291,7 +291,7 @@ class TestUser(FrappeTestCase): res1 = c.session.post(url, data=data, verify=c.verify, headers=c.headers) res2 = c.session.post(url, data=data, verify=c.verify, headers=c.headers) self.assertEqual(res1.status_code, 404) - self.assertEqual(res2.status_code, 417) + self.assertEqual(res2.status_code, 429) def test_user_rename(self): old_name = "test_user_rename@example.com" diff --git a/frappe/tests/test_auth.py b/frappe/tests/test_auth.py index 13f5d6cb90..447ae37a96 100644 --- a/frappe/tests/test_auth.py +++ b/frappe/tests/test_auth.py @@ -152,7 +152,7 @@ class TestAuth(FrappeTestCase): # Rate limiting for _ in range(6): res = requests.get(_generate_temporary_login_link(user, 10)) - if res.status_code == 417: + if res.status_code == 429: break else: self.fail("Rate limting not working") From 5b5ac8c8770695a84d3c4bcfd5c50e69ba83ec52 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 8 Apr 2024 21:14:31 +0530 Subject: [PATCH 87/93] fix: Get filter value based on depends_on field (#25861) --- frappe/public/js/frappe/ui/filters/filter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/ui/filters/filter.js b/frappe/public/js/frappe/ui/filters/filter.js index 6d3277733e..d6f495eb1d 100644 --- a/frappe/public/js/frappe/ui/filters/filter.js +++ b/frappe/public/js/frappe/ui/filters/filter.js @@ -248,7 +248,7 @@ frappe.ui.Filter = class { let args = {}; if (this.filters_config[condition].depends_on) { const field_name = this.filters_config[condition].depends_on; - const filter_value = this.filter_list.get_filter_value(fieldname); + const filter_value = this.filter_list.get_filter_value(field_name); args[field_name] = filter_value; } let setup_field = (field) => { From 21049be8e7c733db8c536dc66847e2b4ffa8641d Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Tue, 9 Apr 2024 07:07:52 +0200 Subject: [PATCH 88/93] fix: don't underline shortcuts during In-Context Translation (#25864) --- frappe/public/js/frappe/ui/alt_keyboard_shortcuts.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frappe/public/js/frappe/ui/alt_keyboard_shortcuts.js b/frappe/public/js/frappe/ui/alt_keyboard_shortcuts.js index a3f668c8ab..4d38989458 100644 --- a/frappe/public/js/frappe/ui/alt_keyboard_shortcuts.js +++ b/frappe/public/js/frappe/ui/alt_keyboard_shortcuts.js @@ -152,6 +152,11 @@ frappe.ui.keys.AltShortcutGroup = class AltShortcutGroup { } underline_text(shortcut) { + if (frappe.boot.lang === "eo") { + // The language code "eo" is used to trigger the In-Context Translation feature. + // In this case we don't want shortcuts to rip apart the ID of the translatable text. + return; + } shortcut.$text_el.attr("data-label", encodeURIComponent(shortcut.text)); let underline_el_found = false; let text_html = shortcut.text From 883196d39bc907b683d215797ce3b2f1c04bcb16 Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Tue, 9 Apr 2024 11:54:17 +0530 Subject: [PATCH 89/93] fix(layout): handle `fieldobj` being null `make_control` doesn't return anything when the control name is invalid Handle in `make_field` and `init_field` Signed-off-by: Akhil Narang --- frappe/public/js/frappe/form/layout.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/layout.js b/frappe/public/js/frappe/form/layout.js index 30e6e2d6ae..78f535e91c 100644 --- a/frappe/public/js/frappe/form/layout.js +++ b/frappe/public/js/frappe/form/layout.js @@ -212,6 +212,10 @@ frappe.ui.form.Layout = class Layout { const parent = this.column.form.get(0); const fieldobj = this.init_field(df, parent, render); + + // An invalid control name will return in a null fieldobj + if (!fieldobj) return; + this.fields_list.push(fieldobj); this.fields_dict[df.fieldname] = fieldobj; @@ -234,7 +238,11 @@ frappe.ui.form.Layout = class Layout { layout: this, }); - fieldobj.layout = this; + // make_control can return null for invalid control names + if (fieldobj) { + fieldobj.layout = this; + } + return fieldobj; } From 13aed453086b860abccad0fe6e6ce0b06b5ef570 Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Tue, 9 Apr 2024 12:37:11 +0530 Subject: [PATCH 90/93] chore(table): simplify logic Signed-off-by: Akhil Narang --- frappe/public/js/frappe/form/controls/table.js | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/frappe/public/js/frappe/form/controls/table.js b/frappe/public/js/frappe/form/controls/table.js index fd9054c003..a0186a3a43 100644 --- a/frappe/public/js/frappe/form/controls/table.js +++ b/frappe/public/js/frappe/form/controls/table.js @@ -46,12 +46,8 @@ frappe.ui.form.ControlTable = class ControlTable extends frappe.ui.form.Control if (this.get_field(data[0][0])) { data[0].forEach((column) => { fieldnames.push(this.get_field(column)); - var df = frappe.meta.get_docfield(doctype, this.get_field(column)); - if (df) { - fieldtypes.push(df.fieldtype); - } else { - fieldtypes.push(""); - } + const df = frappe.meta.get_docfield(doctype, this.get_field(column)); + fieldtypes.push(df ? df.fieldtype : ""); }); data.shift(); } else { @@ -65,12 +61,8 @@ frappe.ui.form.ControlTable = class ControlTable extends frappe.ui.form.Control column.fieldname === $(e.target).data("fieldname") ) { fieldnames.push(column.fieldname); - var df = frappe.meta.get_docfield(doctype, column.fieldname); - if (df) { - fieldtypes.push(df.fieldtype); - } else { - fieldtypes.push(""); - } + const df = frappe.meta.get_docfield(doctype, column.fieldname); + fieldtypes.push(df ? df.fieldtype : ""); target_column_matched = true; } }); From 28177c8574e13dea992db170776b3c72e8522376 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Tue, 9 Apr 2024 18:10:06 +0530 Subject: [PATCH 91/93] fix: limit title length on form (#25880) --- frappe/public/js/frappe/ui/page.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/ui/page.html b/frappe/public/js/frappe/ui/page.html index 55083e1b9a..df87ad84bb 100644 --- a/frappe/public/js/frappe/ui/page.html +++ b/frappe/public/js/frappe/ui/page.html @@ -17,7 +17,7 @@
-
+

From fc78c068f97d51421028ed95fde6fe9330e0fe4f Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Tue, 9 Apr 2024 18:31:24 +0530 Subject: [PATCH 92/93] fix(link): get_input_value returns `""` (#25878) Steps to repro: - Setup show title in link field - on list view filter by that field - Use the URL and open the page again - filters will be erased This is happening because: - title->value map needs a db call to complete - in meantime if we ask for input value we get empty value (because input is empty) and then we end up returning `""` --- frappe/public/js/frappe/ui/filters/filter.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frappe/public/js/frappe/ui/filters/filter.js b/frappe/public/js/frappe/ui/filters/filter.js index d6f495eb1d..5fb66d43ec 100644 --- a/frappe/public/js/frappe/ui/filters/filter.js +++ b/frappe/public/js/frappe/ui/filters/filter.js @@ -424,6 +424,12 @@ frappe.ui.filter_utils = { let val = field.get_value() ?? field.value; + if (!val && ["Link", "Dynamic Link"].includes(field.df.fieldtype)) { + // HACK: link field with show title are async so their input value is "" but they have + // some actual value set. + val = field.value; + } + if (typeof val === "string") { val = strip(val); } From bef9bdc5ee642e3b8b2b5bc4b75c4582f4679df3 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Tue, 9 Apr 2024 18:56:52 +0530 Subject: [PATCH 93/93] fix: log out reliability (#25865) * fix: Avoid possible cache eviction issue Clear cache after removing data from DB, so a concurrent request can't put stale data in cache. * fix: explicitly login as guest after logging out Avoids problem with some other code potentially re-adding current session in cache or DB. * test: avoid hard coded admin pw * test: reset user after running tests * fix: only login as guest if in request Background jobs, some other user disabling someone else etc --- frappe/auth.py | 2 ++ frappe/core/doctype/activity_log/test_activity_log.py | 7 +++++-- frappe/sessions.py | 7 ++++--- frappe/tests/test_client.py | 1 - 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/frappe/auth.py b/frappe/auth.py index d9b219bfac..9420e5e38c 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -340,6 +340,8 @@ class LoginManager: if user == frappe.session.user: delete_session(frappe.session.sid, user=user, reason="User Manually Logged Out") self.clear_cookies() + if frappe.request: + self.login_as_guest() else: clear_sessions(user) diff --git a/frappe/core/doctype/activity_log/test_activity_log.py b/frappe/core/doctype/activity_log/test_activity_log.py index f2f029f220..d20ca7301d 100644 --- a/frappe/core/doctype/activity_log/test_activity_log.py +++ b/frappe/core/doctype/activity_log/test_activity_log.py @@ -8,13 +8,16 @@ from frappe.tests.utils import FrappeTestCase class TestActivityLog(FrappeTestCase): + def setUp(self) -> None: + frappe.set_user("Administrator") + def test_activity_log(self): # test user login log frappe.local.form_dict = frappe._dict( { "cmd": "login", "sid": "Guest", - "pwd": frappe.conf.admin_password or "admin", + "pwd": self.ADMIN_PASSWORD or "admin", "usr": "Administrator", } ) @@ -57,7 +60,7 @@ class TestActivityLog(FrappeTestCase): update_system_settings({"allow_consecutive_login_attempts": 3, "allow_login_after_fail": 5}) frappe.local.form_dict = frappe._dict( - {"cmd": "login", "sid": "Guest", "pwd": "admin", "usr": "Administrator"} + {"cmd": "login", "sid": "Guest", "pwd": self.ADMIN_PASSWORD, "usr": "Administrator"} ) frappe.local.request_ip = "127.0.0.1" diff --git a/frappe/sessions.py b/frappe/sessions.py index 9ed4be7004..15b0447d25 100644 --- a/frappe/sessions.py +++ b/frappe/sessions.py @@ -82,8 +82,6 @@ def delete_session(sid=None, user=None, reason="Session Expired"): # we should just ignore it till database is back up again. return - frappe.cache.hdel("session", sid) - frappe.cache.hdel("last_db_session_update", sid) if sid and not user: table = frappe.qb.DocType("Sessions") user_details = frappe.qb.from_(table).where(table.sid == sid).select(table.user).run(as_dict=True) @@ -94,6 +92,9 @@ def delete_session(sid=None, user=None, reason="Session Expired"): frappe.db.delete("Sessions", {"sid": sid}) frappe.db.commit() + frappe.cache.hdel("session", sid) + frappe.cache.hdel("last_db_session_update", sid) + def clear_all_sessions(reason=None): """This effectively logs out all users""" @@ -359,7 +360,7 @@ class Session: def update(self, force=False): """extend session expiry""" - if frappe.session["user"] == "Guest" or frappe.form_dict.cmd == "logout": + if frappe.session.user == "Guest": return now = frappe.utils.now() diff --git a/frappe/tests/test_client.py b/frappe/tests/test_client.py index d4c758c5be..5b338f5fe5 100644 --- a/frappe/tests/test_client.py +++ b/frappe/tests/test_client.py @@ -144,7 +144,6 @@ class TestClient(FrappeTestCase): first_item = data["message"][0] self.assertTrue("name" in first_item) self.assertTrue("modified" in first_item) - frappe.local.login_manager.logout() def test_client_get(self): from frappe.client import get