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); - }); - }); - }); -}); 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]); }) 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/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/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: 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/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/core/doctype/navbar_settings/navbar_settings.js b/frappe/core/doctype/navbar_settings/navbar_settings.js index c0e1113087..ed7e331986 100644 --- a/frappe/core/doctype/navbar_settings/navbar_settings.js +++ b/frappe/core/doctype/navbar_settings/navbar_settings.js @@ -1,7 +1,4 @@ // Copyright (c) 2020, Frappe Technologies and contributors // For license information, please see license.txt -frappe.ui.form.on("Navbar Settings", { - // refresh: function(frm) { - // } -}); +frappe.ui.form.on("Navbar Settings", {}); diff --git a/frappe/core/doctype/navbar_settings/navbar_settings.json b/frappe/core/doctype/navbar_settings/navbar_settings.json index 164d80fefa..03b3d65bcd 100644 --- a/frappe/core/doctype/navbar_settings/navbar_settings.json +++ b/frappe/core/doctype/navbar_settings/navbar_settings.json @@ -11,7 +11,9 @@ "logo_width", "section_break_2", "settings_dropdown", - "help_dropdown" + "help_dropdown", + "announcements_section", + "announcement_widget" ], "fields": [ { @@ -49,11 +51,23 @@ "fieldname": "logo_width", "fieldtype": "Int", "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": "2024-03-23 16:03:30.561647", + "modified": "2024-03-23 17:03:30.561647", "modified_by": "Administrator", "module": "Core", "name": "Navbar Settings", @@ -75,4 +89,4 @@ "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 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) 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/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", 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/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 +} 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..847de9c105 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,19 +295,20 @@ 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`), + 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; @@ -323,11 +324,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/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..c1e8e1596f --- /dev/null +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.json @@ -0,0 +1,70 @@ +{ + "actions": [], + "allow_rename": 1, + "beta": 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", + "posting_timestamp" + ], + "fields": [ + { + "fieldname": "title", + "fieldtype": "Data", + "in_list_view": 1, + "label": "Title", + "reqd": 1 + }, + { + "fieldname": "app_name", + "fieldtype": "Data", + "label": "App Name" + }, + { + "fieldname": "link", + "fieldtype": "Long Text", + "in_list_view": 1, + "label": "Link", + "reqd": 1 + }, + { + "fieldname": "posting_timestamp", + "fieldtype": "Datetime", + "label": "Posting Timestamp", + "reqd": 1, + "search_index": 1 + } + ], + "in_create": 1, + "index_web_pages_for_search": 1, + "links": [], + "modified": "2024-04-08 18:36:42.203032", + "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 + } + ], + "read_only": 1, + "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 new file mode 100644 index 0000000000..97888cd354 --- /dev/null +++ b/frappe/desk/doctype/changelog_feed/changelog_feed.py @@ -0,0 +1,93 @@ +# Copyright (c) 2023, Frappe Technologies and contributors +# For license information, please see license.txt + + +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): + # 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 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", + 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: + 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("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) + + +@redis_cache +def get_changelog_feed_items(): + """Returns a list of latest 10 changelog feed items""" + feed = 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=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): + """'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"] 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/desk/doctype/dashboard_chart/dashboard_chart.py b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py index f6badeac44..a425da5980 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): @@ -304,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 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) 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/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]: diff --git a/frappe/hooks.py b/frappe/hooks.py index 3487a73fa5..0aa2f83307 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", ], "monthly": [ "frappe.email.doctype.auto_email_report.auto_email_report.send_monthly", @@ -450,6 +451,8 @@ extend_bootinfo = [ "frappe.utils.sentry.add_bootinfo", ] +get_changelog_feed = "frappe.desk.doctype.changelog_feed.changelog_feed.get_feed" + export_python_type_annotations = True standard_navbar_items = [ 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 "
.YYYY. - Year in 4 digits.YY. - Year in 2 digits.MM. - Month.DD. - Day of month.WW. - Week of the year.FY. - Fiscal Year.{fieldname}. - fieldname on the document e.g.\n"
+" branch\n"
+" .GGGG. - Godina u 4 cifre.YY. - Godina u 2 cifre.MM. - Mjesec.DD. - Dan u mjesecu.WW. - Sedmica u godini.FY. - fiskalna godina.{fieldname}. - ime polja na dokumentu, npr.\n"
+" grana\n"
+" Notes:
\n\n" +"data-fieldtype and data-fieldnamevaluesection-breakcolumn-break1. Left align integers
\n\n" +"[data-fieldtype=\"Int\"] .value { text-align: left; }\n\n"
+"1. Add border to sections except the last section
\n\n" +".section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
+".section-break:last-child { padding-bottom: 0px; border-bottom: 0px; }\n"
+msgstr "Napomene:
\n\n" +"data-fieldtype i data-fieldnamevaluesection-breakcolumn-break1. 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 Formats are rendered on the server side using the Jinja Templating Language. All forms have access to the doc object which contains information about the document that is being formatted. You can also access common utilities via the frappe module.
For styling, the Boostrap CSS framework is provided and you can enjoy the full range of classes.
\n" +"<h3>{{ doc.select_print_heading or \"Invoice\" }}</h3>\n"
+"<div class=\"row\">\n"
+"\t<div class=\"col-md-3 text-right\">Customer Name</div>\n"
+"\t<div class=\"col-md-9\">{{ doc.customer_name }}</div>\n"
+"</div>\n"
+"<div class=\"row\">\n"
+"\t<div class=\"col-md-3 text-right\">Date</div>\n"
+"\t<div class=\"col-md-9\">{{ doc.get_formatted(\"invoice_date\") }}</div>\n"
+"</div>\n"
+"<table class=\"table table-bordered\">\n"
+"\t<tbody>\n"
+"\t\t<tr>\n"
+"\t\t\t<th>Sr</th>\n"
+"\t\t\t<th>Item Name</th>\n"
+"\t\t\t<th>Description</th>\n"
+"\t\t\t<th class=\"text-right\">Qty</th>\n"
+"\t\t\t<th class=\"text-right\">Rate</th>\n"
+"\t\t\t<th class=\"text-right\">Amount</th>\n"
+"\t\t</tr>\n"
+"\t\t{%- for row in doc.items -%}\n"
+"\t\t<tr>\n"
+"\t\t\t<td style=\"width: 3%;\">{{ row.idx }}</td>\n"
+"\t\t\t<td style=\"width: 20%;\">\n"
+"\t\t\t\t{{ row.item_name }}\n"
+"\t\t\t\t{% if row.item_code != row.item_name -%}\n"
+"\t\t\t\t<br>Item Code: {{ row.item_code}}\n"
+"\t\t\t\t{%- endif %}\n"
+"\t\t\t</td>\n"
+"\t\t\t<td style=\"width: 37%;\">\n"
+"\t\t\t\t<div style=\"border: 0px;\">{{ row.description }}</div></td>\n"
+"\t\t\t<td style=\"width: 10%; text-align: right;\">{{ row.qty }} {{ row.uom or row.stock_uom }}</td>\n"
+"\t\t\t<td style=\"width: 15%; text-align: right;\">{{\n"
+"\t\t\t\trow.get_formatted(\"rate\", doc) }}</td>\n"
+"\t\t\t<td style=\"width: 15%; text-align: right;\">{{\n"
+"\t\t\t\trow.get_formatted(\"amount\", doc) }}</td>\n"
+"\t\t</tr>\n"
+"\t\t{%- endfor -%}\n"
+"\t</tbody>\n"
+"</table>\n"
+"doc.get_formatted(\"[fieldname]\", [parent_doc]) | \n"
+"\t\t\tGet document value formatted as Date, Currency, etc. Pass parent doc for currency type fields. | \n"
+"\t\t
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
+"\t\t\tGet value from another document. | \n" +"\t\t
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.
Za stiliziranje, Boostrap CSS framework je osiguran i možete uživati u punom rasponu klasa.
\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"
+"doc.get_formatted(\"[fieldname]\", [parent_doc]) | \n"
+"Dohvatite vrijednost dokumenta formatiranu kao datum, valuta itd. Proslijedite nadređeni doc za polja tipa valute. | \n"
+"
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
+"Dobijte vrijednost iz drugog dokumenta. | \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 "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 "Order Overdue\n\n"
+"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n\n"
+"Details\n\n"
+"- Customer: {{ customer }}\n"
+"- Amount: {{ grand_total }}\n"
+"\n\n"
+"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n" +"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n" +msgstr "" + +#. Content of the 'html_5' (HTML) field in DocType 'Data Import' +#: core/doctype/data_import/data_import.json +msgctxt "Data Import" +msgid "<h3>Order Overdue</h3>\n\n"
+"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n"
+"<!-- show last comment -->\n"
+"{% if comments %}\n"
+"Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
+"{% endif %}\n\n"
+"<h4>Details</h4>\n\n"
+"<ul>\n"
+"<li>Customer: {{ doc.customer }}\n"
+"<li>Amount: {{ doc.grand_total }}\n"
+"</ul>\n"
+""
+msgstr ""
+
+#. Content of the 'html_condition' (HTML) field in DocType 'Webhook'
+#: integrations/doctype/webhook/webhook.json
+msgctxt "Webhook"
+msgid "Condition Examples:
\n" +"doc.status==\"Open\"" +msgstr "" + +#. Content of the 'html_7' (HTML) field in DocType 'Notification' +#: email/doctype/notification/notification.json +msgctxt "Notification" +msgid "
doc.due_date==nowdate()
doc.total > 40000\n" +"
Condition Examples:
\n" +"doc.status==\"Open\"\n" +msgstr "" + +#. Content of the 'Condition Description' (HTML) field in DocType 'Web Form' +#: website/doctype/web_form/web_form.json +msgctxt "Web Form" +msgid "
doc.due_date==nowdate()
doc.total > 40000\n" +"
Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n" +"If you create a separate webform every year to capture feedback from employees add a \n" +" field named year in doctype and add a filter year = 2023
\n" +msgstr "" + +#. Description of the 'Context Script' (Code) field in DocType 'Web Page' +#: 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"
+"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" +"
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.{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.filters. 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 -/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"
+"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: \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 }}{{ doc.name }} Delivered{ \"id\": \"{{ doc.name }}\" }\n"
+"\n"
+"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"
+"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 }}Nuevo {{ doc.doctype }} #{{ doc.name }}/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. Notes:
\n" -"\n" +msgid "Notes:
\n\n" "data-fieldtype and data-fieldnamevaluesection-breakcolumn-break1. Left align integers
\n" -"\n" -"[data-fieldtype=\"Int\"] .value { text-align: left; }\n"
-"\n"
-"1. Add border to sections except the last section
\n" -"\n" +"\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 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.
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
/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"
"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 ""
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/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).
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/public/js/frappe/form/controls/table.js b/frappe/public/js/frappe/form/controls/table.js
index 6b547bfbf0..4ce065ef47 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));
+ const df = frappe.meta.get_docfield(doctype, this.get_field(column));
+ fieldtypes.push(df ? 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);
+ const df = frappe.meta.get_docfield(doctype, column.fieldname);
+ fieldtypes.push(df ? 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,
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);
diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js
index e3cd854aaf..72836ff8bc 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));
@@ -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);
}
}
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;
}
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 = $(`
diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js
index bded3c9aa1..1fd850df0a 100644
--- a/frappe/public/js/frappe/list/list_view.js
+++ b/frappe/public/js/frappe/list/list_view.js
@@ -2042,7 +2042,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());
}
@@ -2077,7 +2077,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());
}
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)
);
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
diff --git a/frappe/public/js/frappe/ui/filters/filter.js b/frappe/public/js/frappe/ui/filters/filter.js
index 6d3277733e..5fb66d43ec 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) => {
@@ -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);
}
diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js
index 15f7de8d9f..6755286a3a 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;
@@ -52,11 +53,17 @@ frappe.ui.Notifications = class Notifications {
el: this.panel_notifications,
},
{
- label: __("Today's Events"),
+ label: __("Events"),
id: "todays_events",
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) => {
@@ -439,3 +446,53 @@ class EventsView extends BaseNotificationsView {
this.container.html(html);
}
}
+
+class ChangelogFeedView extends BaseNotificationsView {
+ make() {
+ this.render_changelog_feed_html(frappe.boot.changelog_feed || []);
+ }
+
+ 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 = ``;
+
+ const item_html = `
+
+ ${message_html}
+
+
+ `;
+
+ return item_html;
+ };
+ html = changelog_feed.map(get_changelog_feed_html).join("");
+ } else {
+ html = `
+
+
+ ${__("Nothing New")}
+
+ ${__("There is nothing new to show you right now.")}
+
+
+
+ `;
+ }
+ this.container.html(html);
+ }
+}
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 @@
-
+
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")}
`,
diff --git a/frappe/public/js/frappe/ui/toolbar/navbar.html b/frappe/public/js/frappe/ui/toolbar/navbar.html
index cdae4211d2..c624b7c0a3 100644
--- a/frappe/public/js/frappe/ui/toolbar/navbar.html
+++ b/frappe/public/js/frappe/ui/toolbar/navbar.html
@@ -1,139 +1,154 @@
-
-
-
-
-
-
-